From dd465cc77b00063da38af8ed78ff8dc6e76a7567 Mon Sep 17 00:00:00 2001 From: Alan Bernstein Date: Mon, 24 Apr 2017 15:13:07 -0500 Subject: [PATCH] Fix typo to add view tag --- frame.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frame.go b/frame.go index d173d9a07..520ef2465 100644 --- a/frame.go +++ b/frame.go @@ -422,7 +422,7 @@ func (f *Frame) newView(path, name string) *View { view.cacheType = f.cacheType view.LogOutput = f.LogOutput view.BitmapAttrStore = f.bitmapAttrStore - view.stats = f.Stats.WithTags(fmt.Sprintf("slice:%s", name)) + view.stats = f.Stats.WithTags(fmt.Sprintf("view:%s", name)) return view }