rename parsers, better journald integration
[logparse.git] / logparse / parsers / mem.py
index 8ee3239b719212a13fd20cf95355ef1cefb76f31..2a831d2a52489b0d016b83fcc6469f8d645f3582 100644 (file)
@@ -1,8 +1,6 @@
-#
-#   mem.py
-#
-#   Get instantaneous memory statistics (installed, total, free, available)
-#
+"""
+Get instantaneous memory statistics (installed, total, free, available)
+"""
 
 import re
 
@@ -15,7 +13,8 @@ class Mem(Parser):
     def __init__(self):
         super().__init__()
         self.name = "mem"
-        self.info = "Get instantaneous memory statistics (installed, total, free, available)"
+        self.info = "Get instantaneous memory statistics "
+                "(installed, total, free, available)"
 
     def parse_log(self):
 
@@ -35,8 +34,10 @@ class Mem(Parser):
             matches = line_regex.findall(line)
 
             if len(matches) > 0:
-                logger.debug("Detected {0} memory of {1} kB".format(matches[0][0].lower(), matches[0][1]))
-                table.add_row(Row([Column(matches[0][0]), Column(parsesize(float(matches[0][1])*1000))]))
+                logger.debug("Detected {0} memory of {1} kB".
+                        format(matches[0][0].lower(), matches[0][1]))
+                table.add_row(Row([Column(matches[0][0]), 
+                    Column(parsesize(float(matches[0][1])*1000))]))
 
         table.align_column(0, "right")
         section.append_table(table)