-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tetragon: Add missed stats to kprobemetrics package
Add tetragon_missed_probes_total metric to kprobemetrics package and logic to store and collect missed stats. The missed stats are supported for kprobes and stored per function and policy name, like for generic kprobes: tetragon_missed_probes_total{attach="__x64_sys_close",policy="syswritefollowfdpsswd"} 453 tetragon_missed_probes_total{attach="__x64_sys_write",policy="syswritefollowfdpsswd"} 455 tetragon_missed_probes_total{attach="fd_install",policy="syswritefollowfdpsswd"} 451 and multi kprobes: tetragon_missed_probes_total{attach="kprobe_multi (3 functions)",policy="syswritefollowfdpsswd"} 41 Signed-off-by: Jiri Olsa <[email protected]>
- Loading branch information
Showing
4 changed files
with
136 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright Authors of Tetragon | ||
|
||
package kprobemetrics | ||
|
||
import ( | ||
"github.com/cilium/ebpf/link" | ||
"github.com/cilium/tetragon/pkg/sensors" | ||
"github.com/cilium/tetragon/pkg/sensors/program" | ||
"github.com/prometheus/client_golang/prometheus" | ||
"golang.org/x/sys/unix" | ||
) | ||
|
||
// bpfCollector implements prometheus.Collector. It collects metrics directly from BPF maps. | ||
type bpfCollector struct{} | ||
|
||
func NewBPFCollector() prometheus.Collector { | ||
return &bpfCollector{} | ||
} | ||
|
||
func (c *bpfCollector) Describe(ch chan<- *prometheus.Desc) { | ||
ch <- MissedLink.Desc() | ||
ch <- MissedProg.Desc() | ||
} | ||
|
||
func collectLink(ch chan<- prometheus.Metric, load *program.Program) { | ||
if load.Link == nil { | ||
return | ||
} | ||
|
||
info, err := load.Link.Info() | ||
if err != nil { | ||
return | ||
} | ||
|
||
missed := uint64(0) | ||
|
||
switch info.Type { | ||
case link.PerfEventType: | ||
pevent := info.PerfEvent() | ||
switch pevent.Type { | ||
case unix.BPF_PERF_EVENT_KPROBE, unix.BPF_PERF_EVENT_KRETPROBE: | ||
kprobe := pevent.Kprobe() | ||
missed, _ = kprobe.Missed() | ||
} | ||
case link.KprobeMultiType: | ||
kmulti := info.KprobeMulti() | ||
missed, _ = kmulti.Missed() | ||
default: | ||
} | ||
|
||
ch <- MissedLink.MustMetric(float64(missed), load.Policy, load.Attach) | ||
} | ||
|
||
func collectProg(ch chan<- prometheus.Metric, load *program.Program) { | ||
info, err := load.Prog.Info() | ||
if err != nil { | ||
return | ||
} | ||
|
||
missed, _ := info.RecursionMisses() | ||
ch <- MissedProg.MustMetric(float64(missed), load.Policy, load.Attach) | ||
} | ||
|
||
func (c *bpfCollector) Collect(ch chan<- prometheus.Metric) { | ||
allPrograms := sensors.AllPrograms() | ||
for _, prog := range allPrograms { | ||
collectLink(ch, prog) | ||
collectProg(ch, prog) | ||
} | ||
} | ||
|
||
// bpfZeroCollector implements prometheus.Collector. It collects "zero" metrics. | ||
// It's intended to be used when BPF metrics are not collected, but we still want | ||
// Prometheus metrics to be exposed. | ||
type bpfZeroCollector struct { | ||
bpfCollector | ||
} | ||
|
||
func NewBPFZeroCollector() prometheus.Collector { | ||
return &bpfZeroCollector{ | ||
bpfCollector: bpfCollector{}, | ||
} | ||
} | ||
|
||
func (c *bpfZeroCollector) Describe(ch chan<- *prometheus.Desc) { | ||
c.bpfCollector.Describe(ch) | ||
} | ||
|
||
func (c *bpfZeroCollector) Collect(ch chan<- prometheus.Metric) { | ||
ch <- MissedLink.MustMetric(0, "policy", "attach") | ||
ch <- MissedProg.MustMetric(0, "policy", "attach") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright Authors of Tetragon | ||
|
||
package kprobemetrics | ||
|
||
import ( | ||
"github.com/cilium/tetragon/pkg/metrics" | ||
"github.com/cilium/tetragon/pkg/metrics/consts" | ||
"github.com/prometheus/client_golang/prometheus" | ||
) | ||
|
||
var ( | ||
MissedLink = metrics.NewBPFCounter(prometheus.NewDesc( | ||
prometheus.BuildFQName(consts.MetricsNamespace, "", "missed_link_probes_total"), | ||
"The total number of Tetragon probe missed by link.", | ||
[]string{"policy", "attach"}, nil, | ||
)) | ||
MissedProg = metrics.NewBPFCounter(prometheus.NewDesc( | ||
prometheus.BuildFQName(consts.MetricsNamespace, "", "missed_prog_probes_total"), | ||
"The total number of Tetragon probe missed by program.", | ||
[]string{"policy", "attach"}, nil, | ||
)) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters