forked from jmxtrans/jmxtrans
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrrd-template-example.xml
More file actions
35 lines (35 loc) · 887 Bytes
/
rrd-template-example.xml
File metadata and controls
35 lines (35 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<rrd_def>
<path>${database}</path>
<!-- not mandatory -->
<start>1000123456</start>
<!-- not mandatory -->
<step>300</step>
<!-- at least one datasource must be supplied -->
<datasource>
<name>input</name>
<type>COUNTER</type>
<heartbeat>300</heartbeat>
<min>0</min>
<max>U</max>
</datasource>
<datasource>
<name>temperature</name>
<type>GAUGE</type>
<heartbeat>400</heartbeat>
<min>U</min>
<max>1000</max>
</datasource>
<!-- at least one archive must be supplied -->
<archive>
<cf>AVERAGE</cf>
<xff>0.5</xff>
<steps>1</steps>
<rows>600</rows>
</archive>
<archive>
<cf>MAX</cf>
<xff>0.6</xff>
<steps>6</steps>
<rows>7000</rows>
</archive>
</rrd_def>