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/openamdb_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 '')
-rw-r--r-- | src/formats/openamdb_log.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/formats/openamdb_log.json b/src/formats/openamdb_log.json new file mode 100644 index 0000000..1d5ea37 --- /dev/null +++ b/src/formats/openamdb_log.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://lnav.org/schemas/format-v1.schema.json", + "openamdb_log": { + "title": "OpenAM Debug Log", + "description": "Debug logs for the OpenAM identity provider.", + "url": "http://openam.forgerock.org", + "regex": { + "std": { + "pattern": "^(?<module>[\\w]+):(?<timestamp>\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}:\\d{3} [AP]M \\w+): Thread\\[(?<thread>[^,]+,\\d+,[^,]+)\\]\\n?(?:\\*+|(?<body>.*))$" + } + }, + "sample": [ + { + "line": "amMonitoring:06/09/2014 02:49:59:447 PM UTC: Thread[http-80-1,5,main]\n**********************************************" + }, + { + "line": "amLog:06/09/2014 04:08:22:515 PM UTC: Thread[http-80-8,5,main]\nERROR: LogMessageProviderBase.createLogRecord: unable to locate message ID object for ATTEMPT_GET_METAALIAS" + } + ] + } +}
\ No newline at end of file |