1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-02 14:18:21 +00:00

deye: quoting

This commit is contained in:
Michael Grote 2023-03-02 23:12:17 +01:00
parent b2ecfe50f8
commit b81467effd

View file

@ -81,40 +81,40 @@ fi
if [ "$1" = "config" ]; then if [ "$1" = "config" ]; then
# setze optionen # setze optionen
echo multigraph current_power echo "multigraph current_power"
echo graph_title Deye current Power echo "graph_title Deye current Power"
echo 'graph_vlabel watt' echo "graph_vlabel watt"
echo 'graph_category sensors' echo "graph_category sensors"
echo 'graph_args -l 0' echo "graph_args -l 0"
echo "graph_info Current generated power in Watt." echo "graph_info Current generated power in Watt."
echo current_power.label watt echo "current_power.label watt"
echo multigraph daily_yield echo "multigraph daily_yield"
echo graph_title Deye daily Yield echo "graph_title Deye daily Yield"
echo 'graph_vlabel kWh' echo "graph_vlabel kWh"
echo 'graph_category sensors' echo "graph_category sensors"
echo 'graph_args -l 0' echo "graph_args -l 0"
echo "graph_info Power generated today." echo "graph_info Power generated today."
echo daily_yield.label kWh echo "daily_yield.label kWh"
echo daily_yield.draw AREA echo "daily_yield.draw AREA"
echo multigraph total_yield echo "multigraph total_yield"
echo graph_title Deye Total Yield echo "graph_title Deye Total Yield"
echo 'graph_vlabel kWh' echo "graph_vlabel kWh"
echo 'graph_category sensors' echo "graph_category sensors"
echo 'graph_args -l 0' echo "graph_args -l 0"
echo "graph_info Total generated power." echo "graph_info Total generated power."
echo total_yield.label kWh echo "total_yield.label kWh"
echo total_yield.draw AREA echo "total_yield.draw AREA"
echo multigraph reachable echo "multigraph reachable"
echo graph_title Deye inverter reachable echo "graph_title Deye inverter reachable"
echo 'graph_vlabel on/off' echo "graph_vlabel on/off"
echo 'graph_category sensors' echo "graph_category sensors"
echo 'graph_args -l 0' echo "graph_args -l 0"
echo "graph_info Is the Inverter is reachable? 1 is On, 0 is Off" echo "graph_info Is the Inverter is reachable? 1 is On, 0 is Off"
echo reachable.label on/off echo "reachable.label on/off"
echo reachable.draw AREA echo "reachable.draw AREA"
exit 0 exit 0
fi fi