Fix typo to add view tag

This commit is contained in:
Alan Bernstein 2017-04-24 15:13:07 -05:00
parent 579b381c12
commit dd465cc77b

View file

@ -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
}