123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- package apiserver
- import (
- "context"
- "time"
- log "github.com/sirupsen/logrus"
- "golang.org/x/exp/slices"
- "github.com/crowdsecurity/go-cs-lib/pkg/ptr"
- "github.com/crowdsecurity/go-cs-lib/pkg/trace"
- "github.com/crowdsecurity/go-cs-lib/pkg/version"
- "github.com/crowdsecurity/crowdsec/pkg/models"
- )
- func (a *apic) GetMetrics() (*models.Metrics, error) {
- machines, err := a.dbClient.ListMachines()
- if err != nil {
- return nil, err
- }
- machinesInfo := make([]*models.MetricsAgentInfo, len(machines))
- for i, machine := range machines {
- machinesInfo[i] = &models.MetricsAgentInfo{
- Version: machine.Version,
- Name: machine.MachineId,
- LastUpdate: machine.UpdatedAt.String(),
- LastPush: ptr.OrEmpty(machine.LastPush).String(),
- }
- }
- bouncers, err := a.dbClient.ListBouncers()
- if err != nil {
- return nil, err
- }
- bouncersInfo := make([]*models.MetricsBouncerInfo, len(bouncers))
- for i, bouncer := range bouncers {
- bouncersInfo[i] = &models.MetricsBouncerInfo{
- Version: bouncer.Version,
- CustomName: bouncer.Name,
- Name: bouncer.Type,
- LastPull: bouncer.LastPull.String(),
- }
- }
- return &models.Metrics{
- ApilVersion: ptr.Of(version.String()),
- Machines: machinesInfo,
- Bouncers: bouncersInfo,
- }, nil
- }
- func (a *apic) fetchMachineIDs() ([]string, error) {
- machines, err := a.dbClient.ListMachines()
- if err != nil {
- return nil, err
- }
- ret := make([]string, len(machines))
- for i, machine := range machines {
- ret[i] = machine.MachineId
- }
- // sorted slices are required for the slices.Equal comparison
- slices.Sort(ret)
- return ret, nil
- }
- // SendMetrics sends metrics to the API server until it receives a stop signal.
- //
- // Metrics are sent at start, then at the randomized metricsIntervalFirst,
- // then at regular metricsInterval. If a change is detected in the list
- // of machines, the next metrics are sent immediately.
- func (a *apic) SendMetrics(stop chan (bool)) {
- defer trace.CatchPanic("lapi/metricsToAPIC")
- // verify the list of machines every <checkInt> interval
- const checkInt = 20 * time.Second
- // intervals must always be > 0
- metInts := []time.Duration{1 * time.Millisecond, a.metricsIntervalFirst, a.metricsInterval}
- log.Infof("Start send metrics to CrowdSec Central API (interval: %s once, then %s)",
- metInts[1].Round(time.Second), metInts[2])
- count := -1
- nextMetInt := func() time.Duration {
- if count < len(metInts)-1 {
- count++
- }
- return metInts[count]
- }
- machineIDs := []string{}
- reloadMachineIDs := func() {
- ids, err := a.fetchMachineIDs()
- if err != nil {
- log.Debugf("unable to get machines (%s), will retry", err)
- return
- }
- machineIDs = ids
- }
- // store the list of machine IDs to compare
- // with the next list
- reloadMachineIDs()
- checkTicker := time.NewTicker(checkInt)
- metTicker := time.NewTicker(nextMetInt())
- for {
- select {
- case <-stop:
- checkTicker.Stop()
- metTicker.Stop()
- return
- case <-checkTicker.C:
- oldIDs := machineIDs
- reloadMachineIDs()
- if !slices.Equal(oldIDs, machineIDs) {
- log.Infof("capi metrics: machines changed, immediate send")
- metTicker.Reset(1 * time.Millisecond)
- }
- case <-metTicker.C:
- metTicker.Stop()
- log.Debug("capi metrics: acquiring lock")
- err := a.dbClient.AcquirePushMetricsLock()
- if a.dbClient.IsLocked(err) {
- log.Infof("another instance of crowdsec is already pushing metrics, skipping")
- metTicker.Reset(nextMetInt())
- return
- }
- if err != nil {
- log.Errorf("unable to acquire pushMetrics lock (%s)", err)
- }
- metrics, err := a.GetMetrics()
- if err != nil {
- log.Errorf("unable to get metrics (%s), will retry", err)
- }
- log.Info("capi metrics: sending")
- _, _, err = a.apiClient.Metrics.Add(context.Background(), metrics)
- if err != nil {
- log.Errorf("capi metrics: failed: %s", err)
- }
- log.Debug("capi metrics: releasing lock")
- err = a.dbClient.ReleasePushMetricsLock()
- if err != nil {
- log.Errorf("unable to release metrics lock (%s)", err)
- }
- metTicker.Reset(nextMetInt())
- case <-a.metricsTomb.Dying(): // if one apic routine is dying, do we kill the others?
- checkTicker.Stop()
- metTicker.Stop()
- a.pullTomb.Kill(nil)
- a.pushTomb.Kill(nil)
- return
- }
- }
- }
|