mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
apache_status: set all minimals to 0 to discard negative values.
This commit is contained in:
parent
19febd2823
commit
dbb14174e1
1 changed files with 5 additions and 0 deletions
|
@ -179,6 +179,7 @@ END
|
|||
accesses$port.label port $port
|
||||
accesses$port.type DERIVE
|
||||
accesses$port.info The number of accesses (pages and other items served) globally on the Apache server
|
||||
accesses$port.min 0
|
||||
END
|
||||
print_thresholds("accesses$port");
|
||||
}
|
||||
|
@ -203,10 +204,13 @@ END
|
|||
print <<END;
|
||||
busy$port.label busy servers on port $port
|
||||
busy$port.draw LINE2
|
||||
busy$port.min 0
|
||||
idle$port.label idle servers on port $port
|
||||
idle$port.draw STACK
|
||||
idle$port.min 0
|
||||
free$port.label free slots on port $port
|
||||
free$port.draw STACK
|
||||
free$port.min 0
|
||||
END
|
||||
|
||||
print_thresholds("busy$port");
|
||||
|
@ -228,6 +232,7 @@ END
|
|||
volume$port.cdef volume$port,1024,*
|
||||
volume$port.label port $port
|
||||
volume$port.type DERIVE
|
||||
volume$port.min 0
|
||||
END
|
||||
|
||||
print_thresholds("volume$port");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue