From d0e71587b74933c4115ad3dff1ac443418648a30 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Thu, 31 Oct 2019 15:13:30 -0700 Subject: [PATCH] log os and arch in poller --- command/daemon/daemon.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/command/daemon/daemon.go b/command/daemon/daemon.go index b0d8d3f..7f9b281 100644 --- a/command/daemon/daemon.go +++ b/command/daemon/daemon.go @@ -215,6 +215,8 @@ func (c *daemonCommand) run(*kingpin.ParseContext) error { WithField("endpoint", config.Client.Address). WithField("kind", resource.Kind). WithField("type", resource.Type). + WithField("os", config.Platform.OS). + WithField("arch", config.Platform.Arch). Infoln("polling the remote server") poller.Poll(ctx, config.Runner.Capacity)