]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
munin: oops, fix that trailing-newline fix, the previous one mangled the config
authorBrian Warner <warner@allmydata.com>
Thu, 18 Oct 2007 19:49:22 +0000 (12:49 -0700)
committerBrian Warner <warner@allmydata.com>
Thu, 18 Oct 2007 19:49:22 +0000 (12:49 -0700)
misc/munin/tahoe-dirnodes.py
misc/munin/tahoe-files.py
misc/munin/tahoe-sharesperfile.py
misc/munin/tahoe-storagespace.py

index dc35b57ae4319a0f2be7241442fcb8962bc40042..22cfa79d24f3612436905ee7ec7cc156b313c512 100644 (file)
@@ -22,12 +22,13 @@ 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:
     if sys.argv[1] == "config":
-        print configinfo
+        print configinfo.rstrip()
         sys.exit(0)
 
 dirnodes = len(os.listdir(os.path.join(nodedir, "vdrive")))
index f41e1b32d7f6c6fc72a3185c7d50b597bf398f2f..c6026de19f409499d56179fadae608ebefbdd9f5 100644 (file)
@@ -31,7 +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)
@@ -40,7 +41,7 @@ for nodename, basedir in nodedirs:
 
 if len(sys.argv) > 1:
     if sys.argv[1] == "config":
-        print configinfo
+        print configinfo.rstrip()
         sys.exit(0)
 
 for nodename, basedir in nodedirs:
index 4f0593c50b23031f6ce2cf7b26d29e2e53b94495..185e5cc7e5bc19a27dc11f3f468fd6f7b9865aa9 100644 (file)
@@ -31,7 +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)
@@ -40,7 +41,7 @@ for nodename, basedir in nodedirs:
 
 if len(sys.argv) > 1:
     if sys.argv[1] == "config":
-        print configinfo
+        print configinfo.rstrip()
         sys.exit(0)
 
 for nodename, basedir in nodedirs:
index 7983af5e1308d7eb4b56d88e2a648588d9165aad..ad4375b97f676e6c007d87fd4a012e6753a43421 100644 (file)
@@ -34,7 +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)
@@ -43,7 +44,7 @@ for nodename, basedir in nodedirs:
 
 if len(sys.argv) > 1:
     if sys.argv[1] == "config":
-        print configinfo
+        print configinfo.rstrip()
         sys.exit(0)
 
 for nodename, basedir in nodedirs: