Added system.profile to the ingored dbs

This commit is contained in:
Carlos Salguero
2022-04-05 12:46:06 -03:00
parent 9837bbdd2e
commit 670e1159bf

View File

@@ -9,7 +9,7 @@ import (
"gopkg.in/mgo.v2/bson"
)
var systemDBs = []string{"admin", "config", "local"} //nolint:gochecknoglobals
var systemDBs = []string{"admin", "config", "local", "system.profile"} //nolint:gochecknoglobals
// IndexStat hold an index usage statistics.
type IndexStat struct {
Accesses struct {