1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-07 14:43:13 +00:00

fix labels

This commit is contained in:
Michael Grote 2023-03-02 16:59:49 +01:00
parent b2553475aa
commit 35f8104175

View file

@ -91,12 +91,12 @@ if [ "$1" = "config" ]; then
echo "graph_category sensors"
echo "graph_args -l 0"
echo "graph_info The daily Production in kWh of Inverter SN: $SLRM_DEVICE_SN"
echo "daily_inverter.label Inverter daily kWh"
echo "daily_panel1.label Panel1 daily kWh"
echo "daily_panel2.label Panel2 daily kWh"
echo "daily_inverter.label Inverter"
echo "daily_panel1.label Panel1"
echo "daily_panel2.label Panel2"
echo "multigraph temp"
echo "graph_title AC Radiator Temp - SN: $SLRM_DEVICE_SN"
echo "graph_title Temperature- SN: $SLRM_DEVICE_SN"
echo "graph_vlabel °C"
echo "graph_category sensors"
echo "graph_args -l 0"
@ -109,12 +109,12 @@ if [ "$1" = "config" ]; then
echo "graph_category sensors"
echo "graph_args -l 0"
echo "graph_info The current DC Voltage, Current and Power of Inverter SN: $SLRM_DEVICE_SN"
echo "voltage_panel1.label DC Voltage PV1"
echo "current_panel1.label DC Current PV1"
echo "power_panel1.label DC Power PV1"
echo "voltage_panel2.label DC Voltage PV2"
echo "current_panel2.label DC Current PV2"
echo "power_panel2.label DC Power PV2"
echo "voltage_panel1.label PV1 Voltage"
echo "current_panel1.label PV1 Current"
echo "power_panel1.label PV1 Power"
echo "voltage_panel2.label PV2 Voltage"
echo "current_panel2.label PV2 Current"
echo "power_panel2.label PV2 Power"
exit 0
fi