Skip to content

Commit

Permalink
Add retries to BBE DNS probe
Browse files Browse the repository at this point in the history
Copy the BBE DNS probe code to modify it in order to add retry logic. We
can try to upstream this, that's why this is not adding any metrics yet.

This will retry 3 times if there's enough time (at least 15 seconds). No
DNS check should actually take more than 5 seconds, so when we see a
long timeout, inject the retry logic in there.

This experimental DNS prober is behind a feature flag called
"experimental-dns-prober". The existing behavior is the default.

Signed-off-by: Marcelo E. Magallon <[email protected]>
  • Loading branch information
mem committed Jul 29, 2024
1 parent 8900a1d commit 1c48b13
Show file tree
Hide file tree
Showing 11 changed files with 1,203 additions and 23 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ require (

require (
github.com/KimMachineGun/automemlimit v0.6.1
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9
github.com/felixge/httpsnoop v1.0.4
github.com/go-kit/log v0.2.1
github.com/go-ping/ping v1.1.0
Expand All @@ -38,11 +39,11 @@ require (
github.com/quasilyte/go-ruleguard/dsl v0.3.22
github.com/spf13/afero v1.11.0
golang.org/x/exp v0.0.0-20240707233637-46b078467d37
gopkg.in/yaml.v3 v3.0.1
kernel.org/pub/linux/libs/security/libcap/cap v1.2.70
)

require (
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 // indirect
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/buger/goterm v1.0.4 // indirect
Expand Down Expand Up @@ -73,7 +74,6 @@ require (
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
kernel.org/pub/linux/libs/security/libcap/psx v1.2.70 // indirect
)

Expand Down
2 changes: 1 addition & 1 deletion internal/adhoc/adhoc.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func NewHandler(opts HandlerOpts) (*Handler, error) {
tenantCh: opts.TenantCh,
runnerFactory: opts.runnerFactory,
grpcAdhocChecksClientFactory: opts.grpcAdhocChecksClientFactory,
proberFactory: prober.NewProberFactory(opts.K6Runner, 0),
proberFactory: prober.NewProberFactory(opts.K6Runner, 0, opts.Features),
api: apiInfo{
conn: opts.Conn,
},
Expand Down
4 changes: 3 additions & 1 deletion internal/checks/checks.go
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,9 @@ func (c *Updater) addAndStartScraperWithLock(ctx context.Context, check model.Ch
)

scraper, err := c.scraperFactory(
ctx, check, c.publisher, *c.probe, c.logger,
ctx, check, c.publisher, *c.probe,
c.features,
c.logger,
metrics,
c.k6Runner,
c.tenantLimits, c.telemeter,
Expand Down
5 changes: 3 additions & 2 deletions internal/feature/feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ import (

// TODO: this doesn't seem like the right place for this
const (
Traceroute = "traceroute"
K6 = "k6"
Traceroute = "traceroute"
K6 = "k6"
ExperimentalDnsProber = "experimental-dns-prober"
)

// ErrInvalidCollection is returned when you try to set a flag in an
Expand Down
45 changes: 40 additions & 5 deletions internal/prober/dns/dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ import (
"strings"
"time"

"github.com/grafana/synthetic-monitoring-agent/internal/prober/dns/internal/bbe/config"
bbeprober "github.com/grafana/synthetic-monitoring-agent/internal/prober/dns/internal/bbe/prober"
"github.com/grafana/synthetic-monitoring-agent/internal/prober/logger"
sm "github.com/grafana/synthetic-monitoring-agent/pkg/pb/synthetic_monitoring"
"github.com/prometheus/blackbox_exporter/config"
bbeprober "github.com/prometheus/blackbox_exporter/prober"
"github.com/prometheus/client_golang/prometheus"
)

var errUnsupportedCheck = errors.New("unsupported check")

type Prober struct {
target string
config config.Module
target string
config config.Module
experimental bool
}

func NewProber(check sm.Check) (Prober, error) {
Expand All @@ -34,16 +35,50 @@ func NewProber(check sm.Check) (Prober, error) {
}, nil
}

func NewExperimentalProber(check sm.Check) (Prober, error) {
p, err := NewProber(check)
if err != nil {
return p, err
}

p.experimental = true

return p, nil
}

func (p Prober) Name() string {
return "dns"
}

func (p Prober) Probe(ctx context.Context, target string, registry *prometheus.Registry, logger logger.Logger) bool {
cfg := p.config

if p.experimental {
const (
cutoff = 15 * time.Second
retries = 3
)

if deadline, found := ctx.Deadline(); found {
budget := time.Until(deadline)
if budget >= cutoff {
cfg.DNS.Retries = retries
// Split 99% of the budget between three retries. For a
// budget of 15s, this allows for 150 ms per retry for
// other operations.
cfg.DNS.RetryTimeout = budget * 99 / (retries * 100)
}
}

_ = logger.Log("msg", "probing DNS", "target", target, "retries", cfg.DNS.Retries, "retry_timeout", cfg.DNS.RetryTimeout)
}

// The target of the BBE DNS check is the _DNS server_, while
// the target of the SM DNS check is the _query_, so we need
// pass the server as the target parameter, and ignore the
// _target_ paramater that is passed to this function.
return bbeprober.ProbeDNS(ctx, p.target, p.config, registry, logger)

return bbeprober.ProbeDNS(ctx, p.target, cfg, registry, logger)
}

func settingsToModule(settings *sm.DnsSettings, target string) config.Module {
Expand Down
110 changes: 109 additions & 1 deletion internal/prober/dns/dns_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
package dns

import (
"bytes"
"context"
"net"
"os"
"slices"
"strings"
"sync/atomic"
"testing"
"time"

"github.com/go-kit/log"
"github.com/grafana/synthetic-monitoring-agent/internal/prober/dns/internal/bbe/config"
sm "github.com/grafana/synthetic-monitoring-agent/pkg/pb/synthetic_monitoring"
"github.com/prometheus/blackbox_exporter/config"
"github.com/miekg/dns"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/expfmt"
"github.com/stretchr/testify/require"
)

Expand Down Expand Up @@ -157,3 +169,99 @@ func TestSettingsToModule(t *testing.T) {
})
}
}

func TestProberRetries(t *testing.T) {
if !slices.Contains(strings.Split(os.Getenv("SM_TEST_RUN"), ","), "TestProberRetries") {
t.Skip("Skipping long test TestProberRetries")
}

mux := dns.NewServeMux()
var counter atomic.Int32
mux.Handle(".", dns.HandlerFunc(func(w dns.ResponseWriter, r *dns.Msg) {
answer := dns.Msg{
MsgHdr: dns.MsgHdr{
Id: r.Id,
Response: true,
Rcode: dns.RcodeSuccess,
},
Question: r.Question,
Answer: []dns.RR{
&dns.A{
Hdr: dns.RR_Header{
Name: r.Question[0].Name,
Rrtype: dns.TypeA,
Class: dns.ClassINET,
Ttl: 60,
},
A: net.ParseIP("1.2.3.4"),
},
},
}

counter.Add(1)
t.Logf("Received request %d: %v", counter.Load(), r)
delay := 10 * time.Second
if counter.Load()%3 == 0 {
delay = 0
}
t.Log("Answer...")
time.Sleep(delay)
_ = w.WriteMsg(&answer)
}))
addr, err := net.ResolveUDPAddr("udp4", "127.0.0.1:0")
require.NoError(t, err)
l, err := net.ListenUDP("udp4", addr)
require.NoError(t, err)
t.Log(l.LocalAddr().String())
server := &dns.Server{Addr: ":0", PacketConn: l, Net: "udp", Handler: mux}
go func() {
err := server.ActivateAndServe()
if err != nil {
panic(err)
}
}()

p, err := NewExperimentalProber(sm.Check{
Target: "www.grafana.com",
Timeout: 20000,
Settings: sm.CheckSettings{
Dns: &sm.DnsSettings{
Server: l.LocalAddr().String(),
RecordType: sm.DnsRecordType_A,
Protocol: sm.DnsProtocol_UDP,
IpVersion: sm.IpVersion_V4,
},
},
})

require.NoError(t, err)

ctx, cancel := context.WithTimeout(context.Background(), p.config.Timeout)
t.Cleanup(cancel)

defer func() {
err := server.ShutdownContext(ctx)
if err != nil {
panic(err)
}
}()

registry := prometheus.NewPedanticRegistry()

var buf bytes.Buffer
logger := log.NewLogfmtLogger(&buf)

t0 := time.Now()
success := p.Probe(ctx, p.target, registry, logger)
t.Log(success, time.Since(t0))
require.True(t, success)

mfs, err := registry.Gather()
require.NoError(t, err)
enc := expfmt.NewEncoder(&buf, expfmt.NewFormat(expfmt.TypeTextPlain))
for _, mf := range mfs {
require.NoError(t, enc.Encode(mf))
}

t.Log(buf.String())
}
Loading

0 comments on commit 1c48b13

Please sign in to comment.