Sfoglia il codice sorgente

write overridden host into request packet for log captures

Tobias Begalke 6 anni fa
parent
commit
edbd6ad703
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  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,