rsyslog/runtime/perctile_ringbuf.h
Nelson Yen 91a2049877
percentile module to track percentile metrics via impstats
Brief overview:
TO configure tracking percentile metrics in rainerscript:
User would need to define:
  - which percentile to track, such as [p50, p99, etc.]
  - window size - note, this correlates directly with memory usage to
  track the percentiles.

To track a value, user would call built-in function `percentile_observe()` in their configurations to
record an integer value, and percentile metrics would be emitted every
impstats interval.
2021-06-23 00:14:39 -07:00

35 lines
869 B
C

#include <stdlib.h>
#include <stdbool.h>
typedef int64_t ITEM;
struct circ_buf {
ITEM *buf;
int head;
int tail;
};
struct ringbuf_s {
struct circ_buf cb;
size_t size;
};
typedef struct ringbuf_s ringbuf_t;
ringbuf_t* ringbuf_new(size_t count);
void ringbuf_del(ringbuf_t *rb);
int ringbuf_append(ringbuf_t *rb, ITEM item);
int ringbuf_append_with_overwrite(ringbuf_t *rb, ITEM item);
int ringbuf_read(ringbuf_t *rb, ITEM *buf, size_t count);
size_t ringbuf_read_to_end(ringbuf_t *rb, ITEM *buf, size_t count);
bool ringbuf_peek(ringbuf_t *rb, ITEM *item);
size_t ringbuf_capacity(ringbuf_t *rb);
/* ringbuffer tests */
void ringbuf_init_test(void);
void ringbuf_simple_test(void);
void ringbuf_append_test(void);
void ringbuf_append_wrap_test(void);
void ringbuf_append_overwrite_test(void);
void ringbuf_read_test(void);
void ringbuf_read_to_end_test(void);