-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathceph_mon_log.json
37 lines (37 loc) · 1.14 KB
/
ceph_mon_log.json
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
{
"ceph_mon_log" : {
"title" : "Ceph Monitor Log",
"description" : "Log format for ceph storage monitors",
"url" : "http://ceph.com",
"regex" : {
"basic" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{6}) (?<threadid>[a-f\\d]+)\\s+(?<importantlookingnumber>\\d+) (?<reportingprocess>\\S+)(:)? (?<body>.*)$"
}
},
"level-field" : "body",
"level" : {
"info" : "INF",
"error" : "ERR",
"warning" : "WRN"
},
"value" : {
"threadid" : {
"kind" : "string",
"identifier" : true
},
"importantlookingnumber" : {
"kind" : "integer",
"identifier" : true
},
"reportingprocess" : {
"kind" : "string",
"identifier" : true
}
},
"sample" : [
{
"line" : "2017-11-20 11:25:47.722041 7f7377ca3700 0 log_channel(cluster) log [INF] : Cluster is now healthy"
}
]
}
}