diff --git a/internal/prometheus/target.go b/internal/prometheus/target.go index ec4f85c..6a12d51 100644 --- a/internal/prometheus/target.go +++ b/internal/prometheus/target.go @@ -45,10 +45,10 @@ func (t Target) Header() []string { // Row represents a target row. func (t Target) Row() []string { health := t.Health - col := color.New(color.FgRed).SprintFunc() + col := color.New(color.FgGreen).SprintFunc() if health == v1.HealthBad { - col = color.New(color.FgGreen).SprintFunc() + col = color.New(color.FgRed).SprintFunc() } if health == v1.HealthUnknown {