Parcourir la source

write overridden host into request packet for log captures

Tobias Begalke il y a 6 ans
Parent
commit
edbd6ad703
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  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,