mirror of
https://github.com/tstack/lnav
synced 2024-11-17 15:29:40 +00:00
a27198e8ca
... and a pile of other changes
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"$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"
|
|
}
|
|
]
|
|
}
|
|
}
|