1RRDINFO(1) rrdtool RRDINFO(1)
2
3
4
6 rrdinfo - extract header information from an RRD
7
9 rrdtool info filename.rrd
10
12 The info function prints the header information from an RRD in a pars‐
13 ing friendly format.
14
15 Check rrdcreate if you are uncertain about the meaning of the individ‐
16 ual keys.
17
19 This is the output generated by running info on a simple RRD which con‐
20 tains two data sources and one RRA. Note that the number after the
21 last_update keyword is in seconds since 1970. The string NaN stands for
22 *UNKNOWN* data. In the example it means that this RRD has neither mini‐
23 mum nor maximum values defined for either of its data sources.
24
25 filename = "random.rrd"
26 rrd_version = "0001"
27 step = 300
28 last_update = 955892996
29 ds[a].type = "GAUGE"
30 ds[a].minimal_heartbeat = 600
31 ds[a].min = NaN
32 ds[a].max = NaN
33 ds[a].last_ds = "UNKN"
34 ds[a].value = 2.1824421548e+04
35 ds[a].unknown_sec = 0
36 ds[b].type = "GAUGE"
37 ds[b].minimal_heartbeat = 600
38 ds[b].min = NaN
39 ds[b].max = NaN
40 ds[b].last_ds = "UNKN"
41 ds[b].value = 3.9620838224e+03
42 ds[b].unknown_sec = 0
43 rra[0].cf = "AVERAGE"
44 rra[0].pdp_per_row = 1
45 rra[0].cdp_prep[0].value = nan
46 rra[0].cdp_prep[0].unknown_datapoints = 0
47 rra[0].cdp_prep[1].value = nan
48 rra[0].cdp_prep[1].unknown_datapoints = 0
49
50 filename.rrd
51 The name of the RRD you want to examine.
52
54 Tobias Oetiker <tobi@oetiker.ch>
55
56
57
581.2.27 2008-02-17 RRDINFO(1)