Skip to content

Commit

Permalink
feat: changes the default metrics port to 5184
Browse files Browse the repository at this point in the history
  • Loading branch information
AntiTyping committed Sep 18, 2024
1 parent cd48431 commit ae03f4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion examples/config_EXAMPLE.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit ae03f4e

Please sign in to comment.