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

Revert "rename dses to easier check correct graphing"

Really, not a good idea.

This reverts commit db72714eb4.
This commit is contained in:
Lasse Karstensen 2012-01-21 20:51:40 +01:00
parent db72714eb4
commit 1c70bc928e

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 """first.value 3 return """high.value 3
second.value 2 low.value 2
third.value 1""" locked.value 1"""
def config(self, conf): def config(self, conf):
return """graph_title AREA and STACK return """graph_title AREA and STACK
graph_order first second third graph_order low high locked
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
first.label first high.label high priority
first.draw STACK high.draw STACK
first.info The number of first-priority processes (tasks) high.info The number of high-priority processes (tasks)
second.label second low.label low priority
second.draw AREA low.draw AREA
second.info The number of second-priority processes (tasks) low.info The number of low-priority processes (tasks)
third.label third locked.label locked in memory
third.draw STACK locked.draw STACK
third.info The number of processes that have pages third into memory (for real-time and custom IO) locked.info The number of processes that have pages locked into memory (for real-time and custom IO)
""" """
modules["graph_area"] = graph_area() modules["graph_area"] = graph_area()