|
Revision 663, 1.1 KB
(checked in by ahu, 7 years ago)
|
|
add peak cpu use line
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | UPDATE_INTERVAL=60 |
|---|
| 4 | |
|---|
| 5 | rrdtool create pdns_recursor.rrd -s $UPDATE_INTERVAL \ |
|---|
| 6 | DS:questions:COUNTER:600:0:100000 \ |
|---|
| 7 | DS:tcp-questions:COUNTER:600:0:100000 \ |
|---|
| 8 | DS:cache-entries:GAUGE:600:0:U \ |
|---|
| 9 | DS:throttle-entries:GAUGE:600:0:U \ |
|---|
| 10 | DS:concurrent-queries:GAUGE:600:0:50000 \ |
|---|
| 11 | DS:noerror-answers:COUNTER:600:0:100000 \ |
|---|
| 12 | DS:nxdomain-answers:COUNTER:600:0:100000 \ |
|---|
| 13 | DS:servfail-answers:COUNTER:600:0:100000 \ |
|---|
| 14 | DS:tcp-outqueries:COUNTER:600:0:100000 \ |
|---|
| 15 | DS:outgoing-timeouts:COUNTER:600:0:100000 \ |
|---|
| 16 | DS:throttled-out:COUNTER:600:0:100000 \ |
|---|
| 17 | DS:nsspeeds-entries:GAUGE:600:0:U \ |
|---|
| 18 | DS:negcache-entries:GAUGE:600:0:U \ |
|---|
| 19 | DS:all-outqueries:COUNTER:600:0:100000 \ |
|---|
| 20 | DS:cache-hits:COUNTER:600:0:100000 \ |
|---|
| 21 | DS:cache-misses:COUNTER:600:0:100000 \ |
|---|
| 22 | DS:answers0-1:COUNTER:600:0:100000 \ |
|---|
| 23 | DS:answers1-10:COUNTER:600:0:100000 \ |
|---|
| 24 | DS:answers10-100:COUNTER:600:0:100000 \ |
|---|
| 25 | DS:answers100-1000:COUNTER:600:0:100000 \ |
|---|
| 26 | DS:answers-slow:COUNTER:600:0:100000 \ |
|---|
| 27 | DS:qa-latency:GAUGE:600:0:10000000 \ |
|---|
| 28 | DS:user-msec:COUNTER:600:0:2000 \ |
|---|
| 29 | DS:sys-msec:COUNTER:600:0:2000 \ |
|---|
| 30 | RRA:AVERAGE:0.5:1:9600 \ |
|---|
| 31 | RRA:AVERAGE:0.5:4:9600 \ |
|---|
| 32 | RRA:AVERAGE:0.5:24:6000 \ |
|---|
| 33 | RRA:MAX:0.5:1:9600 \ |
|---|
| 34 | RRA:MAX:0.5:4:9600 \ |
|---|
| 35 | RRA:MAX:0.5:24:6000 |
|---|