From 09845282fb53b239c076409c088cc0e54bdab792 Mon Sep 17 00:00:00 2001 From: Will Bollock Date: Wed, 11 Oct 2023 11:33:18 -0400 Subject: [PATCH] chore: update default listen address to 0.0.0.0 Prometheus does the same --- cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/main.go b/cmd/main.go index 7abc24a..15a6cc8 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -13,7 +13,7 @@ import ( const ( version = "0.1.0" defaultLogLevel = "info" - defaultListenAddress = ":9141" + defaultListenAddress = "0.0.0.0:9141" defaultMetricsPath = "/metrics" )