Skip to content

Commit

Permalink
Prometheus metrics changes and surfacing healthcheck errors - JS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcoles committed May 9, 2023
1 parent a5c2d0b commit 14dcd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/static/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ function service(vip, l4, s) {
append(tr, "th", vip)
append(tr, "th", l4)
//append(tr, "th", up)
append(tr, "th", dhms(s.when) + " " + (up ? "UP" : "DOWN"))
append(tr, "th", dhms(s.when) + " " + up)
append(tr, "th", tsf(s.octets_ps*8) + "bps")
append(tr, "th", tsf(s.packets_ps) + "pps")
append(tr, "th", spc(s.concurrent), "ar")
Expand Down

0 comments on commit 14dcd9d

Please sign in to comment.