]> arthur.barton.de Git - netdata.git/blob - src/health.h
Merge pull request #845 from ktsaou/master
[netdata.git] / src / health.h
1 #ifndef NETDATA_HEALTH_H
2 #define NETDATA_HEALTH_H
3
4 extern int health_enabled;
5
6 extern int rrdvar_compare(void *a, void *b);
7
8 #define RRDVAR_TYPE_CALCULATED 1
9 #define RRDVAR_TYPE_TIME_T     2
10 #define RRDVAR_TYPE_COLLECTED  3
11 #define RRDVAR_TYPE_TOTAL      4
12 #define RRDVAR_TYPE_INT        5
13
14 // the variables as stored in the variables indexes
15 // there are 3 indexes:
16 // 1. at each chart   (RRDSET.variables_root_index)
17 // 2. at each context (RRDFAMILY.variables_root_index)
18 // 3. at each host    (RRDHOST.variables_root_index)
19 typedef struct rrdvar {
20     avl avl;
21
22     char *name;
23     uint32_t hash;
24
25     int type;
26     void *value;
27
28     time_t last_updated;
29 } RRDVAR;
30
31 // variables linked to charts
32 // We link variables to point to the values that are already
33 // calculated / processed by the normal data collection process
34 // This means, there will be no speed penalty for using
35 // these variables
36 typedef struct rrdsetvar {
37     char *fullid;               // chart type.chart id.variable
38     char *fullname;             // chart type.chart name.variable
39     char *variable;             // variable
40
41     int type;
42     void *value;
43
44     uint32_t options;
45
46     RRDVAR *local;
47     RRDVAR *family;
48     RRDVAR *host;
49     RRDVAR *family_name;
50     RRDVAR *host_name;
51
52     struct rrdset *rrdset;
53
54     struct rrdsetvar *next;
55 } RRDSETVAR;
56
57
58 // variables linked to individual dimensions
59 // We link variables to point the values that are already
60 // calculated / processed by the normal data collection process
61 // This means, there will be no speed penalty for using
62 // these variables
63 typedef struct rrddimvar {
64     char *prefix;
65     char *suffix;
66
67     char *id;                   // dimension id
68     char *name;                 // dimension name
69     char *fullidid;             // chart type.chart id.dimension id
70     char *fullidname;           // chart type.chart id.dimension name
71     char *fullnameid;           // chart type.chart name.dimension id
72     char *fullnamename;         // chart type.chart name.dimension name
73
74     int type;
75     void *value;
76
77     uint32_t options;
78
79     RRDVAR *local_id;
80     RRDVAR *local_name;
81
82     RRDVAR *family_id;
83     RRDVAR *family_name;
84
85     RRDVAR *host_fullidid;
86     RRDVAR *host_fullidname;
87     RRDVAR *host_fullnameid;
88     RRDVAR *host_fullnamename;
89
90     struct rrddim *rrddim;
91
92     struct rrddimvar *next;
93 } RRDDIMVAR;
94
95 // calculated variables (defined in health configuration)
96 // These aggregate time-series data at fixed intervals
97 // (defined in their update_every member below)
98 // These increase the overhead of netdata.
99 //
100 // These calculations are allocated and linked (->next)
101 // under RRDHOST.
102 // Then are also linked to RRDSET (of course only when the
103 // chart is found, via ->rrdset_next and ->rrdset_prev).
104 // This double-linked list is maintained sorted at all times
105 // having as RRDSET.calculations the RRDCALC to be processed
106 // next.
107
108 #define RRDCALC_STATUS_UNINITIALIZED  0
109 #define RRDCALC_STATUS_UNDEFINED     -1
110 #define RRDCALC_STATUS_CLEAR          1
111 #define RRDCALC_STATUS_RAISED         2
112 #define RRDCALC_STATUS_WARNING        3
113 #define RRDCALC_STATUS_CRITICAL       4
114
115 #define RRDCALC_FLAG_DB_ERROR      0x00000001
116 #define RRDCALC_FLAG_DB_NAN        0x00000002
117 #define RRDCALC_FLAG_DB_STALE      0x00000004
118 #define RRDCALC_FLAG_CALC_ERROR    0x00000008
119 #define RRDCALC_FLAG_WARN_ERROR    0x00000010
120 #define RRDCALC_FLAG_CRIT_ERROR    0x00000020
121
122 typedef struct rrdcalc {
123     char *name;
124     uint32_t hash;
125
126     char *exec;
127
128     char *chart;        // the chart id this should be linked to
129     uint32_t hash_chart;
130
131     char *source;       // the source of this calculation
132     char *units;
133     char *info;
134
135     char *dimensions;   // the chart dimensions
136
137     int group;          // grouping method: average, max, etc.
138     int before;         // ending point in time-series
139     int after;          // starting point in time-series
140     uint32_t options;   // calculation options
141     int update_every;   // update frequency for the calculation
142
143     time_t last_updated;
144     time_t next_update;
145
146     EVAL_EXPRESSION *calculation;
147     EVAL_EXPRESSION *warning;
148     EVAL_EXPRESSION *critical;
149
150     uint32_t rrdcalc_flags;
151     int status;
152
153     time_t db_after;
154     time_t db_before;
155     time_t last_status_change;
156
157     calculated_number value;
158     calculated_number old_value;
159
160     calculated_number green;
161     calculated_number red;
162
163     RRDVAR *local;
164     RRDVAR *family;
165     RRDVAR *hostid;
166     RRDVAR *hostname;
167
168     struct rrdset *rrdset;
169     struct rrdcalc *rrdset_next;
170     struct rrdcalc *rrdset_prev;
171
172     struct rrdcalc *next;
173 } RRDCALC;
174
175 #define RRDCALC_HAS_DB_LOOKUP(rc) ((rc)->after)
176
177 // RRDCALCTEMPLATE
178 // these are to be applied to charts found dynamically
179 // based on their context.
180 typedef struct rrdcalctemplate {
181     char *name;
182     uint32_t hash_name;
183
184     char *exec;
185
186     char *context;
187     uint32_t hash_context;
188
189     char *source;       // the source of this template
190     char *units;
191     char *info;
192
193     char *dimensions;
194
195     int group;          // grouping method: average, max, etc.
196     int before;         // ending point in time-series
197     int after;          // starting point in time-series
198     uint32_t options;   // calculation options
199     int update_every;   // update frequency for the calculation
200
201     EVAL_EXPRESSION *calculation;
202     EVAL_EXPRESSION *warning;
203     EVAL_EXPRESSION *critical;
204
205     calculated_number green;
206     calculated_number red;
207
208     struct rrdcalctemplate *next;
209 } RRDCALCTEMPLATE;
210
211 #define RRDCALCTEMPLATE_HAS_CALCULATION(rt) ((rt)->after)
212
213 #define HEALTH_ENTRY_NOTIFICATIONS_PROCESSED    0x00000001
214 #define HEALTH_ENTRY_NOTIFICATIONS_UPDATED      0x00000002
215 #define HEALTH_ENTRY_NOTIFICATIONS_EXEC_RUN     0x00000004
216 #define HEALTH_ENTRY_NOTIFICATIONS_EXEC_FAILED  0x00000008
217
218 typedef struct alarm_entry {
219     uint32_t id;
220
221     time_t when;
222     time_t duration;
223     time_t non_clear_duration;
224
225     char *name;
226     uint32_t hash_name;
227
228     char *chart;
229     uint32_t hash_chart;
230
231     char *family;
232
233     char *exec;
234     int exec_code;
235
236     char *source;
237     char *units;
238     char *info;
239
240     calculated_number old_value;
241     calculated_number new_value;
242     int old_status;
243     int new_status;
244
245     uint32_t notifications;
246
247     struct alarm_entry *updated_by;
248     struct alarm_entry *next;
249 } ALARM_ENTRY;
250
251 typedef struct alarm_log {
252     uint32_t nextid;
253     unsigned int count;
254     unsigned int max;
255     ALARM_ENTRY *alarms;
256     pthread_rwlock_t alarm_log_rwlock;
257 } ALARM_LOG;
258
259 #include "rrd.h"
260
261 extern void rrdsetvar_rename_all(RRDSET *st);
262 extern RRDSETVAR *rrdsetvar_create(RRDSET *st, const char *variable, int type, void *value, uint32_t options);
263 extern void rrdsetvar_free(RRDSETVAR *rs);
264
265 extern void rrddimvar_rename_all(RRDDIM *rd);
266 extern RRDDIMVAR *rrddimvar_create(RRDDIM *rd, int type, const char *prefix, const char *suffix, void *value, uint32_t options);
267 extern void rrddimvar_free(RRDDIMVAR *rs);
268
269 extern void rrdsetcalc_link_matching(RRDSET *st);
270 extern void rrdsetcalc_unlink(RRDCALC *rc);
271 extern void rrdcalctemplate_link_matching(RRDSET *st);
272 extern RRDCALC *rrdcalc_find(RRDSET *st, const char *name);
273
274 extern void health_init(void);
275 extern void *health_main(void *ptr);
276
277 extern void health_reload(void);
278
279 extern int health_variable_lookup(const char *variable, uint32_t hash, RRDCALC *rc, calculated_number *result);
280 extern void health_alarms2json(RRDHOST *host, BUFFER *wb, int all);
281 extern void health_alarm_log2json(RRDHOST *host, BUFFER *wb);
282
283 #endif //NETDATA_HEALTH_H