Dot_Files/.config/lnav/formats/default/autodeploy_log.json.sample
2022-01-08 15:24:29 -06:00

39 lines
1.3 KiB
Plaintext

{
"$schema": "https://lnav.org/schemas/format-v1.schema.json",
"autodeploy_log": {
"title": "VMware vSphere Auto Deploy log format",
"description": "The log format for the VMware Auto Deploy service",
"url": "http://kb.vmware.com/kb/2000988",
"regex": {
"std": {
"pattern": "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{3})?) \\[(?<pid>\\d+)\\](?<level>\\w+):(?<module>[\\w-]+):(?<body>.*$)"
}
},
"level-field": "level",
"timestamp-field": "timestamp",
"level": {
"error": "ERROR",
"debug": "DEBUG",
"info": "INFO",
"warning": "WARNING"
},
"value": {
"pid": {
"kind": "integer",
"identifier": true,
"foreign-key": true,
"description": "The ID of the process that generated the message"
},
"module": {
"kind": "string",
"identifier": true,
"description": "The name of the module that generated the message"
}
},
"sample": [
{
"line": "2015-04-24T21:09:29.296 [25376]INFO:somemodule:Something very INFOrmative."
}
]
}
}