Documentation ¶
Index ¶
- Constants
- func GetIndexSuggestion(explain ExplainCommand, cardList []CardinalityCount) gox.OrderedMap
- func GetKeys(document bson.D, _range ...bool) []string
- func GetOplogStats(client *mongo.Client) bson.M
- func GetShards(client *mongo.Client, uri string) ([]string, error)
- func GetShardsURIList(client *mongo.Client, uri string) ([]string, error)
- func GetStorageSize(num interface{}) string
- func IsMaster(client *mongo.Client) (bson.M, error)
- func ListDatabaseNames(client *mongo.Client) ([]string, error)
- func MilliToTimeString(milli float64) string
- func MongoPipeline(str string) mongo.Pipeline
- func NewMongoClient(uri string, opts ...string) (*mongo.Client, error)
- func Parse(uri string) (string, error)
- func ReadPasswordFromStdin() (string, error)
- func RunAdminCommand(client *mongo.Client, command string) (bson.M, error)
- func RunCommandOnDB(client *mongo.Client, command string, db string) (bson.M, error)
- type AccessesDoc
- type Cardinality
- type CardinalityCount
- type CardinalitySummary
- type ChangeStream
- type DBStats
- type Explain
- type ExplainCommand
- type ExplainSummary
- type IndexScore
- type IndexStatsDoc
- type IndexesReader
- func (ir *IndexesReader) GetIndexes() (bson.M, error)
- func (ir *IndexesReader) GetIndexesFromCollection(collection *mongo.Collection) []IndexStatsDoc
- func (ir *IndexesReader) GetIndexesFromDB(dbName string) (bson.M, error)
- func (ir *IndexesReader) Print(indexesMap bson.M)
- func (ir *IndexesReader) SetDBName(dbName string)
- func (ir *IndexesReader) SetVerbose(verbose bool)
- type LogInfo
- type MongoCluster
- type OpPerformanceDoc
- type OplogStats
- type QueryExplainer
- func (qe *QueryExplainer) Explain() (ExplainSummary, error)
- func (qe *QueryExplainer) GetExplainDetails(doc bson.M) ExplainSummary
- func (qe *QueryExplainer) GetFilter() bson.D
- func (qe *QueryExplainer) GetIndexesScores(keys []string) []IndexScore
- func (qe *QueryExplainer) GetSummary(summary ExplainSummary) string
- func (qe *QueryExplainer) ReadQueryShape(buffer []byte) error
- func (qe *QueryExplainer) SetVerbose(verbose bool)
- type ServerInfo
- type ShardDoc
- type ShardList
- type SlowOps
- type StageStats
- type UsageDoc
Constants ¶
const COLLSCAN = "COLLSCAN"
COLLSCAN constance
const KEYHOLEDB = "_KEYHOLE_"
KEYHOLEDB -
const REPLICA = "replica"
REPLICA set
const SHARDED = "sharded"
SHARDED cluster
const STANDALONE = "standalone"
STANDALONE cluster
Variables ¶
This section is empty.
Functions ¶
func GetIndexSuggestion ¶ added in v1.0.1
func GetIndexSuggestion(explain ExplainCommand, cardList []CardinalityCount) gox.OrderedMap
GetIndexSuggestion returns a recommended index by cardinalities index follows a principle of equality, sort, rnage
func GetOplogStats ¶ added in v1.0.1
GetOplogStats returns oplog stats
func GetShardsURIList ¶
GetShardsURIList gets shards list
func GetStorageSize ¶ added in v1.1.0
func GetStorageSize(num interface{}) string
GetStorageSize returns storage size in [TGMK] B
func ListDatabaseNames ¶
ListDatabaseNames gets all database names
func MilliToTimeString ¶ added in v1.1.3
MilliToTimeString converts milliseconds to time string, e.g. 1.5m
func MongoPipeline ¶
MongoPipeline gets aggregation pipeline from a string
func NewMongoClient ¶
NewMongoClient new mongo client
func ReadPasswordFromStdin ¶
ReadPasswordFromStdin reads password from stdin
func RunAdminCommand ¶
RunAdminCommand executes admin Command
Types ¶
type AccessesDoc ¶ added in v1.1.2
type AccessesDoc struct { Ops int `json:"ops" bson:"ops"` Since time.Time `json:"since" bson:"since"` }
AccessesDoc - accessss
type Cardinality ¶
type Cardinality struct {
// contains filtered or unexported fields
}
Cardinality -
func NewCardinality ¶
func NewCardinality(client *mongo.Client) *Cardinality
NewCardinality returns cardinality constructor
func (*Cardinality) GetCardinalityArray ¶ added in v1.0.1
func (card *Cardinality) GetCardinalityArray(database string, collection string, keys ...[]string) (CardinalitySummary, error)
GetCardinalityArray returns cardinality list
func (*Cardinality) GetSummary ¶ added in v1.0.1
func (card *Cardinality) GetSummary(summary CardinalitySummary) string
GetSummary get summary of cardinality
type CardinalityCount ¶ added in v1.0.1
CardinalityCount stores cardinality counts
type CardinalitySummary ¶ added in v1.0.1
type CardinalitySummary struct { SampledCount int64 List []CardinalityCount }
CardinalitySummary stores Cardinality summary
type ChangeStream ¶ added in v1.0.1
type ChangeStream struct {
// contains filtered or unexported fields
}
ChangeStream defines what to watch? client, database or collection
func NewChangeStream ¶ added in v1.0.1
func NewChangeStream() *ChangeStream
NewChangeStream gets a new ChangeStream
func (*ChangeStream) SetCollection ¶ added in v1.0.1
func (cs *ChangeStream) SetCollection(collection string)
SetCollection sets collection
func (*ChangeStream) SetDatabase ¶ added in v1.0.1
func (cs *ChangeStream) SetDatabase(database string)
SetDatabase sets database
func (*ChangeStream) SetPipeline ¶ added in v1.0.1
func (cs *ChangeStream) SetPipeline(pipeline []bson.D)
SetPipeline sets pipeline
func (*ChangeStream) SetPipelineString ¶ added in v1.0.1
func (cs *ChangeStream) SetPipelineString(pipe string)
SetPipelineString sets pipeline string
func (*ChangeStream) Watch ¶ added in v1.0.1
func (cs *ChangeStream) Watch(client *mongo.Client, cb callback)
Watch prints oplogs in JSON format
type DBStats ¶
type DBStats struct { DB string `json:"db" bson:"db"` DataSize int `json:"dataSize" bson:"dataSize"` IndexSize int `json:"indexSize" bson:"indexSize"` Objects int `json:"objects" bson:"objects"` }
DBStats contains info from db.stats()
type Explain ¶ added in v1.0.1
type Explain struct {
// contains filtered or unexported fields
}
Explain stores explain object info
func (*Explain) ExecuteAllPlans ¶ added in v1.0.1
ExecuteAllPlans calls queryPlanner and cardinality
func (*Explain) PrintExplainResults ¶ added in v1.0.1
PrintExplainResults prints explain results
func (*Explain) SetVerbose ¶ added in v1.0.1
SetVerbose sets verbosity
type ExplainCommand ¶ added in v1.0.1
type ExplainCommand struct { Collection string `bson:"find"` Filter bson.D `bson:"filter"` Sort bson.D `bson:"sort,omitempty"` Hint bson.D `bson:"hint,omitempty"` Group string `bson:"group,omitempty"` }
ExplainCommand stores explain document
type ExplainSummary ¶ added in v1.0.1
type ExplainSummary struct { ShardName string `json:"shardName"` ExecutionStats StageStats `json:"executionStats"` AllPlansExecutionStats []StageStats `json:"allPlansExecution"` }
ExplainSummary stores explain summary
type IndexScore ¶ added in v1.0.1
type IndexScore struct { Index gox.OrderedMap `json:"index"` Score float64 `json:"score"` }
IndexScore keeps index score
type IndexStatsDoc ¶
type IndexStatsDoc struct { Fields []string Key string `json:"key"` Name string `json:"name"` EffectiveKey string `json:"effectiveKey"` IsDupped bool `json:"dupped"` IsShardKey bool `json:"shardKey"` TotalOps int `json:"totalOps"` Usage []UsageDoc `json:"stats"` }
IndexStatsDoc -
type IndexesReader ¶ added in v1.1.2
type IndexesReader struct {
// contains filtered or unexported fields
}
IndexesReader holder indexes reader struct
func NewIndexesReader ¶ added in v1.1.2
func NewIndexesReader(client *mongo.Client) *IndexesReader
NewIndexesReader establish seeding parameters
func (*IndexesReader) GetIndexes ¶ added in v1.1.2
func (ir *IndexesReader) GetIndexes() (bson.M, error)
GetIndexes list all indexes of collections of databases
func (*IndexesReader) GetIndexesFromCollection ¶ added in v1.1.2
func (ir *IndexesReader) GetIndexesFromCollection(collection *mongo.Collection) []IndexStatsDoc
GetIndexesFromCollection gets indexes from a collection
func (*IndexesReader) GetIndexesFromDB ¶ added in v1.1.2
func (ir *IndexesReader) GetIndexesFromDB(dbName string) (bson.M, error)
GetIndexesFromDB list all indexes of collections of a database
func (*IndexesReader) Print ¶ added in v1.1.2
func (ir *IndexesReader) Print(indexesMap bson.M)
Print prints indexes
func (*IndexesReader) SetDBName ¶ added in v1.1.2
func (ir *IndexesReader) SetDBName(dbName string)
SetDBName sets verbose level
func (*IndexesReader) SetVerbose ¶ added in v1.1.2
func (ir *IndexesReader) SetVerbose(verbose bool)
SetVerbose sets verbose level
type LogInfo ¶ added in v1.0.1
type LogInfo struct { OpsPatterns []OpPerformanceDoc OutputFilename string SlowOps []SlowOps // contains filtered or unexported fields }
LogInfo keeps loginfo struct
func (*LogInfo) SetCollscan ¶ added in v1.0.1
SetCollscan -
func (*LogInfo) SetRegexPattern ¶ added in v1.0.1
SetRegexPattern sets regex patthen
func (*LogInfo) SetVerbose ¶ added in v1.0.1
SetVerbose -
type MongoCluster ¶ added in v1.1.0
type MongoCluster struct {
// contains filtered or unexported fields
}
MongoCluster holds mongo cluster info
func NewMongoCluster ¶ added in v1.1.0
func NewMongoCluster(client *mongo.Client) *MongoCluster
NewMongoCluster server info struct
func (*MongoCluster) GetClusterInfo ¶ added in v1.1.0
func (mc *MongoCluster) GetClusterInfo() (bson.M, error)
GetClusterInfo -
func (*MongoCluster) SetDoodleMode ¶ added in v1.4.2
func (mc *MongoCluster) SetDoodleMode(doodle bool)
SetDoodleMode sets doodle
func (*MongoCluster) SetFilename ¶ added in v1.4.2
func (mc *MongoCluster) SetFilename(filename string)
SetFilename sets output file name
func (*MongoCluster) SetHost ¶ added in v1.4.2
func (mc *MongoCluster) SetHost(host string)
SetHost sets hostname from connection string
func (*MongoCluster) SetVerbose ¶ added in v1.1.0
func (mc *MongoCluster) SetVerbose(verbose bool)
SetVerbose -
type OpPerformanceDoc ¶ added in v1.1.3
type OpPerformanceDoc struct { Command string // count, delete, find, remove, and update Count int // number of ops Filter string // query pattern MaxMilli int // max millisecond Namespace string // database.collectin Scan string // COLLSCAN TotalMilli int // total milliseconds Index string // index used }
OpPerformanceDoc stores performance data
type OplogStats ¶ added in v1.0.1
OplogStats stores oplog stats
type QueryExplainer ¶ added in v1.0.1
type QueryExplainer struct { ExplainCmd ExplainCommand `bson:"explain"` NameSpace string // contains filtered or unexported fields }
QueryExplainer stores query analyzer info
func NewQueryExplainer ¶ added in v1.0.1
func NewQueryExplainer(client *mongo.Client) *QueryExplainer
NewQueryExplainer returns QueryExplainer
func (*QueryExplainer) Explain ¶ added in v1.0.1
func (qe *QueryExplainer) Explain() (ExplainSummary, error)
Explain explains query plans
func (*QueryExplainer) GetExplainDetails ¶ added in v1.0.1
func (qe *QueryExplainer) GetExplainDetails(doc bson.M) ExplainSummary
GetExplainDetails returns summary from a doc
func (*QueryExplainer) GetFilter ¶ added in v1.0.1
func (qe *QueryExplainer) GetFilter() bson.D
GetFilter sets verbosity
func (*QueryExplainer) GetIndexesScores ¶ added in v1.0.1
func (qe *QueryExplainer) GetIndexesScores(keys []string) []IndexScore
GetIndexesScores returns a list of indexes scores
func (*QueryExplainer) GetSummary ¶ added in v1.0.1
func (qe *QueryExplainer) GetSummary(summary ExplainSummary) string
GetSummary get summary of explain executionStats
func (*QueryExplainer) ReadQueryShape ¶ added in v1.0.1
func (qe *QueryExplainer) ReadQueryShape(buffer []byte) error
ReadQueryShape parses filter map
func (*QueryExplainer) SetVerbose ¶ added in v1.0.1
func (qe *QueryExplainer) SetVerbose(verbose bool)
SetVerbose sets verbosity
type ServerInfo ¶
type ServerInfo struct { Cluster string `json:"cluster" bson:"cluster"` Host string `json:"host" bson:"host"` Process string `json:"process" bson:"process"` Version string `json:"version" bson:"version"` Sharding bson.M `json:"sharding" bson:"sharding"` Repl bson.M `json:"repl" bson:"repl"` StorageSize bson.M }
ServerInfo constains server info from db.serverStatus()
func GetServerInfo ¶
func GetServerInfo(client *mongo.Client) (ServerInfo, error)
GetServerInfo returns ServerInfo from db.serverStatus()
type ShardDoc ¶
type ShardDoc struct { ID string `json:"_id" bson:"_id"` Host string `json:"host" bson:"host"` State int `json:"state" bson:"state"` }
ShardDoc information
type ShardList ¶
type ShardList struct { Shards []ShardDoc `json:"shards" bson:"shards"` OK int `json:"ok" bson:"ok"` }
ShardList -
type StageStats ¶ added in v1.0.1
type StageStats struct { Level int Score float64 `json:"Score"` Stage string `json:"stage"` Filter *gox.OrderedMap `json:"filter"` KeyPattern *gox.OrderedMap `json:"keyPattern"` Advanced int32 `json:"advanced"` Works int32 `json:"works"` ExecTimeMillisEst int32 `json:"executionTimeMillisEstimate"` TotalKeysExamined int32 `json:"totalKeysExamined"` TotalDocsExamined int32 `json:"totalDocsExamined"` InputStages []StageStats `json:"inputStages"` }
StageStats stores stats for each stage
type UsageDoc ¶
type UsageDoc struct { Host string `json:"host"` Accesses AccessesDoc `json:"accesses"` }
UsageDoc -