From 9d17f9e4a801cde93d1239f33c5bb29345e86ad3 Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Thu, 13 Jan 2022 09:47:16 +0000 Subject: [PATCH] Fix counter name to avoid crash Fix counter name to avoid crash. Signed-off-by: subhash kumar singh Change-Id: Icd14dc07432ce083ab3ec81308aa99adbb27cd3d --- hwApp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwApp.go b/hwApp.go index 40a8b71..14dd4f6 100755 --- a/hwApp.go +++ b/hwApp.go @@ -247,7 +247,7 @@ func main() { } hw := HWApp{ - stats: xapp.Metric.RegisterCounterGroup(metrics, "hw-go"), // register counter + stats: xapp.Metric.RegisterCounterGroup(metrics, "hw_go"), // register counter } hw.Run() } -- 2.16.6