diff --git a/cmd/fleetctl/get.go b/cmd/fleetctl/get.go index e0e5d7fa7a..94fe2d259c 100644 --- a/cmd/fleetctl/get.go +++ b/cmd/fleetctl/get.go @@ -616,12 +616,13 @@ func getHostsCommand() cli.Command { host.Host.UUID, host.DisplayText, host.Host.Platform, + host.OsqueryVersion, string(host.Status), }) } table := defaultTable() - table.SetHeader([]string{"uuid", "hostname", "platform", "status"}) + table.SetHeader([]string{"uuid", "hostname", "platform", "osquery_version", "status"}) table.AppendBulk(data) table.Render() } else {