Explorar el Código

write overridden host into request packet for log captures

Tobias Begalke hace 6 años
padre
commit
edbd6ad703
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  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,