blob: 501eb7b555f4ae045522a39af03da6e139b9ed6b (
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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef NETDATA_ANALYTICS_H
#define NETDATA_ANALYTICS_H 1
#include "daemon/common.h"
/* Max number of seconds before the first META analytics is sent */
#define ANALYTICS_INIT_SLEEP_SEC 120
/* Send a META event every X seconds */
#define ANALYTICS_HEARTBEAT (6 * 3600)
/* Maximum number of hits to log */
#define ANALYTICS_MAX_PROMETHEUS_HITS 255
#define ANALYTICS_MAX_SHELL_HITS 255
#define ANALYTICS_MAX_JSON_HITS 255
#define ANALYTICS_MAX_DASHBOARD_HITS 255
/* Needed to calculate the space needed for parameters */
#define ANALYTICS_NO_OF_ITEMS 40
struct analytics_data {
char *netdata_config_stream_enabled;
char *netdata_config_memory_mode;
char *netdata_exporting_connectors;
char *netdata_config_exporting_enabled;
char *netdata_allmetrics_prometheus_used;
char *netdata_allmetrics_shell_used;
char *netdata_allmetrics_json_used;
char *netdata_dashboard_used;
char *netdata_collectors;
char *netdata_collectors_count;
char *netdata_buildinfo;
char *netdata_config_page_cache_size;
char *netdata_config_multidb_disk_quota;
char *netdata_config_https_enabled;
char *netdata_config_web_enabled;
char *netdata_config_release_channel;
char *netdata_mirrored_host_count;
char *netdata_mirrored_hosts_reachable;
char *netdata_mirrored_hosts_unreachable;
char *netdata_notification_methods;
char *netdata_alarms_normal;
char *netdata_alarms_warning;
char *netdata_alarms_critical;
char *netdata_charts_count;
char *netdata_metrics_count;
char *netdata_config_is_parent;
char *netdata_config_hosts_available;
char *netdata_host_cloud_available;
char *netdata_host_aclk_available;
char *netdata_host_aclk_protocol;
char *netdata_host_aclk_implementation;
char *netdata_host_agent_claimed;
char *netdata_host_cloud_enabled;
char *netdata_config_https_available;
char *netdata_install_type;
char *netdata_config_is_private_registry;
char *netdata_config_use_private_registry;
char *netdata_config_oom_score;
char *netdata_prebuilt_distro;
char *netdata_fail_reason;
size_t data_length;
size_t prometheus_hits;
size_t shell_hits;
size_t json_hits;
size_t dashboard_hits;
size_t charts_count;
size_t metrics_count;
SPINLOCK spinlock;
bool exporting_enabled;
};
void set_late_global_environment(struct rrdhost_system_info *system_info);
void analytics_free_data(void);
void set_global_environment(void);
void analytics_log_shell(void);
void analytics_log_json(void);
void analytics_log_prometheus(void);
void analytics_log_dashboard(void);
void analytics_gather_mutable_meta_data(void);
void analytics_report_oom_score(long long int score);
void get_system_timezone(void);
typedef struct {
const char *action;
const char *result;
const char *data;
} analytics_statistic_t;
void analytics_statistic_send(const analytics_statistic_t *statistic);
extern struct analytics_data analytics_data;
#endif //NETDATA_ANALYTICS_H
|