Skip to content

Commit

Permalink
Fixing telemetry server listen host (#1032)
Browse files Browse the repository at this point in the history
  • Loading branch information
andynog committed Jun 1, 2021
1 parent e4a6543 commit 5346cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion telemetry/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl Route {
}

pub fn run(telemetry_state: Arc<TelemetryState>, port: u16) {
rouille::start_server(("localhost", port), move |request| {
rouille::start_server(("0.0.0.0", port), move |request| {
match Route::from_request(request) {
// The prometheus endpoint
Route::Metrics => {
Expand Down

0 comments on commit 5346cc5

Please sign in to comment.