From 5068d34c08f951a7ea6257d305a1627b09a95817 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 19:44:55 +0200 Subject: Adding upstream version 0.11.1. Signed-off-by: Daniel Baumann --- src/formats/openstack_log.json | 65 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/formats/openstack_log.json (limited to 'src/formats/openstack_log.json') diff --git a/src/formats/openstack_log.json b/src/formats/openstack_log.json new file mode 100644 index 0000000..4dc280f --- /dev/null +++ b/src/formats/openstack_log.json @@ -0,0 +1,65 @@ +{ + "$schema": "https://lnav.org/schemas/format-v1.schema.json", + "openstack_log": { + "title": "OpenStack log format", + "description": "The log format for the OpenStack log files", + "url": "http://docs.openstack.org/openstack-ops/content/logging_monitoring.html", + "regex": { + "std": { + "pattern": "^(?\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}.\\d{3}) (?\\d+) (?\\w+) (?\\S+) \\[(?[^\\]]+)\\] (?.*)" + }, + "mod-std": { + "module-format": true, + "pattern": "^(?\\w+) (?\\S+) \\[(?[^\\]]+)\\] (?.*)" + }, + "keystone": { + "pattern": "^[(](?[^)]+)[)]: (?\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2},\\d{3}) (?\\w+) (?!\\()(?.*)" + }, + "keystone-debug": { + "pattern": "^[(](?[^)]+)[)]: (?\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2},\\d{3}) (?\\w+) [(](?[^)]+)[)] (?.*)" + } + }, + "timestamp-format": [ + "%Y-%m-%d %H:%M:%S.%L", + "%Y-%m-%d %H:%M:%S,%L" + ], + "level-field": "level", + "level": { + "critical": "CRITICAL", + "error": "ERROR", + "info": "INFO", + "warning": "WARNING", + "trace": "TRACE", + "debug": "DEBUG" + }, + "value": { + "tid": { + "kind": "string", + "identifier": true + }, + "pid": { + "kind": "string", + "identifier": true + }, + "logger": { + "kind": "string", + "identifier": true + }, + "user": { + "kind": "string", + "identifier": true + } + }, + "sample": [ + { + "line": "2014-10-28 10:42:22.772 23623 INFO neutron.wsgi [req-40743023-00ed-441c-9d0a-19b8167ea0ad None] 10.1.255.252 - - [28/Oct/2014 10:42:22] GET /v2.0/floatingips.json?fixed_ip_address=80.0.0.9&port_id=b4291e0e-a941-4663-9379-7af6471e983f HTTP/1.1 200 208 0.008971" + }, + { + "line": "(sqlalchemy.orm.mapper.Mapper): 2021-04-27 06:25:32,122 INFO (User|user) Identified primary key columns: ColumnSet([Column('id', String(length=64), table=, primary_key=True, nullable=False)])" + }, + { + "line": "(sqlalchemy.pool.QueuePool): 2021-04-28 16:37:00,355 DEBUG Connection being returned to pool" + } + ] + } +} -- cgit v1.2.3