aboutsummaryrefslogtreecommitdiff
path: root/plugin/proxy/proxy.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2017-10-25 19:46:41 +0100
committerGravatar GitHub <noreply@github.com> 2017-10-25 19:46:41 +0100
commitc2d93f7182a55e0e9a819f44b87735f635200423 (patch)
tree7f1738db982038b2443ae059faa2b903d1858bae /plugin/proxy/proxy.go
parent25367a43296bf681c984121ae7f40e08f32508a8 (diff)
downloadcoredns-c2d93f7182a55e0e9a819f44b87735f635200423.tar.gz
coredns-c2d93f7182a55e0e9a819f44b87735f635200423.tar.zst
coredns-c2d93f7182a55e0e9a819f44b87735f635200423.zip
plugin/dnstap: some cleanup (#1172)
Some cleanup in proxy and dnstap: * just use time pkg directly and side step the indirection for Epoch * Use Set in SetQueryEpoch to be more Go like. (Looked like a reader) * Don't maintain two sets of time, we already track start, so use that. * Use time.Time and convert when needed * dedent the toDnstap function and put in a separate file
Diffstat (limited to 'plugin/proxy/proxy.go')
-rw-r--r--plugin/proxy/proxy.go44
1 files changed, 1 insertions, 43 deletions
diff --git a/plugin/proxy/proxy.go b/plugin/proxy/proxy.go
index 7b2abd89e..476eddaff 100644
--- a/plugin/proxy/proxy.go
+++ b/plugin/proxy/proxy.go
@@ -9,12 +9,9 @@ import (
"time"
"github.com/coredns/coredns/plugin"
- "github.com/coredns/coredns/plugin/dnstap"
- "github.com/coredns/coredns/plugin/dnstap/msg"
"github.com/coredns/coredns/plugin/pkg/healthcheck"
"github.com/coredns/coredns/request"
- tap "github.com/dnstap/golang-dnstap"
"github.com/miekg/dns"
ot "github.com/opentracing/opentracing-go"
"golang.org/x/net/context"
@@ -89,20 +86,18 @@ func (p Proxy) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (
}
atomic.AddInt64(&host.Conns, 1)
- queryEpoch := msg.Epoch()
RequestCount.WithLabelValues(state.Proto(), upstream.Exchanger().Protocol(), familyToString(state.Family()), host.Name).Add(1)
reply, backendErr = upstream.Exchanger().Exchange(ctx, host.Name, state)
- respEpoch := msg.Epoch()
atomic.AddInt64(&host.Conns, -1)
if child != nil {
child.Finish()
}
- taperr := toDnstap(ctx, host.Name, upstream.Exchanger(), state, reply, queryEpoch, respEpoch)
+ taperr := toDnstap(ctx, host.Name, upstream.Exchanger(), state, reply, start)
if backendErr == nil {
w.WriteMsg(reply)
@@ -172,43 +167,6 @@ func (p Proxy) match(state request.Request) (u Upstream) {
// Name implements the Handler interface.
func (p Proxy) Name() string { return "proxy" }
-func toDnstap(ctx context.Context, host string, ex Exchanger, state request.Request, reply *dns.Msg, queryEpoch, respEpoch uint64) (err error) {
- if tapper := dnstap.TapperFromContext(ctx); tapper != nil {
- // Query
- b := tapper.TapBuilder()
- b.TimeSec = queryEpoch
- if err = b.HostPort(host); err != nil {
- return
- }
- t := ex.Transport()
- if t == "" {
- t = state.Proto()
- }
- if t == "tcp" {
- b.SocketProto = tap.SocketProtocol_TCP
- } else {
- b.SocketProto = tap.SocketProtocol_UDP
- }
- if err = b.Msg(state.Req); err != nil {
- return
- }
- err = tapper.TapMessage(b.ToOutsideQuery(tap.Message_FORWARDER_QUERY))
- if err != nil {
- return
- }
-
- // Response
- if reply != nil {
- b.TimeSec = respEpoch
- if err = b.Msg(reply); err != nil {
- return
- }
- err = tapper.TapMessage(b.ToOutsideResponse(tap.Message_FORWARDER_RESPONSE))
- }
- }
- return
-}
-
const (
defaultFailTimeout = 2 * time.Second
defaultTimeout = 5 * time.Second