1RRDRESIZE(1) rrdtool RRDRESIZE(1)
2
3
4
6 rrdresize - alters the size of an RRA and creates a new .rrd file
7
9 rrdtool resize filename rra-num GROW|SHRINK rows
10
12 The resize function is used to modify the number of rows in an RRA.
13
14 filename
15 the name of the RRD you want to alter.
16
17 rra-num the RRA you want to alter. You can find the number using
18 rrdtool info.
19
20 GROW used if you want to add extra rows to an RRA. The extra rows
21 will be inserted as the rows that are oldest.
22
23 SHRINK used if you want to remove rows from an RRA. The rows that will
24 be removed are the oldest rows.
25
26 rows the number of rows you want to add or remove.
27
29 The new .rrd file, with the modified RRAs, is written to the file
30 resize.rrd in the current directory. The original .rrd file is not
31 modified.
32
33 It is possible to abuse this tool and get strange results by first
34 removing some rows and then reinserting the same amount (effectively
35 clearing them to be Unknown). You may thus end up with unknown data in
36 one RRA while at the same timestamp this data is available in another
37 RRA.
38
40 Alex van den Bogaerdt <alex@vandenbogaerdt.nl>
41
42
43
441.7.0 2018-01-05 RRDRESIZE(1)