move code into new function
This commit is contained in:
parent
6aeb295710
commit
9ae5a14c38
@ -20,17 +20,7 @@ type Collector struct {
|
|||||||
|
|
||||||
func NewExporter(appSettings *cfg.AppSettings, exporterVersion string) *Collector {
|
func NewExporter(appSettings *cfg.AppSettings, exporterVersion string) *Collector {
|
||||||
log.Printf("reading fail2ban metrics socket file: %s", appSettings.Fail2BanSocketPath)
|
log.Printf("reading fail2ban metrics socket file: %s", appSettings.Fail2BanSocketPath)
|
||||||
s, err := socket.ConnectToSocket(appSettings.Fail2BanSocketPath)
|
printFail2BanServerVersion(appSettings.Fail2BanSocketPath)
|
||||||
if err != nil {
|
|
||||||
log.Printf("error connecting to socket: %v", err)
|
|
||||||
} else {
|
|
||||||
version, err := s.GetServerVersion()
|
|
||||||
if err != nil {
|
|
||||||
log.Printf("error interacting with socket: %v", err)
|
|
||||||
} else {
|
|
||||||
log.Printf("successfully connected to fail2ban socket! fail2ban version: %s", version)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return &Collector{
|
return &Collector{
|
||||||
socketPath: appSettings.Fail2BanSocketPath,
|
socketPath: appSettings.Fail2BanSocketPath,
|
||||||
exporterVersion: exporterVersion,
|
exporterVersion: exporterVersion,
|
||||||
@ -70,3 +60,17 @@ func (c *Collector) Collect(ch chan<- prometheus.Metric) {
|
|||||||
}
|
}
|
||||||
c.collectErrorCountMetric(ch)
|
c.collectErrorCountMetric(ch)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func printFail2BanServerVersion(socketPath string) {
|
||||||
|
s, err := socket.ConnectToSocket(socketPath)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("error connecting to socket: %v", err)
|
||||||
|
} else {
|
||||||
|
version, err := s.GetServerVersion()
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("error interacting with socket: %v", err)
|
||||||
|
} else {
|
||||||
|
log.Printf("successfully connected to fail2ban socket! fail2ban version: %s", version)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user