update parsers to new output model
[logparse.git] / logparse / config.py
index 13d6d07099759e82c168304acb92aca437096404..3dc2e46a3eaaa1a7f13971cb2277ee01a9c23c6b 100644 (file)
@@ -38,9 +38,13 @@ class Configuration(dict):
             raise ValueError("Unknown option %s" % x)
 
 defaults = Configuration({
-    'output': '/var/www/logparse/summary.html',
+    'output': '',
     'header':  '/etc/logparse/header.html',
     'css': '/etc/logparse/main.css',
+    'linewidth': 80,
+    'embed-styles': False,
+    'plain': False,
+    'overwrite': False,
     'title': logparse.__name__,
     'maxlist': 10,
     'maxcmd': 3,
@@ -78,6 +82,8 @@ defaults = Configuration({
         'force-write': 'n',
     },
     'hostname-path': '/etc/hostname',
+    'parsers': {},
+    'ignore-parsers': {},
     'logs': {
         'auth': '/var/log/auth.log',
         'cron': '/var/log/cron.log',