1RRDDUMP(1) rrdtool RRDDUMP(1)
2
3
4
6 rrddump - dump the contents of an RRD to XML format
7
9 rrdtool dump filename.rrd > filename.xml
10
11 or
12
13 rrdtool dump filename.rrd filename.xml
14
16 The dump function writes the contents of an RRD in human readable (?)
17 XML format to a file or to stdout. This format can be read by
18 rrdrestore. Together they allow you to transfer your files from one
19 computer architecture to another as well to manipulate the contents of
20 an RRD file in a somewhat more convenient manner.
21
22 filename.rrd
23 The name of the RRD you want to dump.
24
25 filename.xml
26 The (optional) filename that you want to write the XML output
27 to. If not specified, the XML will be printed to stdout.
28
30 To transfer an RRD between architectures, follow these steps:
31
32 1. On the same system where the RRD was created, use rrdtool dump to
33 export the data to XML format.
34
35 2. Transfer the XML dump to the target system.
36
37 3. Run rrdtool restore to create a new RRD from the XML dump. See
38 rrdrestore for details.
39
41 Tobias Oetiker <tobi@oetiker.ch>
42
43
44
451.2.27 2008-02-17 RRDDUMP(1)