From 207df6fc406e81bfeebdff7f404bd242ff3f099f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 7 May 2024 06:48:35 +0200 Subject: Merging upstream version 0.12.2. Signed-off-by: Daniel Baumann --- src/formats/nextflow_log.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/formats/nextflow_log.json (limited to 'src/formats/nextflow_log.json') diff --git a/src/formats/nextflow_log.json b/src/formats/nextflow_log.json new file mode 100644 index 0000000..c4dc39c --- /dev/null +++ b/src/formats/nextflow_log.json @@ -0,0 +1,33 @@ +{ + "$schema": "https://lnav.org/schemas/format-v1.schema.json", + "nextflow_log": { + "title": "Nextflow log format", + "description": "Format file for nextflow.io logs", + "url": [ + "https://nextflow.io/docs/latest/cli.html#execution-logs" + ], + "regex": { + "std": { + "pattern": "(?\\w{3}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}) \\[(?[^\\]]+)\\] (?[^ ]+)\\s+(?[^ ]+) - (?.*)" + } + }, + "timestamp-format": [ + "%b-%d %H:%M:%S" + ], + "value": { + "module": { + "kind": "string", + "identifier": true + }, + "thread": { + "kind": "string", + "identifier": true + } + }, + "sample": [ + { + "line": "Mar-18 21:41:15.684 [main] DEBUG nextflow.cli.Launcher - $> nextflow run nf-core/rnaseq -profile test,docker --outdir results" + } + ] + } +} -- cgit v1.2.3