2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

rename dses to easier check correct graphing

This commit is contained in:
Lasse Karstensen 2012-01-21 20:42:53 +01:00
parent 851979ebad
commit db72714eb4

View File

@ -112,26 +112,26 @@ modules["always_critical"] = always_critical()
class graph_area(MuninPlugin): class graph_area(MuninPlugin):
"A plugin that uses STACK and AREA. From proc_pri. Use: testing the grapher" "A plugin that uses STACK and AREA. From proc_pri. Use: testing the grapher"
def fetch(self, conf): def fetch(self, conf):
return """high.value 3 return """first.value 3
low.value 2 second.value 2
locked.value 1""" third.value 1"""
def config(self, conf): def config(self, conf):
return """graph_title AREA and STACK return """graph_title AREA and STACK
graph_order low high locked graph_order first second third
graph_category graphtest graph_category graphtest
graph_info This graph shows nuber of processes at each priority graph_info This graph shows nuber of processes at each priority
graph_args --base 1000 -l 0 graph_args --base 1000 -l 0
graph_vlabel Number of processes graph_vlabel Number of processes
high.label high priority first.label first
high.draw STACK first.draw STACK
high.info The number of high-priority processes (tasks) first.info The number of first-priority processes (tasks)
low.label low priority second.label second
low.draw AREA second.draw AREA
low.info The number of low-priority processes (tasks) second.info The number of second-priority processes (tasks)
locked.label locked in memory third.label third
locked.draw STACK third.draw STACK
locked.info The number of processes that have pages locked into memory (for real-time and custom IO) third.info The number of processes that have pages third into memory (for real-time and custom IO)
""" """
modules["graph_area"] = graph_area() modules["graph_area"] = graph_area()