munin: remove extra blank line from config output

This commit is contained in:
Brian Warner 2007-10-18 12:39:26 -07:00
parent 33a02e19f1
commit b339c76560
4 changed files with 7 additions and 8 deletions

View File

@ -22,8 +22,7 @@ graph_vlabel dirnodes
graph_category tahoe
graph_info This graph shows the number of directory nodes hosted by this vdrive server
dirnodes.label dirnodes
dirnodes.draw LINE2
"""
dirnodes.draw LINE2"""
if len(sys.argv) > 1:

View File

@ -31,8 +31,8 @@ configinfo = \
"""graph_title Allmydata Tahoe Filecount
graph_vlabel files
graph_category tahoe
graph_info This graph shows the number of files hosted by this node's StorageServer
"""
graph_info This graph shows the number of files hosted by this node's StorageServer"""
for nodename, basedir in nodedirs:
configinfo += "%s.label %s\n" % (nodename, nodename)
configinfo += "%s.draw LINE2\n" % (nodename,)

View File

@ -31,8 +31,8 @@ configinfo = \
"""graph_title Allmydata Tahoe Shares Per File
graph_vlabel shares per file
graph_category tahoe
graph_info This graph shows the number of shares present for each file hosted by this node's StorageServer
"""
graph_info This graph shows the number of shares present for each file hosted by this node's StorageServer"""
for nodename, basedir in nodedirs:
configinfo += "%s.label %s\n" % (nodename, nodename)
configinfo += "%s.draw LINE2\n" % (nodename,)

View File

@ -34,8 +34,8 @@ configinfo = \
"""graph_title Allmydata Tahoe Shareholder Space
graph_vlabel bytes
graph_category tahoe
graph_info This graph shows the space consumed by this node's StorageServer
"""
graph_info This graph shows the space consumed by this node's StorageServer"""
for nodename, basedir in nodedirs:
configinfo += "%s.label %s\n" % (nodename, nodename)
configinfo += "%s.draw LINE2\n" % (nodename,)