Compare commits

..

3 Commits

Author SHA1 Message Date
yo
a910f1b69f version bump to 0.6.13 2023-01-03 13:24:50 +01:00
yo
37510ff1d1 Who says PID should be limited to 99999? 2023-01-03 13:23:12 +01:00
yo
dac551ece7 Add optional semicolon after "slapd[PID]" 2022-12-26 14:51:41 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ const (
// FIXME: Not very strict
IPv6RE = `(?:(?:[0-9a-fA-F]{1,4}\:){7})[0-9a-fA-F]{1,4}`
HostRE = `([0-9A-Za-z\-\_\.]*)`
ProcessRE = `(slapd\[[0-9]{1,5}\])`
ProcessRE = `(slapd\[[0-9]{1,7}\])(?:\:)?`
// group[4]
ConnIdRE = `conn=([0-9]{4,10})`
ConnFdRE = `(?:fd=([0-9]{1,10}))?`

View File

@ -129,7 +129,7 @@ var (
File os.File
Writer *bufio.Writer
Version = "0.6.11"
Version = "0.6.13"
BuildInfo = promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "openldaplogparser_build_info",