mirror of
https://github.com/tstack/lnav
synced 2024-11-08 01:10:29 +00:00
822eaf5a1a
Related to #1146
85 lines
2.1 KiB
JSON
85 lines
2.1 KiB
JSON
{
|
|
"$schema": "https://lnav.org/schemas/format-v1.schema.json",
|
|
"json_log3": {
|
|
"title": "Test JSON Log Format",
|
|
"description": "Test JSON Log Format",
|
|
"file-pattern": "logfile_.*json3\\.json",
|
|
"json": true,
|
|
"hide-extra": true,
|
|
"convert-to-local-time": true,
|
|
"line-format": [
|
|
{
|
|
"field": "__timestamp__"
|
|
},
|
|
" ",
|
|
{
|
|
"field": "client_ip"
|
|
},
|
|
" ",
|
|
{
|
|
"field": "request/method"
|
|
},
|
|
" ",
|
|
{
|
|
"field": "response/status"
|
|
},
|
|
" ",
|
|
{
|
|
"field": "response/size",
|
|
"auto-width": true
|
|
},
|
|
" ",
|
|
{
|
|
"field": "request/uri"
|
|
}
|
|
],
|
|
"value": {
|
|
"started_at": {
|
|
"kind": "integer",
|
|
"identifier": true
|
|
},
|
|
"client_ip": {
|
|
"kind": "string",
|
|
"identifier": true
|
|
},
|
|
"request/method": {
|
|
"kind": "string",
|
|
"identifier": true
|
|
},
|
|
"request/uri": {
|
|
"kind": "string",
|
|
"identifier": true
|
|
},
|
|
"request/size": {
|
|
"kind": "integer",
|
|
"identifier": false,
|
|
"hidden": true
|
|
},
|
|
"response/status": {
|
|
"kind": "integer",
|
|
"foreign-key": true
|
|
},
|
|
"response/size": {
|
|
"kind": "integer"
|
|
},
|
|
"details1": {
|
|
"hidden": true
|
|
},
|
|
"details2": {
|
|
"hidden": true
|
|
},
|
|
"details3": {
|
|
"hidden": true
|
|
}
|
|
},
|
|
"timestamp-field": "started_at",
|
|
"timestamp-divisor": 1000,
|
|
"level-field": "response/status",
|
|
"level": {
|
|
"info": "2\\d+",
|
|
"warning": "4\\d+",
|
|
"critical": "5\\d+"
|
|
}
|
|
}
|
|
}
|