stats: listen on 0.0.0.0 for prom

This commit is contained in:
Graham Christensen 2018-03-05 07:39:19 -05:00
parent f3b728ce7f
commit bb697d5375
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -87,7 +87,7 @@ fn main() {
thread::spawn(||{
let addr = "127.0.0.1:9898";
let addr = "0.0.0.0:9898";
println!("listening addr {:?}", addr);
Server::http(addr)
.unwrap()