-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial creation of the vmware update manager log file
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} | ||
} |