Add files via upload

This commit is contained in:
Waldek 2021-01-06 13:25:44 +01:00 committed by GitHub
parent aa161627a1
commit 05052db552
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 52 additions and 0 deletions

52
sysinfo/rrd-db.sh Normal file
View File

@ -0,0 +1,52 @@
#!/bin/sh
# Db for temperature CPU
rrdtool create tempC.rrd \
--step 300 \
DS:temp:GAUGE:600:0:100 \
RRA:AVERAGE:0.5:1:288 \
RRA:AVERAGE:0.5:3:672 \
RRA:MIN:0.5:1:288 \
RRA:MIN:0.5:3:672 \
RRA:MAX:0.5:1:288 \
RRA:MAX:0.5:3:672 \
RRA:LAST:0.5:1:288 \
RRA:LAST:0.5:3:672
# Db for memory usage
rrdtool create mem.rrd \
--step 300 \
DS:mem:GAUGE:600:0:100 \
RRA:AVERAGE:0.5:1:288 \
RRA:AVERAGE:0.5:3:672 \
RRA:MIN:0.5:1:288 \
RRA:MIN:0.5:3:672 \
RRA:MAX:0.5:1:288 \
RRA:MAX:0.5:3:672 \
RRA:LAST:0.5:1:288 \
RRA:LAST:0.5:3:672
# Db for disk usage
rrdtool create hdd.rrd \
--step 300 \
DS:hdd:GAUGE:600:0:100 \
RRA:AVERAGE:0.5:1:288 \
RRA:AVERAGE:0.5:3:672 \
RRA:MIN:0.5:1:288 \
RRA:MIN:0.5:3:672 \
RRA:MAX:0.5:1:288 \
RRA:MAX:0.5:3:672 \
RRA:LAST:0.5:1:288 \
RRA:LAST:0.5:3:672
# Db for CPU load
rrdtool create load.rrd -s 60 \
DS:load1:GAUGE:180:0:U \
DS:load5:GAUGE:180:0:U \
DS:load15:GAUGE:180:0:U \
DS:cpuuser:COUNTER:180:0:100 \
DS:cpunice:COUNTER:180:0:100 \
DS:cpusystem:COUNTER:180:0:100 \
RRA:AVERAGE:0.5:1:1440 \
RRA:AVERAGE:0.5:1440:1 \
RRA:MIN:0.5:1440:1 \
RRA:MAX:0.5:1440:1