mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-22 14:16:00 +00:00
Plugin lxc: fix printing of "${graph_period}"
This specific text token ("${graph_period}") is interpreted by munin and should not be interpreted by the shell. Thus it needs to be escaped.
This commit is contained in:
parent
e91f7ecba7
commit
0d593014b4
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ EOF
|
||||||
multigraph lxc_net
|
multigraph lxc_net
|
||||||
graph_title Network traffic
|
graph_title Network traffic
|
||||||
graph_args --base 1000
|
graph_args --base 1000
|
||||||
graph_vlabel bits in (-) / out (+) per ${graph_period}
|
graph_vlabel bits in (-) / out (+) per \${graph_period}
|
||||||
graph_category lxc
|
graph_category lxc
|
||||||
graph_info This graph shows the traffic of active LXC containers.
|
graph_info This graph shows the traffic of active LXC containers.
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue