dde8bb9d1f1b5e53399689708db7d2de9a2f3773
[rrdtool.git] / src / rrd_format.h
1 /*****************************************************************************
2  * RRDtool 1.0.33  Copyright Tobias Oetiker, 1997, 1998, 1999
3  *****************************************************************************
4  * rrd_format.h  RRD Database Format header
5  *****************************************************************************/
6
7 #ifndef _RRD_FORMAT_H
8 #define _RRD_FORMAT_H
9
10 #include "rrd.h"
11
12 /*****************************************************************************
13  * put this in your /usr/lib/magic file (/etc/magic on HPUX)
14  *
15  *  # rrd database format
16  *  0       string          RRD\0           rrd file
17  *  >5      string          >\0             version '%s'
18  *
19  *****************************************************************************/
20
21 #define RRD_COOKIE    "RRD"
22 #define RRD_VERSION   "0001"
23 #define FLOAT_COOKIE  8.642135E130
24
25 #if defined(WIN32)
26 #define DNAN          ((double)fmod(0.0,0.0))    
27 #define DINF          ((double)log(0.0))
28 #else
29
30 #define DNAN          ((double)(0.0/0.0))     /* we use a DNAN to
31                                                * represent the UNKNOWN
32                                                * */
33 #define DINF          ((double)(1.0/0.0))     /* we use a DINF to
34                                                * represent a value at the upper or
35                                                * lower border of the graph ...
36                                                * */
37 #endif
38
39 typedef union unival { 
40     unsigned long u_cnt; 
41     rrd_value_t   u_val;
42 } unival;
43
44
45 /****************************************************************************
46  * The RRD Database Structure
47  * ---------------------------
48  * 
49  * In oder to properly describe the database structure lets define a few
50  * new words:
51  *
52  * ds - Data Source (ds) providing input to the database. A Data Source (ds)
53  *       can be a traffic counter, a temperature, the number of users logged
54  *       into a system. The rrd database format can handle the input of
55  *       several Data Sources (ds) in a singe database.
56  *  
57  * dst - Data Source Type (dst). The Data Source Type (dst) defines the rules
58  *       applied to Build Primary Data Points from the input provided by the
59  *       data sources (ds).
60  *
61  * pdp - Primary Data Point (pdp). After the database has accepted the
62  *       input from the data sources (ds). It starts building Primary
63  *       Data Points (pdp) from the data. Primary Data Points (pdp)
64  *       are evenly spaced along the time axis (pdp_step). The values
65  *       of the Primary Data Points are calculated from the values of
66  *       the data source (ds) and the exact time these values were
67  *       provided by the data source (ds).
68  *
69  * pdp_st - PDP Start (pdp_st). The moments (pdp_st) in time where
70  *       these steps occur are defined by the moments where the
71  *       number of seconds since 1970-jan-1 modulo pdp_step equals
72  *       zero (pdp_st). 
73  *
74  * cf -  Consolidation Function (cf). An arbitrary Consolidation Function (cf)
75  *       (averaging, min, max) is applied to the primary data points (pdp) to
76  *       calculate the consolidated data point.
77  *
78  * cdp - Consolidated Data Point (cdp) is the long term storage format for data
79  *       in the rrd database. Consolidated Data Points represent one or
80  *       several primary data points collected along the time axis. The
81  *       Consolidated Data Points (cdp) are stored in Round Robin Archives
82  *       (rra).
83  *
84  * rra - Round Robin Archive (rra). This is the place where the
85  *       consolidated data points (cdp) get stored. The data is
86  *       organized in rows (row) and columns (col). The Round Robin
87  *       Archive got its name from the method data is stored in
88  *       there. An RRD database can contain several Round Robin
89  *       Archives. Each Round Robin Archive can have a different row
90  *       spacing along the time axis (pdp_cnt) and a different
91  *       consolidation function (cf) used to build its consolidated
92  *       data points (cdp).  
93  * 
94  * rra_st - RRA Start (rra_st). The moments (rra_st) in time where
95  *       Consolidated Data Points (cdp) are added to an rra are
96  *       defined by the moments where the number of seconds since
97  *       1970-jan-1 modulo pdp_cnt*pdp_step equals zero (rra_st).
98  *
99  * row - Row (row). A row represent all consolidated data points (cdp)
100  *       in a round robin archive who are of the same age.
101  *       
102  * col - Column (col). A column (col) represent all consolidated
103  *       data points (cdp) in a round robin archive (rra) who
104  *       originated from the same data source (ds).
105  *
106  */
107
108 /****************************************************************************
109  * POS 1: stat_head_t                           static header of the database
110  ****************************************************************************/
111
112 typedef struct stat_head_t {
113
114     /* Data Base Identification Section ***/
115     char             cookie[4];          /* RRD */
116     char             version[5];         /* version of the format */
117     double           float_cookie;       /* is it the correct double
118                                           * representation ?  */
119
120     /* Data Base Structure Definition *****/
121     unsigned long    ds_cnt;             /* how many different ds provide
122                                           * input to the rrd */
123     unsigned long    rra_cnt;            /* how many rras will be maintained
124                                           * in the rrd */
125     unsigned long    pdp_step;           /* pdp interval in seconds */
126
127     unival           par[10];            /* global parameters ... unused
128                                             at the moment */
129 } stat_head_t;
130
131
132 /****************************************************************************
133  * POS 2: ds_def_t  (* ds_cnt)                        Data Source definitions
134  ****************************************************************************/
135
136 enum dst_en          { DST_COUNTER=0,     /* data source types available */
137                        DST_ABSOLUTE, 
138                        DST_GAUGE,
139                        DST_DERIVE};
140
141 enum ds_param_en {   DS_mrhb_cnt=0,       /* minimum required heartbeat. A
142                                            * data source must provide input at
143                                            * least every ds_mrhb seconds,
144                                            * otherwise it is regarded dead and
145                                            * will be set to UNKNOWN */             
146                      DS_min_val,          /* the processed input of a ds must */
147                      DS_max_val };        /* be between max_val and min_val
148                                            * both can be set to UNKNOWN if you
149                                            * do not care. Data outside the limits
150                                            * set to UNKNOWN */
151
152 /* The magic number here is one less than DS_NAM_SIZE */
153 #define DS_NAM_FMT    "%19[a-zA-Z0-9_-]"
154 #define DS_NAM_SIZE   20
155
156 #define DST_FMT    "%19[A-Z]"
157 #define DST_SIZE   20
158
159 typedef struct ds_def_t {
160     char             ds_nam[DS_NAM_SIZE]; /* Name of the data source (null terminated)*/
161     char             dst[DST_SIZE];       /* Type of data source (null terminated)*/
162     unival           par[10];             /* index of this array see ds_param_en */
163 } ds_def_t;
164
165 /****************************************************************************
166  * POS 3: rra_def_t ( *  rra_cnt)         one for each store to be maintained
167  ****************************************************************************/
168 enum cf_en           { CF_AVERAGE=0,     /* data consolidation functions */ 
169                        CF_MINIMUM, 
170                        CF_MAXIMUM,
171                        CF_LAST};
172
173 enum rra_par_en {   RRA_cdp_xff_val=0};   /* what part of the consolidated 
174                                             datapoint may be unknown, while 
175                                             still a valid entry in goes into the rra */
176                         
177 #define CF_NAM_FMT    "%19[A-Z]"
178 #define CF_NAM_SIZE   20
179
180 typedef struct rra_def_t {
181     char             cf_nam[CF_NAM_SIZE];/* consolidation function (null term) */
182     unsigned long    row_cnt;            /* number of entries in the store */
183     unsigned long    pdp_cnt;            /* how many primary data points are
184                                           * required for a consolidated data
185                                           * point?*/
186     unival           par[10];            /* index see rra_param_en */
187
188 } rra_def_t;
189
190
191 /****************************************************************************
192  ****************************************************************************
193  ****************************************************************************
194  * LIVE PART OF THE HEADER. THIS WILL BE WRITTEN ON EVERY UPDATE         *
195  ****************************************************************************
196  ****************************************************************************
197  ****************************************************************************/
198 /****************************************************************************
199  * POS 4: live_head_t                    
200  ****************************************************************************/
201
202 typedef struct live_head_t {
203     time_t           last_up;            /* when was rrd last updated */
204 } live_head_t;
205
206
207 /****************************************************************************
208  * POS 5: pdp_prep_t  (* ds_cnt)                     here we prepare the pdps 
209  ****************************************************************************/
210 #define LAST_DS_LEN 30 /* DO NOT CHANGE THIS ... */
211
212 enum pdp_par_en {   PDP_unkn_sec_cnt=0,  /* how many seconds of the current
213                                           * pdp value is unknown data? */
214
215                     PDP_val};            /* current value of the pdp.
216                                             this depends on dst */
217
218 typedef struct pdp_prep_t{    
219     char last_ds[LAST_DS_LEN];           /* the last reading from the data
220                                           * source.  this is stored in ASCII
221                                           * to cater for very large counters
222                                           * we might encounter in connection
223                                           * with SNMP. */
224     unival          scratch[10];         /* contents according to pdp_par_en */
225 } pdp_prep_t;
226
227 /* data is passed from pdp to cdp when seconds since epoch modulo pdp_step == 0
228    obviously the updates do not occur at these times only. Especially does the
229    format allow for updates to occur at different times for each data source.
230    The rules which makes this work is as follows:
231
232    * DS updates may only occur at ever increasing points in time
233    * When any DS update arrives after a cdp update time, the *previous*
234      update cycle gets executed. All pdps are transfered to cdps and the
235      cdps feed the rras where necessary. Only then the new DS value
236      is loaded into the PDP.                                                   */
237
238
239 /****************************************************************************
240  * POS 6: cdp_prep_t (* rra_cnt * ds_cnt )      data prep area for cdp values
241  ****************************************************************************/
242 enum cdp_par_en {  CDP_val=0,          /* the base_interval is always an
243                                           * average */
244                    CDP_unkn_pdp_cnt };       /* how many unknown pdp were
245                                           * integrated. This and the cdp_xff
246                                             will decide if this is going to
247                                             be a UNKNOWN or a valid value */
248
249 typedef struct cdp_prep_t{
250     unival         scratch[10];          /* contents according to cdp_par_en *
251                                           * init state should be NAN */
252
253 } cdp_prep_t;
254
255 /****************************************************************************
256  * POS 7: rra_ptr_t (* rra_cnt)       pointers to the current row in each rra
257  ****************************************************************************/
258
259 typedef struct rra_ptr_t {
260     unsigned long    cur_row;            /* current row in the rra*/
261 } rra_ptr_t;
262
263
264 /****************************************************************************
265  ****************************************************************************
266  * One single struct to hold all the others. For convenience.
267  ****************************************************************************
268  ****************************************************************************/
269 typedef struct rrd_t {
270     stat_head_t      *stat_head;          /* the static header */
271     ds_def_t         *ds_def;             /* list of data source definitions */
272     rra_def_t        *rra_def;            /* list of round robin archive def */
273     live_head_t      *live_head;
274     pdp_prep_t       *pdp_prep;           /* pdp data prep area */  
275     cdp_prep_t       *cdp_prep;           /* cdp prep area */
276     rra_ptr_t        *rra_ptr;            /* list of rra pointers */
277     rrd_value_t      *rrd_value;          /* list of rrd values */
278 } rrd_t;
279
280 /****************************************************************************
281  ****************************************************************************
282  * AFTER the header section we have the DATA STORAGE AREA it is made up from
283  * Consolidated Data Points organized in Round Robin Archives.
284  ****************************************************************************
285  ****************************************************************************
286  
287  *RRA 0
288  (0,0) .................... ( ds_cnt -1 , 0)
289  .
290  . 
291  .
292  (0, row_cnt -1) ... (ds_cnt -1, row_cnt -1)
293
294  *RRA 1
295  *RRA 2
296
297  *RRA rra_cnt -1
298  
299  ****************************************************************************/
300
301
302 #endif
303
304
305
306