forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaggregator.h
85 lines (70 loc) · 3.07 KB
/
aggregator.h
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog
// (https://www.datadoghq.com/).
// Copyright 2019-2020 Datadog, Inc.
#ifndef DATADOG_AGENT_RTLOADER_THREE_AGGREGATOR_H
#define DATADOG_AGENT_RTLOADER_THREE_AGGREGATOR_H
/*! \file aggregator.h
\brief RtLoader Aggregator builtin header file.
The prototypes here defined provide functions to initialize the python aggregator
builtin module, and set relevant callbacks in the context of the aggregator for
metrics, events and service_checks.
*/
/*! \def AGGREGATOR_MODULE_NAME
\brief Aggregator module name definition..
*/
/*! \fn PyInit_aggregator()
\brief a function to initialize the python aggregator module in python3.
\return a pyobject * pointer to the aggregator module.
This function is only available when python3 is enabled.
*/
/*! \fn Py2Init_aggregator()
\brief A function to initialize the python aggregator module in Python2.
This function is only available when Python2 is enabled.
*/
/*! \fn void _set_submit_metric_cb(cb_submit_metric_t)
\brief Sets the submit metric callback to be used by rtloader for metric submission.
\param cb A function pointer with cb_submit_metric_t prototype to the callback
function.
The callback is expected to be provided by the rtloader caller - in go-context: CGO.
*/
/*! \fn void _set_submit_service_check_cb(cb_submit_service_check_t)
\brief Sets the submit service_check callback to be used by rtloader for service_check
submission.
\param cb A function pointer with cb_submit_service_check_t prototype to the
callback function.
The callback is expected to be provided by the rtloader caller - in go-context: CGO.
*/
/*! \fn void _set_submit_event_cb(cb_submit_event_t)
\brief Sets the submit event callback to be used by rtloader for event submission.
\param cb A function pointer with cb_submit_event_t prototype to the callback
function.
The callback is expected to be provided by the rtloader caller - in go-context: CGO.
*/
/*! \fn void _set_submit_histogram_bucket_cb(cb_submit_histogram_bucket_t)
\brief Sets the submit event callback to be used by rtloader for histogram bucket submission.
\param cb A function pointer with cb_submit_histogram_bucket_t prototype to the callback
function.
The callback is expected to be provided by the rtloader caller - in go-context: CGO.
*/
#include <Python.h>
#include <rtloader_types.h>
#define AGGREGATOR_MODULE_NAME "aggregator"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef DATADOG_AGENT_THREE
// PyMODINIT_FUNC macro already specifies extern "C", nesting these is legal
PyMODINIT_FUNC PyInit_aggregator(void);
#elif defined(DATADOG_AGENT_TWO)
void Py2_init_aggregator();
#endif
void _set_submit_metric_cb(cb_submit_metric_t cb);
void _set_submit_service_check_cb(cb_submit_service_check_t cb);
void _set_submit_event_cb(cb_submit_event_t cb);
void _set_submit_histogram_bucket_cb(cb_submit_histogram_bucket_t cb);
#ifdef __cplusplus
}
#endif
#endif