From ba22c3be6c1339d954f43eca5d294cd499c2cca9 Mon Sep 17 00:00:00 2001 From: Logan Lembke Date: Thu, 4 Mar 2021 13:05:12 -0700 Subject: [PATCH] Fix human readable labels in show-beacons-fqdn (#615) Co-authored-by: Logan L --- commands/show-beacons-fqdn.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/show-beacons-fqdn.go b/commands/show-beacons-fqdn.go index 63bff139..aa7abfc0 100644 --- a/commands/show-beacons-fqdn.go +++ b/commands/show-beacons-fqdn.go @@ -69,14 +69,14 @@ func showBeaconsFQDNHuman(data []beaconfqdn.Result, showNetNames bool) error { var headerFields []string if showNetNames { headerFields = []string{ - "Score", "Source Network", "Source IP", "FQDN", "Resolved IPs", + "Score", "Source Network", "Source IP", "FQDN", "Connections", "Avg. Bytes", "Intvl Range", "Size Range", "Top Intvl", "Top Size", "Top Intvl Count", "Top Size Count", "Intvl Skew", "Size Skew", "Intvl Dispersion", "Size Dispersion", } } else { headerFields = []string{ - "Score", "Source IP", "FQDN", "Resolved IPs", + "Score", "Source IP", "FQDN", "Connections", "Avg. Bytes", "Intvl Range", "Size Range", "Top Intvl", "Top Size", "Top Intvl Count", "Top Size Count", "Intvl Skew", "Size Skew", "Intvl Dispersion", "Size Dispersion",