mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 04:15:54 +02:00
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package climetrics
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/jedib0t/go-pretty/v6/table"
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/crowdsecurity/crowdsec/cmd/crowdsec-cli/cstable"
|
|
)
|
|
|
|
type statAppsecEngine map[string]map[string]int
|
|
|
|
func (s statAppsecEngine) Description() (string, string) {
|
|
return "Appsec Metrics",
|
|
`Measures the number of parsed and blocked requests by the AppSec Component.`
|
|
}
|
|
|
|
func (s statAppsecEngine) Process(appsecEngine, metric string, val int) {
|
|
if _, ok := s[appsecEngine]; !ok {
|
|
s[appsecEngine] = make(map[string]int)
|
|
}
|
|
|
|
s[appsecEngine][metric] += val
|
|
}
|
|
|
|
func (s statAppsecEngine) Table(out io.Writer, wantColor string, noUnit bool, showEmpty bool) {
|
|
t := cstable.New(out, wantColor).Writer
|
|
t.AppendHeader(table.Row{"Appsec Engine", "Processed", "Blocked"})
|
|
|
|
keys := []string{"processed", "blocked"}
|
|
|
|
if numRows, err := metricsToTable(t, s, keys, noUnit); err != nil {
|
|
log.Warningf("while collecting appsec stats: %s", err)
|
|
} else if numRows > 0 || showEmpty {
|
|
title, _ := s.Description()
|
|
t.SetTitle(title)
|
|
fmt.Fprintln(out, t.Render())
|
|
}
|
|
}
|