Skip to content

Commit f3f5a01

Browse files
committed
set default telemetry port to 0.0.0.0
1 parent e4976ca commit f3f5a01

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

util/tracing/src/lib.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,7 @@ use tracing_subscriber::{
1313
Layer,
1414
};
1515
// The default metrics address hostname
16-
env_default!(
17-
default_metrics_hostname,
18-
"MOVEMENT_METRICS_HOSTNAME",
19-
String,
20-
"127.0.0.1".to_string()
21-
);
16+
env_default!(default_metrics_hostname, "MOVEMENT_METRICS_HOSTNAME", String, "0.0.0.0".to_string());
2217

2318
// The default metrics address port
2419
env_default!(default_metrics_port, "MOVEMENT_METRICS_PORT", u16, 9464);

0 commit comments

Comments
 (0)