Skip to content

Commit

Permalink
created vum-log4cpp.json
Browse files Browse the repository at this point in the history
Initial creation of the vmware update manager log file
  • Loading branch information
hagfelsh authored Nov 23, 2018
1 parent dc1a8aa commit ae9c7dd
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions vum-log4cpp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{

"vum_log4cpp" : {
"title": "Vmware Update Manager log4cpp",
"description": "VMware Update Manager main log file",
"url": "",
"regex": {
"std": {
"pattern" : "\\[(?<timestamp>\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}:\\d{3}) '(?:(?<processname>\\w+)|(?<parentproc>\\w+)\\.(?<procaction>\\w+\\{\\d+}))' \\d+ (?<level>\\w+)\\]\\s+\\[(?<procname2>\\w+), (?<meaningfulNumber>\\d+)\\]\\s+(?<body>.*)$"
}
},
"level-field": "level",
"value": {
"processname" : {
"kind" : "string",
"identifier" : true
},
"parentproc" : {
"kind" : "string",
"identifier" : true
},
"procaction" : {
"kind" : "string",
"identifier" : true
},
"procname" : {
"kind" : "string",
"identifier" : true
},
"procname2" : {
"kind" : "string",
"identifier" : true
},
"meaningfulNumber" : {
"kind" : "integer",
"identifier" : false
}
},
"sample": [
{
"line": "[2018-11-22 21:58:28:670 'InternalScheduledTasksMgr' 140133146265344 INFO] [internalScheduledTasksMgr, 354] Snapshot aging periodic task started, Total number of snapshots to be deleted in this run: 0"
}
]
}
}

0 comments on commit ae9c7dd

Please sign in to comment.