-
Notifications
You must be signed in to change notification settings - Fork 0
/
spring-boot-lnav.json
51 lines (51 loc) · 1.57 KB
/
spring-boot-lnav.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"spring_boot": {
"title": "Spring Boot log format",
"description": "Log format used by Spring Boot",
"url": "",
"regex": {
"tasko": {
"pattern": "^(?<timestamp>\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}.\\d{3})\\s+(?<alert_level>\\w+)\\s+(?<pid>\\d+)\\s+---\\s+\\[\\s*(?<thread>.*)\\]\\s+(?<class>.*)\\s+:\\s+(?<body>.*)$"
}
},
"level-field": "alert_level",
"level": {
"error": "ERROR",
"warning": "WARN",
"debug": "DEBUG",
"info": "INFO"
},
"value": {
"thread": {
"kind": "string",
"identifier": true
},
"pid": {
"kind": "string",
"identifier": true
},
"alert_level": {
"kind": "string",
"identifier": true
},
"class": {
"kind": "string",
"identifier": true
},
"body": {
"kind": "string"
}
},
"sample": [
{
"line": "2018-04-17 23:13:44.495 DEBUG 27430 --- [XNIO-2 task-16] com.binbit.core.service.CoreService : ApiCoreGeneric(mccMnc=21901, serviceId=null, msisdn=385996823753, active=true, nextBillDate=null, credits=null)"
},
{
"line": "2018-04-17 23:13:44.495 DEBUG 27430 --- [XNIO-2 task-16] c.b.apicore.service.ApiCoreServiceImpl : >> info() ApiCoreGeneric(mccMnc=21901, serviceId=null, msisdn=385996823753, active=true, nextBillDate=null, credits=null)"
},
{
"line": "2018-04-17 23:13:44.597 WARN 27430 --- [XNIO-2 task-16] c.b.m.h.t.s.TMobileSubscriptionService : unknown msisdn '385996823753'"
}
]
}
}