Ver Fonte

write overridden host into request packet for log captures

Tobias Begalke há 6 anos atrás
pai
commit
edbd6ad703
1 ficheiros alterados com 5 adições e 0 exclusões
  1. 5 0
      main.go

+ 5 - 0
main.go

@@ -301,6 +301,11 @@ func nginxLogCapture(logfile, format string) {
 			continue
 		}
 
+		host := config.HostName
+		if host == "" {
+			host = "[not available]"
+		}
+
 		request := data.Request{
 			IpSrc:     remote,
 			Origin:    remote,