summaryrefslogtreecommitdiffstats
path: root/src/stats/test-stats-common.h
blob: 86c03f4c8c76cfe3c04e04fca69f03e0f47f59bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef TEST_STATS_COMMON
#define TEST_STATS_COMMON 1

#include "stats-common.h"
#include "event-filter.h"
#include "istream.h"
#include "settings-parser.h"
#include "str.h"
#include "test-common.h"
#include "lib-event-private.h"
#include "stats-dist.h"
#include "stats-event-category.h"
#include "stats-metrics.h"

extern struct event_category test_category;
extern struct event_category child_test_category;
extern pool_t test_pool;

bool test_stats_callback(struct event *event,
			 enum event_callback_type type ATTR_UNUSED,
			 struct failure_context *ctx, const char *fmt ATTR_UNUSED,
			 va_list args ATTR_UNUSED);

void test_init(const char *settings_blob);
void test_deinit(void);

void test_event_send(struct event *event);

enum stats_dist_field {
        STATS_DIST_COUNT,
        STATS_DIST_SUM,
};

uint64_t get_stats_dist_field(const char *metric_name, enum stats_dist_field field);

#endif