diff --git a/index/store/moss/stats.go b/index/store/moss/stats.go index 9eda1f2c..4a649361 100644 --- a/index/store/moss/stats.go +++ b/index/store/moss/stats.go @@ -44,6 +44,12 @@ func (s *stats) statsMap() map[string]interface{} { ms["kv"] = s.s.llstats() } + if msw, ok := s.s.llstore.(*mossStoreWrapper); ok { + ms["store_histograms"] = msw.Actual().Histograms().String() + } + + ms["coll_histograms"] = s.s.ms.Histograms().String() + return ms }