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