mirror of
https://github.com/tstack/lnav
synced 2024-11-17 15:29:40 +00:00
24 lines
605 B
JSON
24 lines
605 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+-\\d+-\\d+ \\d+:\\d+:\\d+\\.\\d+) (?<body>.*)$"
|
|
}
|
|
},
|
|
"timestamp-format" : [
|
|
"%i",
|
|
"%Y-%m-%d %H:%M:%S.%f"
|
|
],
|
|
"sample": [
|
|
{
|
|
"line": "1428634687123 Hello, World!"
|
|
}
|
|
]
|
|
}
|
|
}
|