view misc/mtail/prosody.mtail @ 5766:b8a2b3ebe792

mod_http_oauth2: Return validation output added in trunk rev 72d7830505f0 It's not fun at all to try to register a client and only get back "failed schema validation", this should help with that.
author Kim Alvefur <zash@zash.se>
date Sun, 03 Dec 2023 23:44:18 +0100
parents c217f4edfc4f
children
line wrap: on
line source

counter prosody_log_messages by level

/^(?P<date>(?P<legacy_date>\w+\s+\d+\s+\d+:\d+:\d+)|(?P<rfc3339_date>\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d+[+-]\d{2}:\d{2})) (?P<sink>\S+)\s(?P<loglevel>\w+)\s(?P<message>.*)/ {
	len($legacy_date) > 0 {
		strptime($2, "Jan _2 15:04:05")
	}
	len($rfc3339_date) > 0 {
		strptime($rfc3339_date, "2006-01-02T03:04:05-0700")
	}
	$loglevel != "" {
		prosody_log_messages[$loglevel]++
	}
}