-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add plex-logs.json for Plex Media Server
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" | ||
} | ||
] | ||
} | ||
} |