-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathmetrics.go
More file actions
136 lines (121 loc) · 3.29 KB
/
Copy pathmetrics.go
File metadata and controls
136 lines (121 loc) · 3.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package main
import (
"context"
"strings"
"time"
"github.com/crowdsecurity/crowdsec/pkg/apiclient"
"github.com/crowdsecurity/crowdsec/pkg/models"
csversion "github.com/crowdsecurity/go-cs-lib/version"
"github.com/filipowm/go-unifi/unifi"
"github.com/rs/zerolog/log"
)
type metricsCollector struct {
mal *unifiAddrList
lastPollTimeMilli int64
lastPollTime int64
startupTime int64
version string
osName string
osVersion string
}
func newMetricsCollector(mal *unifiAddrList, version string) *metricsCollector {
osName, osVersion := csversion.DetectOS()
return &metricsCollector{
mal: mal,
lastPollTimeMilli: time.Now().UnixMilli(),
lastPollTime: time.Now().Unix(),
startupTime: time.Now().Unix(),
version: version,
osName: osName,
osVersion: osVersion,
}
}
func (mc *metricsCollector) pollAndSendMetrics(ctx context.Context, api *apiclient.ApiClient) {
nowMilli := time.Now().UnixMilli()
now := time.Now().Unix()
req := &unifi.TrafficFlowsRequest{
Action: []string{"blocked"},
TimestampFrom: mc.lastPollTimeMilli,
TimestampTo: nowMilli,
PageSize: 1000,
PageNumber: 0,
}
var dropped int64 = 0
for {
flows, err := mc.mal.c.GetTrafficFlows(ctx, unifiSite, req)
if err != nil {
log.Warn().Err(err).Msg("Failed to fetch traffic flows for metrics from UniFi")
return
}
for _, flow := range flows.Data {
if flow.Action == "blocked" {
for _, policy := range flow.Policies {
if strings.Contains(policy.Name, "cs-unifi-bouncer") {
dropped++
break
}
}
}
}
if !flows.HasNext {
break
}
req.PageNumber++
}
log.Info().Msgf("Processed %d new blocked traffic events from UniFi, reporting to CrowdSec", dropped)
nameDropped := "dropped"
// nameActiveDecisions := "active_decisions"
unitRequest := "request"
valueDropped := float64(dropped)
// valueActiveDecisions := float64(len(mc.mal.blockedAddresses[true]) + len(mc.mal.blockedAddresses[false]))
window := now - mc.lastPollTime
payload := &models.AllMetrics{
RemediationComponents: []*models.RemediationComponentsMetrics{
{
Name: "cs-unifi-bouncer",
Type: "daemon bouncer",
BaseMetrics: models.BaseMetrics{
Version: &mc.version,
UtcStartupTimestamp: &mc.startupTime,
FeatureFlags: []string{},
Os: &models.OSversion{
Name: &mc.osName,
Version: &mc.osVersion,
},
Metrics: []*models.DetailedMetrics{
{
Items: []*models.MetricsDetailItem{
{
Name: &nameDropped,
Unit: &unitRequest,
Value: &valueDropped,
Labels: map[string]string{
"origin": "crowdsec",
"remediation": "ban",
},
},
// {
// Name: &nameActiveDecisions,
// Value: &valueActiveDecisions,
// },
},
Meta: &models.MetricsMeta{
UtcNowTimestamp: &now,
WindowSizeSeconds: &window,
},
},
},
},
},
},
}
_, _, err := api.UsageMetrics.Add(ctx, payload)
switch {
case err != nil:
log.Warn().Err(err).Msg("failed to send metrics")
default:
mc.lastPollTimeMilli = nowMilli
mc.lastPollTime = now
log.Debug().Msg("usage metrics successfully sent")
}
}