-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcatalina.json
31 lines (31 loc) · 1.12 KB
/
catalina.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
{
"catalina_log" : {
"title" : "catalina log format",
"description" : "Log format used by catalina",
"url" : "http://catalina",
"regex" : {
"main" : {
"pattern" : "^(?<timestamp>\\d{4}[/-]\\d{2}[/-]\\d{2} \\d{2}:\\d{2}:\\d{2}(?:\\,\\d+)?) \\[(?<process>[\\w-]+)\\] (?<alert_level>\\w+)\\s+(?<class>[\\w._]+)?(?:- )?(?<body>.*)$"
}
},
"value" : {
"class" : { "kind" : "string", "identifier" : true },
"event" : { "kind" : "string", "identifier" : true },
"exception" : { "kind" : "string", "identifier" : true },
"body" : { "kind" : "string" }
},
"timestamp-format" : [
"%b %d, %Y %I:%M:%S %p",
"%Y-%m-%d %H:%M:%S",
"%Y/%m/%d %H:%M:%S"
],
"sample" : [
{
"line" : "2015-09-21 13:30:26,906 [TP-Processor37] WARN com.redhat.rhn.common.hibernate.EmptyVarcharInterceptor - Object com.redhat.rhn.domain.user.legacy.PersonalInfo is setting empty string title"
},
{
"line" : "2015-09-21 15:03:08,614 [TP-Processor91] WARN org.hibernate.engine.loading.CollectionLoadContext - On CollectionLoadContext#cleanup, localLoadingCollectionKeys contained [1] entries"
}
]
}
}