-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathavamar.json
23 lines (23 loc) · 936 Bytes
/
avamar.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"avamar_log" : {
"title": "Avamar appliance logs",
"description": "Log format found in avamar backup appliance. AKA VMware Data Protection.",
"url": "",
"regex": {
"std": {
"pattern": "^(?<timestamp>\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2},\\d{3}) (?<level>\\w+)\\s+\\[(?<subsystem>\\S+)\\]-\\w+\\.(?<function>\\S+):( (?<reporter>.*):)? (?<body>.*)$"
}
},
"level-field": "level",
"value": {
"subsystem" : { "kind": "string", "identifier": true },
"function" : { "kind": "string", "identifier": true },
"reporter" : { "kind": "string", "identifier": true }
},
"sample": [
{
"line": "2018-09-03 23:16:08,675 INFO [VmwareFlrCLI-update]-services.BaseCLI$4: VmwareFlrCLI-update: State update complete. New state: running"
}
]
}
}