summaryrefslogtreecommitdiffstats
path: root/test/bad-config/formats/invalid-sample/format.json
blob: c3509bbe6bdfa6a4131eeb35e9729bab0802c61f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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"
            }
        ]
    }
}