From 49d827fdcd56484b78f6705c10a4c9d3a537384a Mon Sep 17 00:00:00 2001 From: albertlockett Date: Fri, 7 Jun 2024 21:53:06 +0000 Subject: [PATCH] fixed bug where couldn't set histogram key --- pkg/cli/internal/commands/run/run.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cli/internal/commands/run/run.go b/pkg/cli/internal/commands/run/run.go index a20176a..21d66ac 100644 --- a/pkg/cli/internal/commands/run/run.go +++ b/pkg/cli/internal/commands/run/run.go @@ -290,6 +290,7 @@ func parseWatchMapOptions(runOpts *runOptions) (map[string]loader.WatchedMapOpti } w := watchMapOptions[mapName] w.HistValueKey = valueKey + watchMapOptions[mapName] = w } return watchMapOptions, nil