mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-02 08:31:11 -08:00
Use up/down in UI for consistency with 'up' metric.
This commit is contained in:
parent
3c81843167
commit
7a5f019c40
|
@ -73,9 +73,9 @@ func (t TargetHealth) String() string {
|
||||||
case HealthUnknown:
|
case HealthUnknown:
|
||||||
return "unknown"
|
return "unknown"
|
||||||
case HealthGood:
|
case HealthGood:
|
||||||
return "healthy"
|
return "up"
|
||||||
case HealthBad:
|
case HealthBad:
|
||||||
return "unhealthy"
|
return "down"
|
||||||
}
|
}
|
||||||
panic("unknown state")
|
panic("unknown state")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue