mirror of
https://github.com/tstack/lnav
synced 2024-11-09 19:10:52 +00:00
44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://lnav.org/schemas/format-v1.schema.json",
|
|
"invalid_props_log": {
|
|
"title": "invalid properties",
|
|
"regex": {
|
|
"std": {
|
|
"pattern": "^(?<timestamp>\\d+): (?<pid>\\w+) (?<body>.*)$"
|
|
}
|
|
},
|
|
"timestamp-field": "ts",
|
|
"sample": [
|
|
{
|
|
"line": "1428634687123: 1234 abc"
|
|
}
|
|
],
|
|
"value": {
|
|
"non-existent": {
|
|
"kind": "string"
|
|
}
|
|
},
|
|
"highlights": {
|
|
"hl1": {
|
|
"color": "not a color",
|
|
"background-color": "also not a color"
|
|
}
|
|
},
|
|
"tags": {
|
|
"badtag": {
|
|
"paths": []
|
|
},
|
|
"badtag2": {
|
|
"pattern": ""
|
|
},
|
|
"badtag3": {
|
|
"pattern": "invalid(abc"
|
|
}
|
|
},
|
|
"search-table": {
|
|
"bad_table_regex": {
|
|
"pattern": "abc(def"
|
|
}
|
|
}
|
|
}
|
|
} |