plugins: don't draw LINE2 where it's not needed

This commit is contained in:
Kim B. Heino 2020-10-18 20:27:05 +03:00
parent b2ca6a4b8a
commit c0625af54c
2 changed files with 0 additions and 3 deletions

View File

@ -3,9 +3,7 @@ config_ntpdate() {
echo "graph_args --base 1000 --vertical-label msec" echo "graph_args --base 1000 --vertical-label msec"
echo "graph_category time" echo "graph_category time"
echo "offset.label Offset" echo "offset.label Offset"
echo "offset.draw LINE2"
echo "delay.label Delay" echo "delay.label Delay"
echo "delay.draw LINE2"
} }
fetch_ntpdate() { fetch_ntpdate() {

View File

@ -5,7 +5,6 @@ config_processes() {
echo "graph_category processes" echo "graph_category processes"
echo "graph_info This graph shows the number of processes in the system." echo "graph_info This graph shows the number of processes in the system."
echo "processes.label processes" echo "processes.label processes"
echo "processes.draw LINE2"
echo "processes.info The current number of processes." echo "processes.info The current number of processes."
} }
fetch_processes() { fetch_processes() {