mirror of
https://github.com/tailscale/tailscale.git
synced 2025-08-14 06:57:31 +00:00
prober: export probe class and metrics from bandwidth prober
- Wrap each prober function into a probe class that allows associating metric labels and custom metrics with a given probe; - Make sure all existing probe classes set a `class` metric label; - Move bandwidth probe size from being a metric label to a separate gauge metric; this will make it possible to use it to calculate average used bandwidth using a PromQL query; - Also export transfer time for the bandwidth prober (more accurate than the total probe time, since it excludes connection establishment time). Updates tailscale/corp#17912 Signed-off-by: Anton Tolchanov <anton@tailscale.com>
This commit is contained in:

committed by
Anton Tolchanov

parent
21671ca374
commit
5336362e64
@@ -89,11 +89,13 @@ func ExampleForEachAddr() {
|
||||
<-sigCh
|
||||
}
|
||||
|
||||
func probeLogWrapper(logf logger.Logf, pf prober.ProbeFunc) prober.ProbeFunc {
|
||||
return func(ctx context.Context) error {
|
||||
logf("starting probe")
|
||||
err := pf(ctx)
|
||||
logf("probe finished with %v", err)
|
||||
return err
|
||||
func probeLogWrapper(logf logger.Logf, pc prober.ProbeClass) prober.ProbeClass {
|
||||
return prober.ProbeClass{
|
||||
Probe: func(ctx context.Context) error {
|
||||
logf("starting probe")
|
||||
err := pc.Probe(ctx)
|
||||
logf("probe finished with %v", err)
|
||||
return err
|
||||
},
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user