
Update the exporter logging on startup to include the exporter version, the path to the fail2ban socket, and whether basic-auth is enabled or not. Fix code printing error messages on invalid CLI parameters to correct line breaks and correctly print the "usage" information.
55 lines
1.4 KiB
Go
55 lines
1.4 KiB
Go
package f2b
|
|
|
|
import (
|
|
"fail2ban-prometheus-exporter/cfg"
|
|
"fail2ban-prometheus-exporter/socket"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"log"
|
|
)
|
|
|
|
type Collector struct {
|
|
socketPath string
|
|
exporterVersion string
|
|
lastError error
|
|
socketConnectionErrorCount int
|
|
socketRequestErrorCount int
|
|
}
|
|
|
|
func NewExporter(appSettings *cfg.AppSettings, exporterVersion string) *Collector {
|
|
log.Printf("reading metrics from fail2ban socket: %s", appSettings.Fail2BanSocketPath)
|
|
return &Collector{
|
|
socketPath: appSettings.Fail2BanSocketPath,
|
|
exporterVersion: exporterVersion,
|
|
lastError: nil,
|
|
socketConnectionErrorCount: 0,
|
|
socketRequestErrorCount: 0,
|
|
}
|
|
}
|
|
|
|
func (c *Collector) Describe(ch chan<- *prometheus.Desc) {
|
|
ch <- metricServerUp
|
|
ch <- metricJailCount
|
|
ch <- metricJailFailedCurrent
|
|
ch <- metricJailFailedTotal
|
|
ch <- metricJailBannedCurrent
|
|
ch <- metricJailBannedTotal
|
|
ch <- metricErrorCount
|
|
}
|
|
|
|
func (c *Collector) Collect(ch chan<- prometheus.Metric) {
|
|
s, err := socket.ConnectToSocket(c.socketPath)
|
|
if err != nil {
|
|
log.Printf("error opening socket: %v", err)
|
|
c.socketConnectionErrorCount++
|
|
} else {
|
|
defer s.Close()
|
|
}
|
|
|
|
c.collectServerUpMetric(ch, s)
|
|
if err == nil && s != nil {
|
|
c.collectJailMetrics(ch, s)
|
|
c.collectVersionMetric(ch, s)
|
|
}
|
|
c.collectErrorCountMetric(ch)
|
|
}
|