Add format for OpenStack Keystone log files

Keystone logs are formatted differently than the other OpenStack
service logs.

Signed-off-by: Nicolas Bock <nicolasbock@gmail.com>
This commit is contained in:
Nicolas Bock 2021-04-28 15:06:14 -06:00
parent 94498878c8
commit 125c872849
No known key found for this signature in database
GPG Key ID: 23EDF7B8E50200B5
1 changed files with 21 additions and 1 deletions

View File

@ -11,8 +11,18 @@
"mod-std": {
"module-format": true,
"pattern": "^(?<level>\\w+) (?<logger>\\S+) \\[(?<tid>[^\\]]+)\\] (?<body>.*)"
},
"keystone": {
"pattern": "^[(](?<logger>[^)]+)[)]: (?<timestamp>\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2},\\d{3}) (?<level>\\w+) (?<body>.*)"
},
"keystone-debug": {
"pattern": "^[(](?<logger>[^)]+)[)]: (?<timestamp>\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2},\\d{3}) (?<level>\\w+) [(](?<user>[^)]+)[)] (?<body>.*)"
}
},
"timestamp-format": [
"%Y-%m-%d %H:%M:%S.%L",
"%Y-%m-%d %H:%M:%S,%L"
],
"level-field": "level",
"level": {
"critical": "CRITICAL",
@ -34,12 +44,22 @@
"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=<user>, primary_key=True, nullable=False)])"
},
{
"line": "(sqlalchemy.pool.QueuePool): 2021-04-28 16:37:00,355 DEBUG Connection <pymysql.connections.Connection object at 0x7fd88717d0d0> being returned to pool"
}
]
}
}
}