]> arthur.barton.de Git - netdata.git/blob - src/rrd.h
nonzero option should return all selected dimensions if they are all zero; fixes...
[netdata.git] / src / rrd.h
1 #ifndef NETDATA_RRD_H
2 #define NETDATA_RRD_H 1
3
4 #define UPDATE_EVERY 1
5 #define UPDATE_EVERY_MAX 3600
6 extern int rrd_update_every;
7
8 #define RRD_DEFAULT_HISTORY_ENTRIES 3600
9 #define RRD_HISTORY_ENTRIES_MAX (86400*10)
10 extern int rrd_default_history_entries;
11
12 // time in seconds to delete unupdated dimensions
13 // set to zero to disable this feature
14 extern int rrd_delete_unupdated_dimensions;
15
16 #define RRD_ID_LENGTH_MAX 400
17
18 #define RRDSET_MAGIC        "NETDATA RRD SET FILE V018"
19 #define RRDDIMENSION_MAGIC  "NETDATA RRD DIMENSION FILE V018"
20
21 typedef long long total_number;
22 #define TOTAL_NUMBER_FORMAT "%lld"
23
24 // ----------------------------------------------------------------------------
25 // chart types
26
27 #define RRDSET_TYPE_LINE_NAME "line"
28 #define RRDSET_TYPE_AREA_NAME "area"
29 #define RRDSET_TYPE_STACKED_NAME "stacked"
30
31 #define RRDSET_TYPE_LINE    0
32 #define RRDSET_TYPE_AREA    1
33 #define RRDSET_TYPE_STACKED 2
34
35 int rrdset_type_id(const char *name);
36 const char *rrdset_type_name(int chart_type);
37
38
39 // ----------------------------------------------------------------------------
40 // memory mode
41
42 #define RRD_MEMORY_MODE_RAM_NAME "ram"
43 #define RRD_MEMORY_MODE_MAP_NAME "map"
44 #define RRD_MEMORY_MODE_SAVE_NAME "save"
45
46 #define RRD_MEMORY_MODE_RAM 0
47 #define RRD_MEMORY_MODE_MAP 1
48 #define RRD_MEMORY_MODE_SAVE 2
49
50 extern int rrd_memory_mode;
51
52 extern const char *rrd_memory_mode_name(int id);
53 extern int rrd_memory_mode_id(const char *name);
54
55
56 // ----------------------------------------------------------------------------
57 // algorithms types
58
59 #define RRDDIM_ABSOLUTE_NAME                "absolute"
60 #define RRDDIM_INCREMENTAL_NAME             "incremental"
61 #define RRDDIM_PCENT_OVER_DIFF_TOTAL_NAME   "percentage-of-incremental-row"
62 #define RRDDIM_PCENT_OVER_ROW_TOTAL_NAME    "percentage-of-absolute-row"
63
64 #define RRDDIM_ABSOLUTE                 0
65 #define RRDDIM_INCREMENTAL              1
66 #define RRDDIM_PCENT_OVER_DIFF_TOTAL    2
67 #define RRDDIM_PCENT_OVER_ROW_TOTAL     3
68
69 extern int rrddim_algorithm_id(const char *name);
70 extern const char *rrddim_algorithm_name(int chart_type);
71
72 // ----------------------------------------------------------------------------
73 // flags
74
75 #define RRDDIM_FLAG_HIDDEN 0x00000001 // this dimension will not be offered to callers
76 #define RRDDIM_FLAG_DONT_DETECT_RESETS_OR_OVERFLOWS 0x00000002 // do not offer RESET or OVERFLOW info to callers
77
78 // ----------------------------------------------------------------------------
79 // RRD CONTEXT
80
81 struct rrdfamily {
82     avl avl;
83
84     const char *family;
85     uint32_t hash_family;
86
87     size_t use_count;
88
89     avl_tree_lock variables_root_index;
90 };
91 typedef struct rrdfamily RRDFAMILY;
92
93 // ----------------------------------------------------------------------------
94 // RRD DIMENSION
95
96 struct rrddim {
97     // ------------------------------------------------------------------------
98     // binary indexing structures
99
100     avl avl;                                        // the binary index - this has to be first member!
101
102     // ------------------------------------------------------------------------
103     // the dimension definition
104
105     char id[RRD_ID_LENGTH_MAX + 1];                 // the id of this dimension (for internal identification)
106
107     const char *name;                               // the name of this dimension (as presented to user)
108                                                     // this is a pointer to the config structure
109                                                     // since the config always has a higher priority
110                                                     // (the user overwrites the name of the charts)
111
112     int algorithm;                                  // the algorithm that is applied to add new collected values
113     long multiplier;                                // the multiplier of the collected values
114     long divisor;                                   // the divider of the collected values
115
116     int mapped;                                     // if set to non zero, this dimension is mapped to a file
117
118     // ------------------------------------------------------------------------
119     // members for temporary data we need for calculations
120
121     uint32_t hash;                                  // a simple hash of the id, to speed up searching / indexing
122                                                     // instead of strcmp() every item in the binary index
123                                                     // we first compare the hashes
124
125     // FIXME
126     // we need the hash_name too!
127     // needed at rrdr_disable_not_selected_dimensions()
128
129     uint32_t flags;
130
131     char cache_filename[FILENAME_MAX+1];            // the filename we load/save from/to this set
132
133     unsigned long counter;                          // the number of times we added values to this rrdim
134
135     int updated;                                    // set to 0 after each calculation, to 1 after each collected value
136                                                     // we use this to detect that a dimension is not updated
137
138     struct timeval last_collected_time;             // when was this dimension last updated
139                                                     // this is actual date time we updated the last_collected_value
140                                                     // THIS IS DIFFERENT FROM THE SAME MEMBER OF RRDSET
141
142     calculated_number calculated_value;             // the current calculated value, after applying the algorithm - resets to zero after being used
143     calculated_number last_calculated_value;        // the last calculated value processed
144
145     calculated_number last_stored_value;            // the last value as stored in the database (after interpolation)
146
147     collected_number collected_value;               // the current value, as collected - resets to 0 after being used
148     collected_number last_collected_value;          // the last value that was collected, after being processed
149
150     // the *_volume members are used to calculate the accuracy of the rounding done by the
151     // storage number - they are printed to debug.log when debug is enabled for a set.
152     calculated_number collected_volume;             // the sum of all collected values so far
153     calculated_number stored_volume;                // the sum of all stored values so far
154
155     struct rrddim *next;                            // linking of dimensions within the same data set
156     struct rrdset *rrdset;
157
158     // ------------------------------------------------------------------------
159     // members for checking the data when loading from disk
160
161     long entries;                                   // how many entries this dimension has in ram
162                                                     // this is the same to the entries of the data set
163                                                     // we set it here, to check the data when we load it from disk.
164
165     int update_every;                               // every how many seconds is this updated
166
167     unsigned long memsize;                          // the memory allocated for this dimension
168
169     char magic[sizeof(RRDDIMENSION_MAGIC) + 1];     // a string to be saved, used to identify our data file
170
171     struct rrddimvar *variables;
172
173     // ------------------------------------------------------------------------
174     // the values stored in this dimension, using our floating point numbers
175
176     storage_number values[];                        // the array of values - THIS HAS TO BE THE LAST MEMBER
177 };
178 typedef struct rrddim RRDDIM;
179
180
181 // ----------------------------------------------------------------------------
182 // RRDSET
183
184 struct rrdset {
185     // ------------------------------------------------------------------------
186     // binary indexing structures
187
188     avl avl;                                        // the index, with key the id - this has to be first!
189     avl avlname;                                    // the index, with key the name
190
191     // ------------------------------------------------------------------------
192     // the set configuration
193
194     char id[RRD_ID_LENGTH_MAX + 1];                 // id of the data set
195
196     const char *name;                               // the name of this dimension (as presented to user)
197                                                     // this is a pointer to the config structure
198                                                     // since the config always has a higher priority
199                                                     // (the user overwrites the name of the charts)
200
201     char *type;                                     // the type of graph RRD_TYPE_* (a category, for determining graphing options)
202     char *family;                                   // grouping sets under the same family
203     char *title;                                    // title shown to user
204     char *units;                                    // units of measurement
205
206     char *context;                                  // the template of this data set
207     uint32_t hash_context;
208
209     int chart_type;
210
211     int update_every;                               // every how many seconds is this updated?
212
213     long entries;                                   // total number of entries in the data set
214
215     long current_entry;                             // the entry that is currently being updated
216                                                     // it goes around in a round-robin fashion
217
218     int enabled;
219
220     int gap_when_lost_iterations_above;             // after how many lost iterations a gap should be stored
221                                                     // netdata will interpolate values for gaps lower than this
222
223     long priority;
224
225     int isdetail;                                   // if set, the data set should be considered as a detail of another
226                                                     // (the master data set should be the one that has the same family and is not detail)
227
228     // ------------------------------------------------------------------------
229     // members for temporary data we need for calculations
230
231     int mapped;                                     // if set to 1, this is memory mapped
232
233     int debug;
234
235     char *cache_dir;                                // the directory to store dimensions
236     char cache_filename[FILENAME_MAX+1];            // the filename to store this set
237
238     pthread_rwlock_t rwlock;
239
240     unsigned long counter;                          // the number of times we added values to this rrd
241     unsigned long counter_done;                     // the number of times we added values to this rrd
242
243     uint32_t hash;                                  // a simple hash on the id, to speed up searching
244                                                     // we first compare hashes, and only if the hashes are equal we do string comparisons
245
246     uint32_t hash_name;                             // a simple hash on the name
247
248     usec_t usec_since_last_update;                  // the time in microseconds since the last collection of data
249
250     struct timeval last_updated;                    // when this data set was last updated (updated every time the rrd_stats_done() function)
251     struct timeval last_collected_time;             // when did this data set last collected values
252
253     total_number collected_total;                   // used internally to calculate percentages
254     total_number last_collected_total;              // used internally to calculate percentages
255
256     RRDFAMILY *rrdfamily;
257     struct rrdhost *rrdhost;
258
259     struct rrdset *next;                            // linking of rrdsets
260
261     // ------------------------------------------------------------------------
262     // local variables
263
264     calculated_number green;
265     calculated_number red;
266
267     avl_tree_lock variables_root_index;
268     RRDSETVAR *variables;
269     RRDCALC *alarms;
270
271     // ------------------------------------------------------------------------
272     // members for checking the data when loading from disk
273
274     unsigned long memsize;                          // how much mem we have allocated for this (without dimensions)
275
276     char magic[sizeof(RRDSET_MAGIC) + 1];           // our magic
277
278     // ------------------------------------------------------------------------
279     // the dimensions
280
281     avl_tree_lock dimensions_index;                 // the root of the dimensions index
282     RRDDIM *dimensions;                             // the actual data for every dimension
283
284 };
285 typedef struct rrdset RRDSET;
286
287 // ----------------------------------------------------------------------------
288 // RRD HOST
289
290 struct rrdhost {
291     avl avl;
292
293     char *hostname;
294
295     RRDSET *rrdset_root;
296     pthread_rwlock_t rrdset_root_rwlock;
297
298     avl_tree_lock rrdset_root_index;
299     avl_tree_lock rrdset_root_index_name;
300
301     avl_tree_lock rrdfamily_root_index;
302     avl_tree_lock variables_root_index;
303
304     // all RRDCALCs are primarily allocated and linked here
305     // RRDCALCs may be linked to charts at any point
306     // (charts may or may not exist when these are loaded)
307     RRDCALC *alarms;
308     ALARM_LOG health_log;
309
310     RRDCALCTEMPLATE *templates;
311 };
312 typedef struct rrdhost RRDHOST;
313 extern RRDHOST localhost;
314 extern void rrdhost_init(char *hostname);
315
316 #ifdef NETDATA_INTERNAL_CHECKS
317 #define rrdhost_check_wrlock(host) rrdhost_check_wrlock_int(host, __FILE__, __FUNCTION__, __LINE__)
318 #define rrdhost_check_rdlock(host) rrdhost_check_rdlock_int(host, __FILE__, __FUNCTION__, __LINE__)
319 #else
320 #define rrdhost_check_rdlock(host) (void)0
321 #define rrdhost_check_wrlock(host) (void)0
322 #endif
323
324 extern void rrdhost_check_wrlock_int(RRDHOST *host, const char *file, const char *function, const unsigned long line);
325 extern void rrdhost_check_rdlock_int(RRDHOST *host, const char *file, const char *function, const unsigned long line);
326
327 extern void rrdhost_rwlock(RRDHOST *host);
328 extern void rrdhost_rdlock(RRDHOST *host);
329 extern void rrdhost_unlock(RRDHOST *host);
330
331 // ----------------------------------------------------------------------------
332 // RRD SET functions
333
334 extern char *rrdset_strncpyz_name(char *to, const char *from, size_t length);
335 extern void rrdset_set_name(RRDSET *st, const char *name);
336
337 extern char *rrdset_cache_dir(const char *id);
338
339 extern void rrdset_reset(RRDSET *st);
340
341 extern RRDSET *rrdset_create(const char *type
342         , const char *id
343         , const char *name
344         , const char *family
345         , const char *context
346         , const char *title
347         , const char *units
348         , long priority
349         , int update_every
350         , int chart_type);
351
352 extern void rrdset_free_all(void);
353 extern void rrdset_save_all(void);
354
355 extern RRDSET *rrdset_find(const char *id);
356 extern RRDSET *rrdset_find_bytype(const char *type, const char *id);
357 extern RRDSET *rrdset_find_byname(const char *name);
358
359 extern void rrdset_next_usec_unfiltered(RRDSET *st, usec_t microseconds);
360 extern void rrdset_next_usec(RRDSET *st, usec_t microseconds);
361 #define rrdset_next(st) rrdset_next_usec(st, 0ULL)
362
363 extern usec_t rrdset_done(RRDSET *st);
364
365 // get the total duration in seconds of the round robin database
366 #define rrdset_duration(st) ((time_t)( (((st)->counter >= ((unsigned long)(st)->entries))?(unsigned long)(st)->entries:(st)->counter) * (st)->update_every ))
367
368 // get the timestamp of the last entry in the round robin database
369 #define rrdset_last_entry_t(st) ((time_t)(((st)->last_updated.tv_sec)))
370
371 // get the timestamp of first entry in the round robin database
372 #define rrdset_first_entry_t(st) ((time_t)(rrdset_last_entry_t(st) - rrdset_duration(st)))
373
374 // get the last slot updated in the round robin database
375 #define rrdset_last_slot(st) ((unsigned long)(((st)->current_entry == 0) ? (st)->entries - 1 : (st)->current_entry - 1))
376
377 // get the first / oldest slot updated in the round robin database
378 #define rrdset_first_slot(st) ((unsigned long)( (((st)->counter >= ((unsigned long)(st)->entries)) ? (unsigned long)( ((unsigned long)(st)->current_entry > 0) ? ((unsigned long)(st)->current_entry) : ((unsigned long)(st)->entries) ) - 1 : 0) ))
379
380 // get the slot of the round robin database, for the given timestamp (t)
381 // it always returns a valid slot, although may not be for the time requested if the time is outside the round robin database
382 #define rrdset_time2slot(st, t) ( \
383         (  (time_t)(t) >= rrdset_last_entry_t(st))  ? ( rrdset_last_slot(st) ) : \
384         ( ((time_t)(t) <= rrdset_first_entry_t(st)) ?   rrdset_first_slot(st) : \
385         ( (rrdset_last_slot(st) >= (unsigned long)((rrdset_last_entry_t(st) - (time_t)(t)) / (unsigned long)((st)->update_every)) ) ? \
386           (rrdset_last_slot(st) -  (unsigned long)((rrdset_last_entry_t(st) - (time_t)(t)) / (unsigned long)((st)->update_every)) ) : \
387           (rrdset_last_slot(st) -  (unsigned long)((rrdset_last_entry_t(st) - (time_t)(t)) / (unsigned long)((st)->update_every)) + (unsigned long)(st)->entries ) \
388         )))
389
390 // get the timestamp of a specific slot in the round robin database
391 #define rrdset_slot2time(st, slot) ( rrdset_last_entry_t(st) - \
392         ((unsigned long)(st)->update_every * ( \
393                 ( (unsigned long)(slot) > rrdset_last_slot(st)) ? \
394                 ( (rrdset_last_slot(st) - (unsigned long)(slot) + (unsigned long)(st)->entries) ) : \
395                 ( (rrdset_last_slot(st) - (unsigned long)(slot)) )) \
396         ))
397
398 // ----------------------------------------------------------------------------
399 // RRD DIMENSION functions
400
401 extern RRDDIM *rrddim_add(RRDSET *st, const char *id, const char *name, long multiplier, long divisor, int algorithm);
402
403 extern void rrddim_set_name(RRDSET *st, RRDDIM *rd, const char *name);
404 extern void rrddim_free(RRDSET *st, RRDDIM *rd);
405
406 extern RRDDIM *rrddim_find(RRDSET *st, const char *id);
407
408 extern int rrddim_hide(RRDSET *st, const char *id);
409 extern int rrddim_unhide(RRDSET *st, const char *id);
410
411 extern collected_number rrddim_set_by_pointer(RRDSET *st, RRDDIM *rd, collected_number value);
412 extern collected_number rrddim_set(RRDSET *st, const char *id, collected_number value);
413
414 #endif /* NETDATA_RRD_H */