1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Fix titles of similar plugins so they are better grouped in category views

Signed-off-by: Olivier Mehani <shtrom@ssji.net>
This commit is contained in:
Olivier Mehani 2019-10-09 15:54:29 +11:00 committed by Lars Kruse
parent 3716783a4b
commit e926acaf5f
6 changed files with 21 additions and 14 deletions

View file

@ -364,23 +364,23 @@ graph_config() {
echo 'redirect_udp.label UDP redirections'
;;
*)
echo 'graph_title Freebox connection'
echo 'graph_title Uplink traffic'
echo 'graph_category network'
echo 'graph_vlabel bits per second in (+) / out (-)'
echo 'graph_order main_atm_down main_atm main_wan_down main_wan'
# XXX: parameters duplicated from traffic
# XXX: summary data similar to (more detailed) traffic
echo 'main_wan_down.label WAN down'
echo 'main_wan_down.graph no'
echo 'main_wan_down.cdef main_wan_down,8000,*'
echo 'main_wan.label WAN'
echo 'main_wan.label bps'
echo 'main_wan.negative main_wan_down'
echo 'main_wan.cdef main_wan,8000,*'
echo 'main_atm_down.label ATM down'
echo 'main_atm_down.graph no'
echo 'main_atm_down.cdef main_atm_down,1000,*'
echo 'main_atm.label ATM sync'
echo 'main_atm.label bps (max)'
echo 'main_atm.negative main_atm_down'
echo 'main_atm.cdef main_atm,1000,*'
;;