added pointer to florian forsters dtd to the rrd dumpt
[rrdtool.git] / src / rrd_dump.c
1 /*****************************************************************************
2  * RRDtool 1.2.99907080300  Copyright by Tobi Oetiker, 1997-2007
3  *****************************************************************************
4  * rrd_dump  Display a RRD
5  *****************************************************************************
6  * $Id$
7  * $Log$
8  * Revision 1.7  2004/05/25 20:53:21  oetiker
9  * prevent small leak when resources are exhausted -- Mike Slifcak
10  *
11  * Revision 1.6  2004/05/25 20:51:49  oetiker
12  * Update displayed copyright messages to be consistent. -- Mike Slifcak
13  *
14  * Revision 1.5  2003/02/13 07:05:27  oetiker
15  * Find attached the patch I promised to send to you. Please note that there
16  * are three new source files (src/rrd_is_thread_safe.h, src/rrd_thread_safe.c
17  * and src/rrd_not_thread_safe.c) and the introduction of librrd_th. This
18  * library is identical to librrd, but it contains support code for per-thread
19  * global variables currently used for error information only. This is similar
20  * to how errno per-thread variables are implemented.  librrd_th must be linked
21  * alongside of libpthred
22  *
23  * There is also a new file "THREADS", holding some documentation.
24  *
25  * -- Peter Stamfest <peter@stamfest.at>
26  *
27  * Revision 1.4  2002/02/01 20:34:49  oetiker
28  * fixed version number and date/time
29  *
30  * Revision 1.3  2001/03/10 23:54:39  oetiker
31  * Support for COMPUTE data sources (CDEF data sources). Removes the RPN
32  * parser and calculator from rrd_graph and puts then in a new file,
33  * rrd_rpncalc.c. Changes to core files rrd_create and rrd_update. Some
34  * clean-up of aberrant behavior stuff, including a bug fix.
35  * Documentation update (rrdcreate.pod, rrdupdate.pod). Change xml format.
36  * -- Jake Brutlag <jakeb@corp.webtv.net>
37  *
38  * Revision 1.2  2001/03/04 13:01:55  oetiker
39  *
40  * Revision 1.1.1.1  2001/02/25 22:25:05  oetiker
41  * checkin
42  *
43  *****************************************************************************/
44 #include "rrd_tool.h"
45 #include "rrd_rpncalc.h"
46
47 #if !(defined(NETWARE) || defined(WIN32))
48 extern char *tzname[2];
49 #endif
50
51 int rrd_dump(
52     int argc,
53     char **argv)
54 {
55     int       rc;
56
57     if (argc < 2) {
58         rrd_set_error("Not enough arguments");
59         return -1;
60     }
61
62     if (argc == 3) {
63         rc = rrd_dump_r(argv[1], argv[2]);
64     } else {
65         rc = rrd_dump_r(argv[1], NULL);
66     }
67
68     return rc;
69 }
70
71 int rrd_dump_r(
72     const char *filename,
73     char *outname)
74 {
75     unsigned int i, ii, ix, iii = 0;
76     time_t    now;
77     char      somestring[255];
78     rrd_value_t my_cdp;
79     off_t     rra_base, rra_start, rra_next;
80     rrd_file_t *rrd_file;
81     FILE     *out_file;
82     rrd_t     rrd;
83     rrd_value_t value;
84     struct tm tm;
85
86     rrd_file = rrd_open(filename, &rrd, RRD_READONLY | RRD_READAHEAD);
87     if (rrd_file == NULL) {
88         rrd_free(&rrd);
89         return (-1);
90     }
91
92     out_file = NULL;
93     if (outname) {
94         if (!(out_file = fopen(outname, "w"))) {
95             return (-1);
96         }
97     } else {
98         out_file = stdout;
99     }
100
101     fputs("<?xml version="1.0" encoding=\"utf-8\"?>", out_file);
102     fputs("<!DOCTYPE rrd SYSTEM \"http://oss.oetiker.ch/rrdtool/rrdtool.dtd\">", out_file);
103     fputs("<!-- Round Robin Database Dump -->", out_file);
104     fputs("<rrd>", out_file);
105     if (atoi(rrd.stat_head->version) <= 3) {
106         fprintf(out_file, "\t<version> %s </version>\n", RRD_VERSION3);
107     } else {
108         fprintf(out_file, "\t<version> %s </version>\n", RRD_VERSION);
109     }
110     fprintf(out_file, "\t<step> %lu </step> <!-- Seconds -->\n",
111             rrd.stat_head->pdp_step);
112 #if HAVE_STRFTIME
113     localtime_r(&rrd.live_head->last_up, &tm);
114     strftime(somestring, 200, "%Y-%m-%d %H:%M:%S %Z", &tm);
115 #else
116 # error "Need strftime"
117 #endif
118     fprintf(out_file, "\t<lastupdate> %lu </lastupdate> <!-- %s -->\n\n",
119             (unsigned long) rrd.live_head->last_up, somestring);
120     for (i = 0; i < rrd.stat_head->ds_cnt; i++) {
121         fprintf(out_file, "\t<ds>\n");
122         fprintf(out_file, "\t\t<name> %s </name>\n", rrd.ds_def[i].ds_nam);
123         fprintf(out_file, "\t\t<type> %s </type>\n", rrd.ds_def[i].dst);
124         if (dst_conv(rrd.ds_def[i].dst) != DST_CDEF) {
125             fprintf(out_file,
126                     "\t\t<minimal_heartbeat> %lu </minimal_heartbeat>\n",
127                     rrd.ds_def[i].par[DS_mrhb_cnt].u_cnt);
128             if (isnan(rrd.ds_def[i].par[DS_min_val].u_val)) {
129                 fprintf(out_file, "\t\t<min> NaN </min>\n");
130             } else {
131                 fprintf(out_file, "\t\t<min> %0.10e </min>\n",
132                         rrd.ds_def[i].par[DS_min_val].u_val);
133             }
134             if (isnan(rrd.ds_def[i].par[DS_max_val].u_val)) {
135                 fprintf(out_file, "\t\t<max> NaN </max>\n");
136             } else {
137                 fprintf(out_file, "\t\t<max> %0.10e </max>\n",
138                         rrd.ds_def[i].par[DS_max_val].u_val);
139             }
140         } else {        /* DST_CDEF */
141             char     *str = NULL;
142
143             rpn_compact2str((rpn_cdefds_t *) &(rrd.ds_def[i].par[DS_cdef]),
144                             rrd.ds_def, &str);
145             fprintf(out_file, "\t\t<cdef> %s </cdef>\n", str);
146             free(str);
147         }
148         fprintf(out_file, "\n\t\t<!-- PDP Status -->\n");
149         fprintf(out_file, "\t\t<last_ds> %s </last_ds>\n",
150                 rrd.pdp_prep[i].last_ds);
151         if (isnan(rrd.pdp_prep[i].scratch[PDP_val].u_val)) {
152             fprintf(out_file, "\t\t<value> NaN </value>\n");
153         } else {
154             fprintf(out_file, "\t\t<value> %0.10e </value>\n",
155                     rrd.pdp_prep[i].scratch[PDP_val].u_val);
156         }
157         fprintf(out_file, "\t\t<unknown_sec> %lu </unknown_sec>\n",
158                 rrd.pdp_prep[i].scratch[PDP_unkn_sec_cnt].u_cnt);
159
160         fprintf(out_file, "\t</ds>\n\n");
161     }
162
163     fputs("<!-- Round Robin Archives -->", out_file);
164
165     rra_base = rrd_file->header_len;
166     rra_next = rra_base;
167
168     for (i = 0; i < rrd.stat_head->rra_cnt; i++) {
169
170         long      timer = 0;
171
172         rra_start = rra_next;
173         rra_next += (rrd.stat_head->ds_cnt
174                      * rrd.rra_def[i].row_cnt * sizeof(rrd_value_t));
175         fprintf(out_file, "\t<rra>\n");
176         fprintf(out_file, "\t\t<cf> %s </cf>\n", rrd.rra_def[i].cf_nam);
177         fprintf(out_file,
178                 "\t\t<pdp_per_row> %lu </pdp_per_row> <!-- %lu seconds -->\n\n",
179                 rrd.rra_def[i].pdp_cnt,
180                 rrd.rra_def[i].pdp_cnt * rrd.stat_head->pdp_step);
181         /* support for RRA parameters */
182         fprintf(out_file, "\t\t<params>\n");
183         switch (cf_conv(rrd.rra_def[i].cf_nam)) {
184         case CF_HWPREDICT:
185         case CF_MHWPREDICT:
186             fprintf(out_file, "\t\t<hw_alpha> %0.10e </hw_alpha>\n",
187                     rrd.rra_def[i].par[RRA_hw_alpha].u_val);
188             fprintf(out_file, "\t\t<hw_beta> %0.10e </hw_beta>\n",
189                     rrd.rra_def[i].par[RRA_hw_beta].u_val);
190             fprintf(out_file,
191                     "\t\t<dependent_rra_idx> %lu </dependent_rra_idx>\n",
192                     rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt);
193             break;
194         case CF_SEASONAL:
195         case CF_DEVSEASONAL:
196             fprintf(out_file,
197                     "\t\t<seasonal_gamma> %0.10e </seasonal_gamma>\n",
198                     rrd.rra_def[i].par[RRA_seasonal_gamma].u_val);
199             fprintf(out_file,
200                     "\t\t<seasonal_smooth_idx> %lu </seasonal_smooth_idx>\n",
201                     rrd.rra_def[i].par[RRA_seasonal_smooth_idx].u_cnt);
202             if (atoi(rrd.stat_head->version) >= 4) {
203                 fprintf(out_file,
204                         "\t\t<smoothing_window> %0.10e </smoothing_window>\n",
205                         rrd.rra_def[i].par[RRA_seasonal_smoothing_window].
206                         u_val);
207             }
208             fprintf(out_file,
209                     "\t\t<dependent_rra_idx> %lu </dependent_rra_idx>\n",
210                     rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt);
211             break;
212         case CF_FAILURES:
213             fprintf(out_file, "\t\t<delta_pos> %0.10e </delta_pos>\n",
214                     rrd.rra_def[i].par[RRA_delta_pos].u_val);
215             fprintf(out_file, "\t\t<delta_neg> %0.10e </delta_neg>\n",
216                     rrd.rra_def[i].par[RRA_delta_neg].u_val);
217             fprintf(out_file, "\t\t<window_len> %lu </window_len>\n",
218                     rrd.rra_def[i].par[RRA_window_len].u_cnt);
219             fprintf(out_file,
220                     "\t\t<failure_threshold> %lu </failure_threshold>\n",
221                     rrd.rra_def[i].par[RRA_failure_threshold].u_cnt);
222             /* fall thru */
223         case CF_DEVPREDICT:
224             fprintf(out_file,
225                     "\t\t<dependent_rra_idx> %lu </dependent_rra_idx>\n",
226                     rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt);
227             break;
228         case CF_AVERAGE:
229         case CF_MAXIMUM:
230         case CF_MINIMUM:
231         case CF_LAST:
232         default:
233             fprintf(out_file, "\t\t<xff> %0.10e </xff>\n",
234                     rrd.rra_def[i].par[RRA_cdp_xff_val].u_val);
235             break;
236         }
237         fprintf(out_file, "\t\t</params>\n");
238         fprintf(out_file, "\t\t<cdp_prep>\n");
239         for (ii = 0; ii < rrd.stat_head->ds_cnt; ii++) {
240             unsigned long ivalue;
241
242             fprintf(out_file, "\t\t\t<ds>\n");
243             /* support for exporting all CDP parameters */
244             /* parameters common to all CFs */
245             /* primary_val and secondary_val do not need to be saved between updates
246              * so strictly speaking they could be omitted.
247              * However, they can be useful for diagnostic purposes, so are included here. */
248             value = rrd.cdp_prep[i * rrd.stat_head->ds_cnt
249                                  + ii].scratch[CDP_primary_val].u_val;
250             if (isnan(value)) {
251                 fprintf(out_file,
252                         "\t\t\t<primary_value> NaN </primary_value>\n");
253             } else {
254                 fprintf(out_file,
255                         "\t\t\t<primary_value> %0.10e </primary_value>\n",
256                         value);
257             }
258             value =
259                 rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
260                              ii].scratch[CDP_secondary_val].u_val;
261             if (isnan(value)) {
262                 fprintf(out_file,
263                         "\t\t\t<secondary_value> NaN </secondary_value>\n");
264             } else {
265                 fprintf(out_file,
266                         "\t\t\t<secondary_value> %0.10e </secondary_value>\n",
267                         value);
268             }
269             switch (cf_conv(rrd.rra_def[i].cf_nam)) {
270             case CF_HWPREDICT:
271             case CF_MHWPREDICT:
272                 value =
273                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
274                                  ii].scratch[CDP_hw_intercept].u_val;
275                 if (isnan(value)) {
276                     fprintf(out_file, "\t\t\t<intercept> NaN </intercept>\n");
277                 } else {
278                     fprintf(out_file,
279                             "\t\t\t<intercept> %0.10e </intercept>\n", value);
280                 }
281                 value =
282                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
283                                  ii].scratch[CDP_hw_last_intercept].u_val;
284                 if (isnan(value)) {
285                     fprintf(out_file,
286                             "\t\t\t<last_intercept> NaN </last_intercept>\n");
287                 } else {
288                     fprintf(out_file,
289                             "\t\t\t<last_intercept> %0.10e </last_intercept>\n",
290                             value);
291                 }
292                 value =
293                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
294                                  ii].scratch[CDP_hw_slope].u_val;
295                 if (isnan(value)) {
296                     fprintf(out_file, "\t\t\t<slope> NaN </slope>\n");
297                 } else {
298                     fprintf(out_file, "\t\t\t<slope> %0.10e </slope>\n",
299                             value);
300                 }
301                 value =
302                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
303                                  ii].scratch[CDP_hw_last_slope].u_val;
304                 if (isnan(value)) {
305                     fprintf(out_file,
306                             "\t\t\t<last_slope> NaN </last_slope>\n");
307                 } else {
308                     fprintf(out_file,
309                             "\t\t\t<last_slope> %0.10e </last_slope>\n",
310                             value);
311                 }
312                 ivalue =
313                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
314                                  ii].scratch[CDP_null_count].u_cnt;
315                 fprintf(out_file, "\t\t\t<nan_count> %lu </nan_count>\n",
316                         ivalue);
317                 ivalue =
318                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
319                                  ii].scratch[CDP_last_null_count].u_cnt;
320                 fprintf(out_file,
321                         "\t\t\t<last_nan_count> %lu </last_nan_count>\n",
322                         ivalue);
323                 break;
324             case CF_SEASONAL:
325             case CF_DEVSEASONAL:
326                 value =
327                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
328                                  ii].scratch[CDP_hw_seasonal].u_val;
329                 if (isnan(value)) {
330                     fprintf(out_file, "\t\t\t<seasonal> NaN </seasonal>\n");
331                 } else {
332                     fprintf(out_file, "\t\t\t<seasonal> %0.10e </seasonal>\n",
333                             value);
334                 }
335                 value =
336                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
337                                  ii].scratch[CDP_hw_last_seasonal].u_val;
338                 if (isnan(value)) {
339                     fprintf(out_file,
340                             "\t\t\t<last_seasonal> NaN </last_seasonal>\n");
341                 } else {
342                     fprintf(out_file,
343                             "\t\t\t<last_seasonal> %0.10e </last_seasonal>\n",
344                             value);
345                 }
346                 ivalue =
347                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
348                                  ii].scratch[CDP_init_seasonal].u_cnt;
349                 fprintf(out_file, "\t\t\t<init_flag> %lu </init_flag>\n",
350                         ivalue);
351                 break;
352             case CF_DEVPREDICT:
353                 break;
354             case CF_FAILURES:
355             {
356                 unsigned short vidx;
357                 char     *violations_array = (char *) ((void *)
358                                                        rrd.cdp_prep[i *
359                                                                     rrd.
360                                                                     stat_head->
361                                                                     ds_cnt +
362                                                                     ii].
363                                                        scratch);
364                 fprintf(out_file, "\t\t\t<history> ");
365                 for (vidx = 0;
366                      vidx < rrd.rra_def[i].par[RRA_window_len].u_cnt;
367                      ++vidx) {
368                     fprintf(out_file, "%d", violations_array[vidx]);
369                 }
370                 fprintf(out_file, " </history>\n");
371             }
372                 break;
373             case CF_AVERAGE:
374             case CF_MAXIMUM:
375             case CF_MINIMUM:
376             case CF_LAST:
377             default:
378                 value =
379                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
380                                  ii].scratch[CDP_val].u_val;
381                 if (isnan(value)) {
382                     fprintf(out_file, "\t\t\t<value> NaN </value>\n");
383                 } else {
384                     fprintf(out_file, "\t\t\t<value> %0.10e </value>\n",
385                             value);
386                 }
387                 fprintf(out_file,
388                         "\t\t\t<unknown_datapoints> %lu </unknown_datapoints>\n",
389                         rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
390                                      ii].scratch[CDP_unkn_pdp_cnt].u_cnt);
391                 break;
392             }
393             fprintf(out_file, "\t\t\t</ds>\n");
394         }
395         fprintf(out_file, "\t\t</cdp_prep>\n");
396
397         fprintf(out_file, "\t\t<database>\n");
398         rrd_seek(rrd_file, (rra_start + (rrd.rra_ptr[i].cur_row + 1)
399                             * rrd.stat_head->ds_cnt
400                             * sizeof(rrd_value_t)), SEEK_SET);
401         timer = -(rrd.rra_def[i].row_cnt - 1);
402         ii = rrd.rra_ptr[i].cur_row;
403         for (ix = 0; ix < rrd.rra_def[i].row_cnt; ix++) {
404             ii++;
405             if (ii >= rrd.rra_def[i].row_cnt) {
406                 rrd_seek(rrd_file, rra_start, SEEK_SET);
407                 ii = 0; /* wrap if max row cnt is reached */
408             }
409             now = (rrd.live_head->last_up
410                    - rrd.live_head->last_up
411                    % (rrd.rra_def[i].pdp_cnt * rrd.stat_head->pdp_step))
412                 + (timer * rrd.rra_def[i].pdp_cnt * rrd.stat_head->pdp_step);
413
414             timer++;
415 #if HAVE_STRFTIME
416             localtime_r(&now, &tm);
417             strftime(somestring, 200, "%Y-%m-%d %H:%M:%S %Z", &tm);
418 #else
419 # error "Need strftime"
420 #endif
421             fprintf(out_file, "\t\t\t<!-- %s / %d --> <row>", somestring,
422                     (int) now);
423             for (iii = 0; iii < rrd.stat_head->ds_cnt; iii++) {
424                 rrd_read(rrd_file, &my_cdp, sizeof(rrd_value_t) * 1);
425                 if (isnan(my_cdp)) {
426                     fprintf(out_file, "<v> NaN </v>");
427                 } else {
428                     fprintf(out_file, "<v> %0.10e </v>", my_cdp);
429                 };
430             }
431             fprintf(out_file, "</row>\n");
432         }
433         fprintf(out_file, "\t\t</database>\n\t</rra>\n");
434
435     }
436     fprintf(out_file, "</rrd>\n");
437     rrd_free(&rrd);
438     if (out_file != stdout) {
439         fclose(out_file);
440     }
441     return rrd_close(rrd_file);
442 }