* checkpoint * Pass context through ServeDNS, enable gRPC tracing * Fix types and make tracer available to proxy. go fmt * Fix imports * Use the DoNotStartTrace option * Change to SpanFilter from DoNotStartTrace * Use new name (IncludeSpan) * Final names * Add tests; fix possible client/conn leaks in grpc * go fmt
43 lines
839 B
Go
43 lines
839 B
Go
package proxy
|
|
|
|
import (
|
|
"github.com/coredns/coredns/core/dnsserver"
|
|
"github.com/coredns/coredns/middleware"
|
|
|
|
"github.com/mholt/caddy"
|
|
)
|
|
|
|
func init() {
|
|
caddy.RegisterPlugin("proxy", caddy.Plugin{
|
|
ServerType: "dns",
|
|
Action: setup,
|
|
})
|
|
}
|
|
|
|
func setup(c *caddy.Controller) error {
|
|
upstreams, err := NewStaticUpstreams(&c.Dispenser)
|
|
if err != nil {
|
|
return middleware.Error("proxy", err)
|
|
}
|
|
|
|
t := dnsserver.GetMiddleware(c, "trace")
|
|
P := &Proxy{Trace: t}
|
|
dnsserver.GetConfig(c).AddMiddleware(func(next middleware.Handler) middleware.Handler {
|
|
P.Next = next
|
|
P.Upstreams = &upstreams
|
|
return P
|
|
})
|
|
|
|
c.OnStartup(OnStartupMetrics)
|
|
|
|
for _, u := range upstreams {
|
|
c.OnStartup(func() error {
|
|
return u.Exchanger().OnStartup(P)
|
|
})
|
|
c.OnShutdown(func() error {
|
|
return u.Exchanger().OnShutdown(P)
|
|
})
|
|
}
|
|
|
|
return nil
|
|
}
|