mirror of
https://github.com/tstack/lnav
synced 2024-11-03 23:15:38 +00:00
27 lines
711 B
JSON
27 lines
711 B
JSON
{
|
|
"$schema": "https://lnav.org/schemas/format-v1.schema.json",
|
|
"epoch_log": {
|
|
"title": "epoch timestamp test",
|
|
"regex": {
|
|
"std": {
|
|
"pattern": "^(?<timestamp>\\d+) (?<body>.*)$"
|
|
},
|
|
"non_epoch": {
|
|
"pattern": "^(?<timestamp>\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d+) (?<body>.*)$"
|
|
}
|
|
},
|
|
"timestamp-format": [
|
|
"%i",
|
|
"%Y-%m-%d %H:%M:%S.%f"
|
|
],
|
|
"sample": [
|
|
{
|
|
"line": "1428634687123 Hello, World!"
|
|
},
|
|
{
|
|
"line": "2022-09-10 19:57:36.123456 Hello, World"
|
|
}
|
|
]
|
|
}
|
|
}
|