From cfdca822ae333eec01143d7ec668b10326d19c9f Mon Sep 17 00:00:00 2001 From: Stefan Date: Mon, 20 Mar 2023 16:35:28 +0100 Subject: [PATCH] Fix load --- unms.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unms.go b/unms.go index ae57373..201a7ff 100644 --- a/unms.go +++ b/unms.go @@ -163,7 +163,7 @@ func processUNMSAPIRouter() []node { } fields := map[string]interface{}{ "cpu": statistics.CPU[t].Y, - "load": float64(statistics.CPU[t].Y), + "load": float64(statistics.CPU[t].Y / 100), "ram": statistics.RAM[t].Y, //hier fehlen noch die interfaces }