diff --git a/features/pm/performance.go b/features/pm/performance.go index 7c27f562..3b597213 100644 --- a/features/pm/performance.go +++ b/features/pm/performance.go @@ -318,6 +318,9 @@ func PostKPIReportFromNF(w http.ResponseWriter, r *http.Request) { kpiCVal.Value = 0.0 kpiCVal.Err = err.Error() } else { + if *k.Unit == "%" && result > 100 { + result = 100 + } kpiCVal.Value = result }