-
-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
724 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.11 | ||
2.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
######################################################################## | ||
# Extract H3 information | ||
# Page: 1 | ||
# Information Status Statistics | ||
# - cpu frequency - yes - yes | ||
# - cpu load 1, 5, 15 - yes - yes | ||
# - cpu scaling governor - yes - no | ||
# - cpus available - yes - yes | ||
# - dram frequency - yes - yes | ||
# - zone1/SoC temperature - yes - yes | ||
######################################################################## | ||
dynamic.1.name=cpu_frequency | ||
dynamic.1.source=/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq | ||
dynamic.1.regexp=(.*) | ||
dynamic.1.postprocess=sprintf("%.3f", $1/1000000) | ||
dynamic.1.rrd=GAUGE | ||
|
||
dynamic.2.name=load1,load5,load15 | ||
dynamic.2.source=/proc/loadavg | ||
dynamic.2.regexp=^(\S+)\s(\S+)\s(\S+) | ||
dynamic.2.postprocess= | ||
dynamic.2.rrd=GAUGE | ||
|
||
dynamic.3.name=scaling_governor | ||
dynamic.3.source=/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor | ||
dynamic.3.regexp=(.*) | ||
dynamic.3.postprocess= | ||
dynamic.3.rrd= | ||
|
||
dynamic.4.name=cpu_count | ||
dynamic.4.source=/usr/bin/expr 1 + `/usr/bin/awk -F": " '/^processor/ {print $2}' < /proc/cpuinfo | /usr/bin/tail -n1` | ||
dynamic.4.regexp=(.*) | ||
dynamic.4.postprocess= | ||
dynamic.4.rrd=GAUGE | ||
|
||
dynamic.5.name=dram_frequency | ||
dynamic.5.source=/sys/devices/platform/sunxi-ddrfreq/devfreq/sunxi-ddrfreq/cur_freq | ||
dynamic.5.regexp=(.*) | ||
dynamic.5.postprocess=sprintf("%.3f", $1/1000000) | ||
dynamic.5.rrd=GAUGE | ||
|
||
dynamic.6.name=soctemp | ||
dynamic.6.source=/sys/class/thermal/thermal_zone1/temp | ||
dynamic.6.regexp=(.*) | ||
#dynamic.6.postprocess=sprintf("%.1f", $1/1000) | ||
dynamic.6.postprocess= | ||
dynamic.6.rrd=GAUGE | ||
|
||
dynamic.7.name=zone0 | ||
dynamic.7.source=/sys/class/thermal/thermal_zone0/temp | ||
dynamic.7.regexp=(.*) | ||
dynamic.7.postprocess= | ||
dynamic.7.rrd=GAUGE | ||
|
||
web.status.1.content.1.name=CPU | ||
web.status.1.content.1.icon=cpu.png | ||
#web.status.1.content.1.line.1="Loads: <b>" + data.load1 + "</b> [1min] - <b>" + data.load5 + "</b> [5min] - <b>" + data.load15 + "</b> [15min]" | ||
web.status.1.content.1.line.1=JustGageBar("Load", "1min", 0, data.load1, 3, 100, 80)+" "+JustGageBar("Load", "5min", 0, data.load5, 3, 100, 80)+" "+JustGageBar("Load", "15min", 0, data.load15, 3, 100, 80) | ||
web.status.1.content.1.line.2="CPU frequency: <b>" + data.cpu_frequency + "GHz</b> DRAM frequency: <b>" + data.dram_frequency + "GHz</b>" | ||
web.status.1.content.1.line.3="Governor: <b>" + data.scaling_governor + "</b> Active CPU cores: <b>" + data.cpu_count + "</b>" | ||
|
||
web.status.1.content.3.name=Temperature | ||
web.status.1.content.3.icon=cpu_temp.png | ||
web.status.1.content.3.line.1=JustGageBar("SoC", "°C",0, data.soctemp , 100,100,80,percentColors,50,70) | ||
|
||
web.statistics.1.content.1.name=Load / Clockspeeds / Temperature | ||
web.statistics.1.content.1.graph.1=load1 | ||
web.statistics.1.content.1.graph.2=load5 | ||
web.statistics.1.content.1.graph.3=load15 | ||
web.statistics.1.content.1.graph.4=cpu_frequency | ||
web.statistics.1.content.1.graph.5=dram_frequency | ||
web.statistics.1.content.1.graph.6=cpu_count | ||
web.statistics.1.content.1.graph.7=soctemp | ||
web.statistics.1.content.1.graph.8=zone0 | ||
web.statistics.1.content.1.ds_graph_options.load1.label=Load 1 min | ||
web.statistics.1.content.1.ds_graph_options.load5.label=Load 5 min | ||
web.statistics.1.content.1.ds_graph_options.load15.label=Load 15 min | ||
web.statistics.1.content.1.ds_graph_options.cpu_frequency.label=CPU Clock speed (GHz) | ||
web.statistics.1.content.1.ds_graph_options.cpu_frequency.yaxis=2 | ||
web.statistics.1.content.1.ds_graph_options.dram_frequency.label=DRAM Clock speed (GHz) | ||
web.statistics.1.content.1.ds_graph_options.dram_frequency.yaxis=2 | ||
web.statistics.1.content.1.ds_graph_options.cpu_count.label=Active CPUs | ||
web.statistics.1.content.1.ds_graph_options.cpu_count.yaxis=2 | ||
web.statistics.1.content.1.ds_graph_options.soctemp.label=SoC temp (°C) | ||
web.statistics.1.content.1.ds_graph_options.zone0.label=zone0 temp (°C) | ||
web.statistics.1.content.1.graph_options.y1axis={ position: "left", min: 35, max: 75 } | ||
web.statistics.1.content.1.graph_options.y2axis={ position: "right" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
######################################################################## | ||
# Extract H3 information -- extended version | ||
# Page: 1 | ||
# Information Status Statistics | ||
# - cpu frequency - yes - yes | ||
# - dram frequency - yes - yes | ||
# - average load 1, 5, 15 - yes - yes | ||
# - detailed cpu load - yes - yes | ||
# - cpu scaling governor - yes - no | ||
# - cpus available - yes - yes | ||
# - zone1/SoC temperature - yes - yes | ||
# - disk temperature - yes - yes | ||
# - external temperature - yes - no | ||
# - Vcore voltage - yes - yes | ||
# - cooling state - yes - yes | ||
######################################################################## | ||
dynamic.1.name=cpu_frequency | ||
dynamic.1.source=/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq | ||
dynamic.1.regexp=(.*) | ||
dynamic.1.postprocess=sprintf("%.3f", $1/1000000) | ||
dynamic.1.rrd=GAUGE | ||
|
||
dynamic.2.name=load1,load5,load15 | ||
dynamic.2.source=/proc/loadavg | ||
dynamic.2.regexp=^(\S+)\s(\S+)\s(\S+) | ||
dynamic.2.postprocess= | ||
dynamic.2.rrd=GAUGE | ||
|
||
dynamic.3.name=scaling_governor | ||
dynamic.3.source=/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor | ||
dynamic.3.regexp=(.*) | ||
dynamic.3.postprocess= | ||
dynamic.3.rrd= | ||
|
||
dynamic.4.name=cpu_count | ||
dynamic.4.source=/usr/bin/expr 1 + `/usr/bin/awk -F": " '/^processor/ {print $2}' < /proc/cpuinfo | /usr/bin/tail -n1` | ||
dynamic.4.regexp=(.*) | ||
dynamic.4.postprocess= | ||
dynamic.4.rrd=GAUGE | ||
|
||
dynamic.5.name=dram_frequency | ||
dynamic.5.source=/sys/devices/platform/sunxi-ddrfreq/devfreq/sunxi-ddrfreq/cur_freq | ||
dynamic.5.regexp=(.*) | ||
dynamic.5.postprocess=sprintf("%.3f", $1/1000000) | ||
dynamic.5.rrd=GAUGE | ||
|
||
dynamic.6.name=soctemp | ||
dynamic.6.source=/sys/class/thermal/thermal_zone1/temp | ||
dynamic.6.regexp=(.*) | ||
#dynamic.6.postprocess=sprintf("%.1f", $1/1000) | ||
dynamic.6.postprocess= | ||
dynamic.6.rrd=GAUGE | ||
|
||
dynamic.7.name=externaltemp | ||
dynamic.7.source=/tmp/externaltemp | ||
dynamic.7.regexp=(.*) | ||
dynamic.7.postprocess=sprintf("%.1f", $1/1000) | ||
dynamic.7.rrd=GAUGE | ||
|
||
dynamic.8.name=disktemp | ||
dynamic.8.source=/tmp/disktemp | ||
dynamic.8.regexp=(.*) | ||
dynamic.8.postprocess=sprintf("%.1f", $1/1000) | ||
dynamic.8.rrd=GAUGE | ||
|
||
dynamic.9.name=vcorevoltage | ||
dynamic.9.source=/tmp/VCore | ||
dynamic.9.regexp=(.*) | ||
dynamic.9.postprocess=sprintf("%.2f", $1/1000) | ||
dynamic.9.rrd=GAUGE | ||
|
||
dynamic.10.name=cpu_stat,system_stat,user_stat,nice_stat,iowait_stat,irq_stat | ||
dynamic.10.source=/tmp/cpustat | ||
dynamic.10.regexp=^(\S+)\s(\S+)\s(\S+)\s(\S+)\s(\S+)\s(\S+) | ||
dynamic.10.postprocess= | ||
dynamic.10.rrd=GAUGE | ||
|
||
dynamic.11.name=coolingstate | ||
dynamic.11.source=/sys/devices/virtual/thermal/cooling_device0/cur_state | ||
dynamic.11.regexp=(.*) | ||
dynamic.11.postprocess= | ||
dynamic.11.rrd=GAUGE | ||
|
||
web.status.1.content.1.name=CPU | ||
web.status.1.content.1.icon=cpu.png | ||
web.status.1.content.1.line.1=JustGageBar("Load", "1min", 0, data.load1, 3, 100, 80)+" "+JustGageBar("Load", "5min", 0, data.load5, 3, 100, 80)+" "+JustGageBar("Load", "15min", 0, data.load15, 3, 100, 80) | ||
web.status.1.content.1.line.2="CPU total: <b>" + data.cpu_stat + "%</b> (Sys: " + data.system_stat + "%, User: " + data.user_stat + "%, I/O wait: " + data.iowait_stat + "%, Nice: " + data.nice_stat + "%)" | ||
web.status.1.content.1.line.3="CPU frequency: <b>" + data.cpu_frequency + "GHz</b> DRAM frequency: <b>" + data.dram_frequency + "GHz</b>" | ||
web.status.1.content.1.line.4="Governor: <b>" + data.scaling_governor + "</b> Active CPU cores: <b>" + data.cpu_count + "</b> Vcore: <b>" + data.vcorevoltage + "</b>" | ||
|
||
web.status.1.content.3.name=Temperature | ||
web.status.1.content.3.icon=cpu_temp.png | ||
#web.status.1.content.3.line.1=JustGageBar("SoC", "°C",0, data.soctemp , 100,100,80,percentColors,50,70)+" "+JustGageBar("Disk", "°C",0, data.disktemp , 100,100,80,percentColors,40,50)+" "+JustGageBar("München", "°C",0, data.externaltemp , 100,100,80,percentColors,30,35) | ||
web.status.1.content.3.line.1=JustGageBar("SoC", "°C",0, data.soctemp , 100,100,80,percentColors,50,70)+" "+JustGageBar("Disk", "°C",0, data.disktemp , 100,100,80,percentColors,40,50)+" "+JustGageBar("Cooling State", "",0, data.coolingstate , 5,100,80,percentColors,1,2) | ||
|
||
web.statistics.1.content.1.name=Load / Clockspeeds / Temperature | ||
web.statistics.1.content.1.graph.1=load1 | ||
web.statistics.1.content.1.graph.2=load5 | ||
web.statistics.1.content.1.graph.3=load15 | ||
web.statistics.1.content.1.graph.4=cpu_frequency | ||
web.statistics.1.content.1.graph.5=dram_frequency | ||
web.statistics.1.content.1.graph.6=cpu_count | ||
web.statistics.1.content.1.graph.7=soctemp | ||
web.statistics.1.content.1.graph.8=vcorevoltage | ||
web.statistics.1.content.1.graph.9=disktemp | ||
web.statistics.1.content.1.graph.10=cpu_stat | ||
web.statistics.1.content.1.graph.11=coolingstate | ||
web.statistics.1.content.1.ds_graph_options.load1.label=Load 1 min | ||
web.statistics.1.content.1.ds_graph_options.load5.label=Load 5 min | ||
web.statistics.1.content.1.ds_graph_options.load15.label=Load 15 min | ||
web.statistics.1.content.1.ds_graph_options.cpu_frequency.label=CPU Clock speed (GHz) | ||
web.statistics.1.content.1.ds_graph_options.cpu_frequency.yaxis=2 | ||
web.statistics.1.content.1.ds_graph_options.dram_frequency.label=DRAM Clock speed (GHz) | ||
web.statistics.1.content.1.ds_graph_options.dram_frequency.yaxis=2 | ||
web.statistics.1.content.1.ds_graph_options.cpu_count.label=Active CPUs | ||
web.statistics.1.content.1.ds_graph_options.cpu_count.yaxis=2 | ||
web.statistics.1.content.1.ds_graph_options.soctemp.label=SoC temp (°C) | ||
web.statistics.1.content.1.ds_graph_options.disktemp.label=Disk temp (°C) | ||
web.statistics.1.content.1.ds_graph_options.vcorevoltage.label=Vcore (V) | ||
web.statistics.1.content.1.ds_graph_options.vcorevoltage.yaxis=2 | ||
web.statistics.1.content.1.ds_graph_options.coolingstate.label=Cooling State | ||
web.statistics.1.content.1.ds_graph_options.coolingstate.yaxis=2 | ||
web.statistics.1.content.1.ds_graph_options.cpu_stat.label=CPU total (%) | ||
web.statistics.1.content.1.graph_options.y1axis={ position: "left", min: 35, max: 75 } | ||
web.statistics.1.content.1.graph_options.y2axis={ position: "right" } | ||
|
||
web.statistics.1.content.2.name=Detailed CPU Stats | ||
web.statistics.1.content.2.graph.1=cpu_stat | ||
web.statistics.1.content.2.graph.2=system_stat | ||
web.statistics.1.content.2.graph.3=user_stat | ||
web.statistics.1.content.2.graph.4=nice_stat | ||
web.statistics.1.content.2.graph.5=iowait_stat | ||
web.statistics.1.content.2.graph.6=irq_stat | ||
web.statistics.1.content.2.ds_graph_options.cpu_stat.label=CPU total (%) | ||
web.statistics.1.content.2.ds_graph_options.system_stat.label=System (%) | ||
web.statistics.1.content.2.ds_graph_options.user_stat.label=User (%) | ||
web.statistics.1.content.2.ds_graph_options.nice_stat.label=Nice (%) | ||
web.statistics.1.content.2.ds_graph_options.iowait_stat.label=I/O wait (%) | ||
web.statistics.1.content.2.ds_graph_options.irq_stat.label=IRQ/softirq (%) | ||
web.statistics.1.content.2.graph_options.y1axis={ position: "left", min: 0, max: 100 } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
web.page.icon='img/logo.png' | ||
web.page.menutitle='OPi-Monitor <sub>('+data.hostname+')</sub>' | ||
web.page.pagetitle='OPi-Monitor ('+data.hostname+')' | ||
|
||
web.status.1.name=Orange Pi | ||
web.statistics.1.name=Orange Pi | ||
|
||
include=/etc/rpimonitor/template/version.conf | ||
include=/etc/rpimonitor/template/uptime.conf | ||
#include=/etc/rpimonitor/template/Allwinner_H3.conf | ||
include=/etc/rpimonitor/template/Allwinner_H3_Extended.conf | ||
include=/etc/rpimonitor/template/memory.conf | ||
#include=/etc/rpimonitor/template/swap.conf | ||
include=/etc/rpimonitor/template/sdcard.conf | ||
include=/etc/rpimonitor/template/network.conf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.