From ae03f4e9943647416673c5a7e36926e5186f9348 Mon Sep 17 00:00:00 2001 From: Andy Pliszka Date: Tue, 17 Sep 2024 12:35:41 -0400 Subject: [PATCH] feat: changes the default metrics port to 5184 --- cmd/config.go | 2 +- examples/config_EXAMPLE.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/config.go b/cmd/config.go index ced242be8..2344a9d63 100644 --- a/cmd/config.go +++ b/cmd/config.go @@ -502,7 +502,7 @@ type GlobalConfig struct { func newDefaultGlobalConfig(memo string) GlobalConfig { return GlobalConfig{ APIListenPort: "127.0.0.1:5183", - MetricsListenPort: "127.0.0.1:9100", + MetricsListenPort: "127.0.0.1:5184", Timeout: "10s", LightCacheSize: 20, Memo: memo, diff --git a/examples/config_EXAMPLE.yaml b/examples/config_EXAMPLE.yaml index 7552b18fc..e3a67f79c 100644 --- a/examples/config_EXAMPLE.yaml +++ b/examples/config_EXAMPLE.yaml @@ -1,6 +1,6 @@ global: api-listen-addr: 127.0.0.1:5183 - metrics-listen-addr: 127.0.0.1:9100 + metrics-listen-addr: 127.0.0.1:5184 timeout: 10s memo: "" light-cache-size: 20