mirror of
https://github.com/tstack/lnav
synced 2024-11-09 19:10:52 +00:00
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://lnav.org/schemas/format-v1.schema.json",
|
|
"logstash_dam": {
|
|
"title": "Logstash Java JSON",
|
|
"url": "https://github.com/logstash/logstash-logback-encoder",
|
|
"description": "Log format for DAM Logstash JSON",
|
|
"json": true,
|
|
"hide-extra": false,
|
|
"file-pattern": "\\.clog.*",
|
|
"line-format": [
|
|
{
|
|
"field": "@timestamp"
|
|
},
|
|
" ",
|
|
{
|
|
"field": "ipaddress"
|
|
},
|
|
" ",
|
|
{
|
|
"field": "message"
|
|
},
|
|
" ",
|
|
{
|
|
"field": "stack_trace",
|
|
"default-value": ""
|
|
}
|
|
],
|
|
"timestamp-field": "@timestamp",
|
|
"body-field": "message",
|
|
"level-field": "level",
|
|
"level": {
|
|
"trace": "TRACE",
|
|
"debug": "DEBUG",
|
|
"info": "INFO",
|
|
"error": "ERROR",
|
|
"warning": "WARN"
|
|
},
|
|
"value": {
|
|
"logger_name": {
|
|
"kind": "string",
|
|
"identifier": true
|
|
},
|
|
"ipaddress": {
|
|
"kind": "string",
|
|
"identifier": true
|
|
},
|
|
"level_value": {
|
|
"hidden": true
|
|
},
|
|
"stack_trace": {
|
|
"kind": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|