diff --git a/core/endpoint.go b/core/endpoint.go index 9a7c67d5..acaed8ec 100644 --- a/core/endpoint.go +++ b/core/endpoint.go @@ -198,7 +198,7 @@ func (endpoint *Endpoint) EvaluateHealth() *Result { // Clean up parameters that we don't need to keep in the results if endpoint.UIConfig.HideHostname { for errIdx, errorString := range result.Errors { - result.Errors[errIdx] = strings.ReplaceAll(errorString, result.Hostname, "host") + result.Errors[errIdx] = strings.ReplaceAll(errorString, result.Hostname, "") } result.Hostname = "" }