소스 검색

write overridden host into request packet for log captures

Tobias Begalke 6 년 전
부모
커밋
edbd6ad703
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  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,