-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplex-logs.json
37 lines (37 loc) · 1.35 KB
/
plex-logs.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
{
"plex_media_server" : {
"title" : "Plex Media Server Log",
"description" : "Server log messages generated by plex.",
"url" : "https://support.plex.tv/articles/200250417-plex-media-server-log-files/",
"multiline" : false,
"regex" : {
"basic" : {
"pattern" : "^(?<timestamp>\\w{3} \\d{2}, \\d{4} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}) \\[0x[a-f0-9]{8}\\] (?<level>\\w+) - (?<body>.*)$"
}
},
"timestamp-format" : [
"%b %d, %Y %H:%M:%S.%L"
],
"level-field": "level",
"level" : {
"error" : "ERROR",
"warning" : "WARN",
"info" : "INFO",
"debug" : "DEBUG"
},
"sample" : [
{
"line" : "Sep 02, 2020 01:22:04.806 [0xb3de3440] INFO - Plex Media Server v1.20.1.3252-a78fef9a9 - Ubuntu PC armv7l - build: linux-armv7hf_neon debian - GMT -04:00",
"level" : "info"
},
{
"line" : "Sep 02, 2020 01:22:04.806 [0xb3de3440] INFO - Plex Media Server v1.20.1.3252-a78fef9a9 - Ubuntu PC armv7l - build: linux-armv7hf_neon debian - GMT -04:00",
"level" : "info"
},
{
"line" : "Sep 02, 2020 01:22:18.502 [0xae5fe440] ERROR - Error issuing curl_easy_perform(handle): 60",
"level" : "error"
}
]
}
}