summaryrefslogtreecommitdiffstats
path: root/src/formats/vmw_py_log.json
blob: 25bb3e8196e6da84dedd2ba620930e61cb8f56a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
    "$schema": "https://lnav.org/schemas/format-v1.schema.json",
    "vmw_py_log": {
        "title": "VMware vSphere log format",
        "description": "The log format for some VMware vSphere services",
        "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})?(?: (?:AM|PM) UTC)?) \\[(?<pid>\\d+)\\](?<level>ERROR|WARNING|INFO|DEBUG):(?<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."
            },
            {
                "line": "2022-06-01T13:23:25.515 [2376]DEBUG:vmware.vherd.base.detwist:method = com.vmware.appliance.version1.networking.interfaces.list, args = ()"
            }
        ]
    }
}