Skip to content

Commit 4dbb055

Browse files
committed
fix(cubestore): bind to 0.0.0.0 for statsd metrics to be able to send to non-localhost
1 parent 13b78dd commit 4dbb055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/cubestore/cubestore/src/bin/cubestored.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn main() {
3737
let metrics_server_address = format!("{}:{}", metrics_addr, metrics_port);
3838

3939
init_metrics(
40-
"127.0.0.1:0",
40+
"0.0.0.0:0",
4141
metrics_server_address,
4242
metrics_format,
4343
vec![],

0 commit comments

Comments
 (0)