diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:44:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:44:55 +0000 |
commit | 5068d34c08f951a7ea6257d305a1627b09a95817 (patch) | |
tree | 08213e2be853396a3b07ce15dbe222644dcd9a89 /src/formats/error_log.json | |
parent | Initial commit. (diff) | |
download | lnav-5068d34c08f951a7ea6257d305a1627b09a95817.tar.xz lnav-5068d34c08f951a7ea6257d305a1627b09a95817.zip |
Adding upstream version 0.11.1.upstream/0.11.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/formats/error_log.json')
-rw-r--r-- | src/formats/error_log.json | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/formats/error_log.json b/src/formats/error_log.json new file mode 100644 index 0000000..d3a94ad --- /dev/null +++ b/src/formats/error_log.json @@ -0,0 +1,67 @@ +{ + "$schema": "https://lnav.org/schemas/format-v1.schema.json", + "error_log": { + "title": "Common Error Log", + "description": "The default web error log format for servers like Apache.", + "regex": { + "cups": { + "pattern": "^(?<level>\\w) \\[(?<timestamp>[^\\]]+)\\] (?<body>.*)" + }, + "apache": { + "pattern": "^\\[(?<timestamp>[^\\]]+)\\] \\[(?:(?<module>[^:]+):)?(?<level>\\w+)\\](?: \\[pid (?<pid>\\d+)(:tid (?<tid>\\d+))?\\])?(?: \\[client (?<c_ip>[\\w\\.:\\-]+):(?<c_port>\\d+)\\])? (?<body>.*)" + } + }, + "level-field": "level", + "value": { + "module": { + "kind": "string", + "identifier": true + }, + "pid": { + "kind": "integer", + "identifier": true + }, + "tid": { + "kind": "integer", + "identifier": true, + "description": "The thread id" + }, + "c_ip": { + "kind": "string", + "collate": "ipaddress", + "identifier": true, + "description": "The client IP address" + }, + "c_port": { + "kind": "integer", + "identifier": true + } + }, + "sample": [ + { + "line": "E [08/Jun/2013:11:28:58 -0700] Unknown directive BrowseOrder on line 22 of /private/etc/cups/cupsd.conf.", + "level": "error" + }, + { + "line": "[Tue Apr 04 06:18:29.712806 2017] [mpm_prefork:notice] [pid 17725] AH00163: Apache/2.4.23 (Unix) configured -- resuming normal operations", + "level": "notice" + }, + { + "line": "[Tue Apr 04 06:28:08.605341 2017] [core:error] [pid 17962] [client 127.0.0.1:60444] AH00135: Invalid method in request FOO /", + "level": "error" + }, + { + "line": "[Thu Jan 17 02:42:49 2013] [notice] Digest: generating secret for digest authentication ...", + "level": "notice" + }, + { + "line": "[Thu May 12 08:28:57.652118 2011] [core:error] [pid 8777:tid 4326490112] [client ::1:58619] File does not exist: /usr/local/apache2/htdocs/favicon.ico", + "level": "error" + }, + { + "line": "[Thu Jan 02 22:23:07.368853 2020] [http:info] [pid 4784:tid 139701043291904] [client 66.220.149.10:45948] AH01593: chunked Transfer-Encoding forbidden: /", + "level": "info" + } + ] + } +}
\ No newline at end of file |