diff options
Diffstat (limited to '')
-rw-r--r-- | test/bad-config/formats/invalid-sample/format.json | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/test/bad-config/formats/invalid-sample/format.json b/test/bad-config/formats/invalid-sample/format.json new file mode 100644 index 0000000..c3509bb --- /dev/null +++ b/test/bad-config/formats/invalid-sample/format.json @@ -0,0 +1,45 @@ +{ + "$schema": "https://lnav.org/schemas/format-v1.schema.json", + "bad_sample_log": { + "title": "invalid sample test", + "regex": { + "std": { + "pattern": "^(?<timestamp>\\d+): (?<pid>\\w+) (?<body>.*)$" + }, + "semi": { + "pattern": "^(?<timestamp>\\d+); (?<body>\\w+)$" + }, + "bad-time": { + "pattern": "^(?<timestamp>\\w+): (?<body>\\w+)$" + }, + "with-level": { + "pattern": "^(?<timestamp>\\d+)\\| (?<level>\\w+) (?<body>\\w+)$" + } + }, + "timestamp-format": [ + "%i" + ], + "value": { + "pid": { + "kind": "foo" + } + }, + "level-field": "level", + "sample": [ + { + "line": "abc: foo" + }, + { + "line": "1428634687123| debug hello", + "level": "info" + }, + { + "line": "1428634687123| debug hello\ngoodbye", + "level": "debug" + }, + { + "line": "1428634687123; foo bar" + } + ] + } +} |