2015-07-07 01:20:11 +00:00
|
|
|
/***
|
|
|
|
The code contained here came from https://github.com/mongodb/mongo-tools/blob/master/mongostat/stat_types.go
|
|
|
|
and contains modifications so that no other dependency from that project is needed. Other modifications included
|
2020-05-14 07:41:58 +00:00
|
|
|
removing unnecessary code specific to formatting the output and determine the current state of the database. It
|
2015-07-07 01:20:11 +00:00
|
|
|
is licensed under Apache Version 2.0, http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
***/
|
|
|
|
|
|
|
|
package mongodb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
MongosProcess = "mongos"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Flags to determine cases when to activate/deactivate columns for output.
|
|
|
|
const (
|
|
|
|
Always = 1 << iota // always activate the column
|
|
|
|
Discover // only active when mongostat is in discover mode
|
|
|
|
Repl // only active if one of the nodes being monitored is in a replset
|
|
|
|
Locks // only active if node is capable of calculating lock info
|
|
|
|
AllOnly // only active if mongostat was run with --all option
|
|
|
|
MMAPOnly // only active if node has mmap-specific fields
|
|
|
|
WTOnly // only active if node has wiredtiger-specific fields
|
|
|
|
)
|
|
|
|
|
2016-04-19 23:16:22 +00:00
|
|
|
type MongoStatus struct {
|
|
|
|
SampleTime time.Time
|
|
|
|
ServerStatus *ServerStatus
|
|
|
|
ReplSetStatus *ReplSetStatus
|
2016-04-29 16:40:26 +00:00
|
|
|
ClusterStatus *ClusterStatus
|
2016-07-19 11:47:12 +00:00
|
|
|
DbStats *DbStats
|
2019-07-31 04:36:19 +00:00
|
|
|
ColStats *ColStats
|
2018-02-20 21:55:56 +00:00
|
|
|
ShardStats *ShardStats
|
2018-04-06 23:34:47 +00:00
|
|
|
OplogStats *OplogStats
|
2016-04-19 23:16:22 +00:00
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
type ServerStatus struct {
|
|
|
|
Host string `bson:"host"`
|
|
|
|
Version string `bson:"version"`
|
|
|
|
Process string `bson:"process"`
|
|
|
|
Pid int64 `bson:"pid"`
|
|
|
|
Uptime int64 `bson:"uptime"`
|
|
|
|
UptimeMillis int64 `bson:"uptimeMillis"`
|
|
|
|
UptimeEstimate int64 `bson:"uptimeEstimate"`
|
|
|
|
LocalTime time.Time `bson:"localTime"`
|
2020-05-12 18:31:54 +00:00
|
|
|
Asserts *AssertsStats `bson:"asserts"`
|
2015-07-07 01:20:11 +00:00
|
|
|
BackgroundFlushing *FlushStats `bson:"backgroundFlushing"`
|
|
|
|
ExtraInfo *ExtraInfo `bson:"extra_info"`
|
|
|
|
Connections *ConnectionStats `bson:"connections"`
|
|
|
|
Dur *DurStats `bson:"dur"`
|
|
|
|
GlobalLock *GlobalLockStats `bson:"globalLock"`
|
|
|
|
Locks map[string]LockStats `bson:"locks,omitempty"`
|
|
|
|
Network *NetworkStats `bson:"network"`
|
|
|
|
Opcounters *OpcountStats `bson:"opcounters"`
|
|
|
|
OpcountersRepl *OpcountStats `bson:"opcountersRepl"`
|
2020-01-09 02:18:12 +00:00
|
|
|
OpLatencies *OpLatenciesStats `bson:"opLatencies"`
|
2015-07-07 01:20:11 +00:00
|
|
|
RecordStats *DBRecordStats `bson:"recordStats"`
|
|
|
|
Mem *MemStats `bson:"mem"`
|
|
|
|
Repl *ReplStatus `bson:"repl"`
|
|
|
|
ShardCursorType map[string]interface{} `bson:"shardCursorType"`
|
|
|
|
StorageEngine map[string]string `bson:"storageEngine"`
|
|
|
|
WiredTiger *WiredTiger `bson:"wiredTiger"`
|
2016-04-19 18:55:03 +00:00
|
|
|
Metrics *MetricsStats `bson:"metrics"`
|
2020-05-12 18:31:54 +00:00
|
|
|
TCMallocStats *TCMallocStats `bson:"tcmalloc"`
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 11:47:12 +00:00
|
|
|
// DbStats stores stats from all dbs
|
|
|
|
type DbStats struct {
|
|
|
|
Dbs []Db
|
|
|
|
}
|
|
|
|
|
|
|
|
// Db represent a single DB
|
|
|
|
type Db struct {
|
|
|
|
Name string
|
|
|
|
DbStatsData *DbStatsData
|
|
|
|
}
|
|
|
|
|
|
|
|
// DbStatsData stores stats from a db
|
|
|
|
type DbStatsData struct {
|
|
|
|
Db string `bson:"db"`
|
|
|
|
Collections int64 `bson:"collections"`
|
|
|
|
Objects int64 `bson:"objects"`
|
|
|
|
AvgObjSize float64 `bson:"avgObjSize"`
|
|
|
|
DataSize int64 `bson:"dataSize"`
|
|
|
|
StorageSize int64 `bson:"storageSize"`
|
|
|
|
NumExtents int64 `bson:"numExtents"`
|
|
|
|
Indexes int64 `bson:"indexes"`
|
|
|
|
IndexSize int64 `bson:"indexSize"`
|
|
|
|
Ok int64 `bson:"ok"`
|
|
|
|
GleStats interface{} `bson:"gleStats"`
|
|
|
|
}
|
|
|
|
|
2019-07-31 04:36:19 +00:00
|
|
|
type ColStats struct {
|
|
|
|
Collections []Collection
|
|
|
|
}
|
|
|
|
|
|
|
|
type Collection struct {
|
|
|
|
Name string
|
|
|
|
DbName string
|
|
|
|
ColStatsData *ColStatsData
|
|
|
|
}
|
|
|
|
|
|
|
|
type ColStatsData struct {
|
|
|
|
Collection string `bson:"ns"`
|
|
|
|
Count int64 `bson:"count"`
|
|
|
|
Size int64 `bson:"size"`
|
|
|
|
AvgObjSize float64 `bson:"avgObjSize"`
|
|
|
|
StorageSize int64 `bson:"storageSize"`
|
|
|
|
TotalIndexSize int64 `bson:"totalIndexSize"`
|
|
|
|
Ok int64 `bson:"ok"`
|
|
|
|
}
|
|
|
|
|
2016-04-29 16:40:26 +00:00
|
|
|
// ClusterStatus stores information related to the whole cluster
|
|
|
|
type ClusterStatus struct {
|
|
|
|
JumboChunksCount int64
|
|
|
|
}
|
|
|
|
|
2016-04-19 23:16:22 +00:00
|
|
|
// ReplSetStatus stores information from replSetGetStatus
|
|
|
|
type ReplSetStatus struct {
|
|
|
|
Members []ReplSetMember `bson:"members"`
|
|
|
|
MyState int64 `bson:"myState"`
|
|
|
|
}
|
|
|
|
|
2018-04-06 23:34:47 +00:00
|
|
|
// OplogStatus stores information from getReplicationInfo
|
|
|
|
type OplogStats struct {
|
|
|
|
TimeDiff int64
|
|
|
|
}
|
|
|
|
|
2016-04-19 23:16:22 +00:00
|
|
|
// ReplSetMember stores information related to a replica set member
|
|
|
|
type ReplSetMember struct {
|
2016-12-16 17:29:04 +00:00
|
|
|
Name string `bson:"name"`
|
|
|
|
State int64 `bson:"state"`
|
|
|
|
StateStr string `bson:"stateStr"`
|
|
|
|
OptimeDate time.Time `bson:"optimeDate"`
|
2016-04-19 23:16:22 +00:00
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
// WiredTiger stores information related to the WiredTiger storage engine.
|
|
|
|
type WiredTiger struct {
|
|
|
|
Transaction TransactionStats `bson:"transaction"`
|
|
|
|
Concurrent ConcurrentTransactions `bson:"concurrentTransactions"`
|
|
|
|
Cache CacheStats `bson:"cache"`
|
|
|
|
}
|
|
|
|
|
2018-02-20 21:55:56 +00:00
|
|
|
// ShardStats stores information from shardConnPoolStats.
|
|
|
|
type ShardStats struct {
|
2018-04-11 00:10:29 +00:00
|
|
|
ShardStatsData `bson:",inline"`
|
|
|
|
Hosts map[string]ShardHostStatsData `bson:"hosts"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ShardStatsData is the total Shard Stats from shardConnPoolStats database command.
|
|
|
|
type ShardStatsData struct {
|
2018-02-20 21:55:56 +00:00
|
|
|
TotalInUse int64 `bson:"totalInUse"`
|
|
|
|
TotalAvailable int64 `bson:"totalAvailable"`
|
|
|
|
TotalCreated int64 `bson:"totalCreated"`
|
|
|
|
TotalRefreshing int64 `bson:"totalRefreshing"`
|
|
|
|
}
|
|
|
|
|
2018-04-11 00:10:29 +00:00
|
|
|
// ShardHostStatsData is the host-specific stats
|
|
|
|
// from shardConnPoolStats database command.
|
|
|
|
type ShardHostStatsData struct {
|
|
|
|
InUse int64 `bson:"inUse"`
|
|
|
|
Available int64 `bson:"available"`
|
|
|
|
Created int64 `bson:"created"`
|
|
|
|
Refreshing int64 `bson:"refreshing"`
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
type ConcurrentTransactions struct {
|
|
|
|
Write ConcurrentTransStats `bson:"write"`
|
|
|
|
Read ConcurrentTransStats `bson:"read"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ConcurrentTransStats struct {
|
2020-03-23 23:14:56 +00:00
|
|
|
Out int64 `bson:"out"`
|
|
|
|
Available int64 `bson:"available"`
|
|
|
|
TotalTickets int64 `bson:"totalTickets"`
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:31:54 +00:00
|
|
|
// AssertsStats stores information related to assertions raised since the MongoDB process started
|
|
|
|
type AssertsStats struct {
|
|
|
|
Regular int64 `bson:"regular"`
|
|
|
|
Warning int64 `bson:"warning"`
|
|
|
|
Msg int64 `bson:"msg"`
|
|
|
|
User int64 `bson:"user"`
|
|
|
|
Rollovers int64 `bson:"rollovers"`
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
// CacheStats stores cache statistics for WiredTiger.
|
|
|
|
type CacheStats struct {
|
2017-10-03 00:38:51 +00:00
|
|
|
TrackedDirtyBytes int64 `bson:"tracked dirty bytes in the cache"`
|
|
|
|
CurrentCachedBytes int64 `bson:"bytes currently in the cache"`
|
|
|
|
MaxBytesConfigured int64 `bson:"maximum bytes configured"`
|
|
|
|
AppThreadsPageReadCount int64 `bson:"application threads page read from disk to cache count"`
|
|
|
|
AppThreadsPageReadTime int64 `bson:"application threads page read from disk to cache time (usecs)"`
|
|
|
|
AppThreadsPageWriteCount int64 `bson:"application threads page write from cache to disk count"`
|
|
|
|
AppThreadsPageWriteTime int64 `bson:"application threads page write from cache to disk time (usecs)"`
|
|
|
|
BytesWrittenFrom int64 `bson:"bytes written from cache"`
|
|
|
|
BytesReadInto int64 `bson:"bytes read into cache"`
|
|
|
|
PagesEvictedByAppThread int64 `bson:"pages evicted by application threads"`
|
|
|
|
PagesQueuedForEviction int64 `bson:"pages queued for eviction"`
|
2019-01-15 19:31:52 +00:00
|
|
|
PagesReadIntoCache int64 `bson:"pages read into cache"`
|
|
|
|
PagesRequestedFromCache int64 `bson:"pages requested from the cache"`
|
2017-10-03 00:38:51 +00:00
|
|
|
ServerEvictingPages int64 `bson:"eviction server evicting pages"`
|
|
|
|
WorkerThreadEvictingPages int64 `bson:"eviction worker thread evicting pages"`
|
2019-01-15 19:31:52 +00:00
|
|
|
InternalPagesEvicted int64 `bson:"internal pages evicted"`
|
|
|
|
ModifiedPagesEvicted int64 `bson:"modified pages evicted"`
|
|
|
|
UnmodifiedPagesEvicted int64 `bson:"unmodified pages evicted"`
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TransactionStats stores transaction checkpoints in WiredTiger.
|
|
|
|
type TransactionStats struct {
|
2019-01-15 19:31:52 +00:00
|
|
|
TransCheckpointsTotalTimeMsecs int64 `bson:"transaction checkpoint total time (msecs)"`
|
|
|
|
TransCheckpoints int64 `bson:"transaction checkpoints"`
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReplStatus stores data related to replica sets.
|
|
|
|
type ReplStatus struct {
|
|
|
|
SetName interface{} `bson:"setName"`
|
|
|
|
IsMaster interface{} `bson:"ismaster"`
|
|
|
|
Secondary interface{} `bson:"secondary"`
|
|
|
|
IsReplicaSet interface{} `bson:"isreplicaset"`
|
|
|
|
ArbiterOnly interface{} `bson:"arbiterOnly"`
|
|
|
|
Hosts []string `bson:"hosts"`
|
|
|
|
Passives []string `bson:"passives"`
|
|
|
|
Me string `bson:"me"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// DBRecordStats stores data related to memory operations across databases.
|
|
|
|
type DBRecordStats struct {
|
|
|
|
AccessesNotInMemory int64 `bson:"accessesNotInMemory"`
|
|
|
|
PageFaultExceptionsThrown int64 `bson:"pageFaultExceptionsThrown"`
|
|
|
|
DBRecordAccesses map[string]RecordAccesses `bson:",inline"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// RecordAccesses stores data related to memory operations scoped to a database.
|
|
|
|
type RecordAccesses struct {
|
|
|
|
AccessesNotInMemory int64 `bson:"accessesNotInMemory"`
|
|
|
|
PageFaultExceptionsThrown int64 `bson:"pageFaultExceptionsThrown"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// MemStats stores data related to memory statistics.
|
|
|
|
type MemStats struct {
|
|
|
|
Bits int64 `bson:"bits"`
|
|
|
|
Resident int64 `bson:"resident"`
|
|
|
|
Virtual int64 `bson:"virtual"`
|
|
|
|
Supported interface{} `bson:"supported"`
|
|
|
|
Mapped int64 `bson:"mapped"`
|
|
|
|
MappedWithJournal int64 `bson:"mappedWithJournal"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// FlushStats stores information about memory flushes.
|
|
|
|
type FlushStats struct {
|
|
|
|
Flushes int64 `bson:"flushes"`
|
|
|
|
TotalMs int64 `bson:"total_ms"`
|
|
|
|
AverageMs float64 `bson:"average_ms"`
|
|
|
|
LastMs int64 `bson:"last_ms"`
|
|
|
|
LastFinished time.Time `bson:"last_finished"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConnectionStats stores information related to incoming database connections.
|
|
|
|
type ConnectionStats struct {
|
|
|
|
Current int64 `bson:"current"`
|
|
|
|
Available int64 `bson:"available"`
|
2019-11-12 19:45:09 +00:00
|
|
|
TotalCreated int64 `bson:"totalCreated"`
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DurTiming stores information related to journaling.
|
|
|
|
type DurTiming struct {
|
|
|
|
Dt int64 `bson:"dt"`
|
|
|
|
PrepLogBuffer int64 `bson:"prepLogBuffer"`
|
|
|
|
WriteToJournal int64 `bson:"writeToJournal"`
|
|
|
|
WriteToDataFiles int64 `bson:"writeToDataFiles"`
|
|
|
|
RemapPrivateView int64 `bson:"remapPrivateView"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// DurStats stores information related to journaling statistics.
|
|
|
|
type DurStats struct {
|
|
|
|
Commits int64 `bson:"commits"`
|
|
|
|
JournaledMB int64 `bson:"journaledMB"`
|
|
|
|
WriteToDataFilesMB int64 `bson:"writeToDataFilesMB"`
|
|
|
|
Compression int64 `bson:"compression"`
|
|
|
|
CommitsInWriteLock int64 `bson:"commitsInWriteLock"`
|
|
|
|
EarlyCommits int64 `bson:"earlyCommits"`
|
|
|
|
TimeMs DurTiming
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueueStats stores the number of queued read/write operations.
|
|
|
|
type QueueStats struct {
|
|
|
|
Total int64 `bson:"total"`
|
|
|
|
Readers int64 `bson:"readers"`
|
|
|
|
Writers int64 `bson:"writers"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClientStats stores the number of active read/write operations.
|
|
|
|
type ClientStats struct {
|
|
|
|
Total int64 `bson:"total"`
|
|
|
|
Readers int64 `bson:"readers"`
|
|
|
|
Writers int64 `bson:"writers"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GlobalLockStats stores information related locks in the MMAP storage engine.
|
|
|
|
type GlobalLockStats struct {
|
|
|
|
TotalTime int64 `bson:"totalTime"`
|
|
|
|
LockTime int64 `bson:"lockTime"`
|
|
|
|
CurrentQueue *QueueStats `bson:"currentQueue"`
|
|
|
|
ActiveClients *ClientStats `bson:"activeClients"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NetworkStats stores information related to network traffic.
|
|
|
|
type NetworkStats struct {
|
|
|
|
BytesIn int64 `bson:"bytesIn"`
|
|
|
|
BytesOut int64 `bson:"bytesOut"`
|
|
|
|
NumRequests int64 `bson:"numRequests"`
|
|
|
|
}
|
|
|
|
|
2020-05-14 07:41:58 +00:00
|
|
|
// OpcountStats stores information related to commands and basic CRUD operations.
|
2015-07-07 01:20:11 +00:00
|
|
|
type OpcountStats struct {
|
|
|
|
Insert int64 `bson:"insert"`
|
|
|
|
Query int64 `bson:"query"`
|
|
|
|
Update int64 `bson:"update"`
|
|
|
|
Delete int64 `bson:"delete"`
|
|
|
|
GetMore int64 `bson:"getmore"`
|
|
|
|
Command int64 `bson:"command"`
|
|
|
|
}
|
|
|
|
|
2020-01-09 02:18:12 +00:00
|
|
|
// OpLatenciesStats stores information related to operation latencies for the database as a whole
|
|
|
|
type OpLatenciesStats struct {
|
|
|
|
Reads *LatencyStats `bson:"reads"`
|
|
|
|
Writes *LatencyStats `bson:"writes"`
|
|
|
|
Commands *LatencyStats `bson:"commands"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// LatencyStats lists total latency in microseconds and count of operations, enabling you to obtain an average
|
|
|
|
type LatencyStats struct {
|
|
|
|
Latency int64 `bson:"latency"`
|
|
|
|
Ops int64 `bson:"ops"`
|
|
|
|
}
|
|
|
|
|
2016-04-19 18:55:03 +00:00
|
|
|
// MetricsStats stores information related to metrics
|
|
|
|
type MetricsStats struct {
|
2020-05-12 18:31:54 +00:00
|
|
|
TTL *TTLStats `bson:"ttl"`
|
|
|
|
Cursor *CursorStats `bson:"cursor"`
|
|
|
|
Document *DocumentStats `bson:"document"`
|
|
|
|
Commands *CommandsStats `bson:"commands"`
|
|
|
|
Operation *OperationStats `bson:"operation"`
|
|
|
|
QueryExecutor *QueryExecutorStats `bson:"queryExecutor"`
|
|
|
|
Repl *ReplStats `bson:"repl"`
|
|
|
|
Storage *StorageStats `bson:"storage"`
|
2016-04-19 18:55:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TTLStats stores information related to documents with a ttl index.
|
|
|
|
type TTLStats struct {
|
|
|
|
DeletedDocuments int64 `bson:"deletedDocuments"`
|
|
|
|
Passes int64 `bson:"passes"`
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:00:24 +00:00
|
|
|
// CursorStats stores information related to cursor metrics.
|
|
|
|
type CursorStats struct {
|
|
|
|
TimedOut int64 `bson:"timedOut"`
|
|
|
|
Open *OpenCursorStats `bson:"open"`
|
|
|
|
}
|
|
|
|
|
2018-07-03 21:09:20 +00:00
|
|
|
// DocumentStats stores information related to document metrics.
|
|
|
|
type DocumentStats struct {
|
|
|
|
Deleted int64 `bson:"deleted"`
|
|
|
|
Inserted int64 `bson:"inserted"`
|
|
|
|
Returned int64 `bson:"returned"`
|
|
|
|
Updated int64 `bson:"updated"`
|
|
|
|
}
|
|
|
|
|
2020-03-23 19:33:10 +00:00
|
|
|
// CommandsStats stores information related to document metrics.
|
|
|
|
type CommandsStats struct {
|
2020-05-12 18:31:54 +00:00
|
|
|
Aggregate *CommandsStatsValue `bson:"aggregate"`
|
|
|
|
Count *CommandsStatsValue `bson:"count"`
|
2020-03-23 19:33:10 +00:00
|
|
|
Delete *CommandsStatsValue `bson:"delete"`
|
2020-05-12 18:31:54 +00:00
|
|
|
Distinct *CommandsStatsValue `bson:"distinct"`
|
2020-03-23 19:33:10 +00:00
|
|
|
Find *CommandsStatsValue `bson:"find"`
|
|
|
|
FindAndModify *CommandsStatsValue `bson:"findAndModify"`
|
|
|
|
GetMore *CommandsStatsValue `bson:"getMore"`
|
|
|
|
Insert *CommandsStatsValue `bson:"insert"`
|
|
|
|
Update *CommandsStatsValue `bson:"update"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CommandsStatsValue struct {
|
|
|
|
Failed int64 `bson:"failed"`
|
|
|
|
Total int64 `bson:"total"`
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:00:24 +00:00
|
|
|
// OpenCursorStats stores information related to open cursor metrics
|
|
|
|
type OpenCursorStats struct {
|
|
|
|
NoTimeout int64 `bson:"noTimeout"`
|
|
|
|
Pinned int64 `bson:"pinned"`
|
|
|
|
Total int64 `bson:"total"`
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:31:54 +00:00
|
|
|
// OperationStats stores information related to query operations
|
|
|
|
// using special operation types
|
|
|
|
type OperationStats struct {
|
|
|
|
ScanAndOrder int64 `bson:"scanAndOrder"`
|
|
|
|
WriteConflicts int64 `bson:"writeConflicts"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryExecutorStats stores information related to query execution
|
|
|
|
type QueryExecutorStats struct {
|
|
|
|
Scanned int64 `bson:"scanned"`
|
|
|
|
ScannedObjects int64 `bson:"scannedObjects"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReplStats stores information related to replication process
|
|
|
|
type ReplStats struct {
|
|
|
|
Apply *ReplApplyStats `bson:"apply"`
|
|
|
|
Buffer *ReplBufferStats `bson:"buffer"`
|
|
|
|
Executor *ReplExecutorStats `bson:"executor,omitempty"`
|
|
|
|
Network *ReplNetworkStats `bson:"network"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReplApplyStats stores information related to oplog application process
|
|
|
|
type ReplApplyStats struct {
|
|
|
|
Batches *BasicStats `bson:"batches"`
|
|
|
|
Ops int64 `bson:"ops"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReplBufferStats stores information related to oplog buffer
|
|
|
|
type ReplBufferStats struct {
|
|
|
|
Count int64 `bson:"count"`
|
|
|
|
SizeBytes int64 `bson:"sizeBytes"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReplExecutorStats stores information related to replication executor
|
|
|
|
type ReplExecutorStats struct {
|
|
|
|
Pool map[string]int64 `bson:"pool"`
|
|
|
|
Queues map[string]int64 `bson:"queues"`
|
|
|
|
UnsignaledEvents int64 `bson:"unsignaledEvents"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReplNetworkStats stores information related to network usage by replication process
|
|
|
|
type ReplNetworkStats struct {
|
|
|
|
Bytes int64 `bson:"bytes"`
|
|
|
|
GetMores *BasicStats `bson:"getmores"`
|
|
|
|
Ops int64 `bson:"ops"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// BasicStats stores information about an operation
|
|
|
|
type BasicStats struct {
|
|
|
|
Num int64 `bson:"num"`
|
|
|
|
TotalMillis int64 `bson:"totalMillis"`
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
// ReadWriteLockTimes stores time spent holding read/write locks.
|
|
|
|
type ReadWriteLockTimes struct {
|
|
|
|
Read int64 `bson:"R"`
|
|
|
|
Write int64 `bson:"W"`
|
|
|
|
ReadLower int64 `bson:"r"`
|
|
|
|
WriteLower int64 `bson:"w"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// LockStats stores information related to time spent acquiring/holding locks
|
|
|
|
// for a given database.
|
|
|
|
type LockStats struct {
|
|
|
|
TimeLockedMicros ReadWriteLockTimes `bson:"timeLockedMicros"`
|
|
|
|
TimeAcquiringMicros ReadWriteLockTimes `bson:"timeAcquiringMicros"`
|
|
|
|
|
2015-10-27 00:46:40 +00:00
|
|
|
// AcquireCount and AcquireWaitCount are new fields of the lock stats only populated on 3.0 or newer.
|
2015-07-07 01:20:11 +00:00
|
|
|
// Typed as a pointer so that if it is nil, mongostat can assume the field is not populated
|
|
|
|
// with real namespace data.
|
2015-10-27 00:46:40 +00:00
|
|
|
AcquireCount *ReadWriteLockTimes `bson:"acquireCount,omitempty"`
|
|
|
|
AcquireWaitCount *ReadWriteLockTimes `bson:"acquireWaitCount,omitempty"`
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExtraInfo stores additional platform specific information.
|
|
|
|
type ExtraInfo struct {
|
|
|
|
PageFaults *int64 `bson:"page_faults"`
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:31:54 +00:00
|
|
|
// TCMallocStats stores information related to TCMalloc memory allocator metrics
|
|
|
|
type TCMallocStats struct {
|
|
|
|
Generic *GenericTCMAllocStats `bson:"generic"`
|
|
|
|
TCMalloc *DetailedTCMallocStats `bson:"tcmalloc"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GenericTCMAllocStats stores generic TCMalloc memory allocator metrics
|
|
|
|
type GenericTCMAllocStats struct {
|
|
|
|
CurrentAllocatedBytes int64 `bson:"current_allocated_bytes"`
|
|
|
|
HeapSize int64 `bson:"heap_size"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// DetailedTCMallocStats stores detailed TCMalloc memory allocator metrics
|
|
|
|
type DetailedTCMallocStats struct {
|
|
|
|
PageheapFreeBytes int64 `bson:"pageheap_free_bytes"`
|
|
|
|
PageheapUnmappedBytes int64 `bson:"pageheap_unmapped_bytes"`
|
|
|
|
MaxTotalThreadCacheBytes int64 `bson:"max_total_thread_cache_bytes"`
|
|
|
|
CurrentTotalThreadCacheBytes int64 `bson:"current_total_thread_cache_bytes"`
|
|
|
|
TotalFreeBytes int64 `bson:"total_free_bytes"`
|
|
|
|
CentralCacheFreeBytes int64 `bson:"central_cache_free_bytes"`
|
|
|
|
TransferCacheFreeBytes int64 `bson:"transfer_cache_free_bytes"`
|
|
|
|
ThreadCacheFreeBytes int64 `bson:"thread_cache_free_bytes"`
|
|
|
|
PageheapComittedBytes int64 `bson:"pageheap_committed_bytes"`
|
|
|
|
PageheapScavengeCount int64 `bson:"pageheap_scavenge_count"`
|
|
|
|
PageheapCommitCount int64 `bson:"pageheap_commit_count"`
|
|
|
|
PageheapTotalCommitBytes int64 `bson:"pageheap_total_commit_bytes"`
|
|
|
|
PageheapDecommitCount int64 `bson:"pageheap_decommit_count"`
|
|
|
|
PageheapTotalDecommitBytes int64 `bson:"pageheap_total_decommit_bytes"`
|
|
|
|
PageheapReserveCount int64 `bson:"pageheap_reserve_count"`
|
|
|
|
PageheapTotalReserveBytes int64 `bson:"pageheap_total_reserve_bytes"`
|
|
|
|
SpinLockTotalDelayNanos int64 `bson:"spinlock_total_delay_ns"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageStats stores information related to record allocations
|
|
|
|
type StorageStats struct {
|
|
|
|
FreelistSearchBucketExhausted int64 `bson:"freelist.search.bucketExhausted"`
|
|
|
|
FreelistSearchRequests int64 `bson:"freelist.search.requests"`
|
|
|
|
FreelistSearchScanned int64 `bson:"freelist.search.scanned"`
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
// StatHeader describes a single column for mongostat's terminal output,
|
|
|
|
// its formatting, and in which modes it should be displayed.
|
|
|
|
type StatHeader struct {
|
|
|
|
// The text to appear in the column's header cell
|
|
|
|
HeaderText string
|
|
|
|
|
|
|
|
// Bitmask containing flags to determine if this header is active or not
|
|
|
|
ActivateFlags int
|
|
|
|
}
|
|
|
|
|
|
|
|
// StatHeaders are the complete set of data metrics supported by mongostat.
|
|
|
|
var StatHeaders = []StatHeader{
|
|
|
|
{"", Always}, // placeholder for hostname column (blank header text)
|
|
|
|
{"insert", Always},
|
|
|
|
{"query", Always},
|
|
|
|
{"update", Always},
|
|
|
|
{"delete", Always},
|
|
|
|
{"getmore", Always},
|
|
|
|
{"command", Always},
|
|
|
|
{"% dirty", WTOnly},
|
|
|
|
{"% used", WTOnly},
|
|
|
|
{"flushes", Always},
|
|
|
|
{"mapped", MMAPOnly},
|
|
|
|
{"vsize", Always},
|
|
|
|
{"res", Always},
|
|
|
|
{"non-mapped", MMAPOnly | AllOnly},
|
|
|
|
{"faults", MMAPOnly},
|
2015-10-27 00:46:40 +00:00
|
|
|
{"lr|lw %", MMAPOnly | AllOnly},
|
|
|
|
{"lrt|lwt", MMAPOnly | AllOnly},
|
2015-07-07 01:20:11 +00:00
|
|
|
{" locked db", Locks},
|
|
|
|
{"qr|qw", Always},
|
|
|
|
{"ar|aw", Always},
|
|
|
|
{"netIn", Always},
|
|
|
|
{"netOut", Always},
|
|
|
|
{"conn", Always},
|
|
|
|
{"set", Repl},
|
|
|
|
{"repl", Repl},
|
|
|
|
{"time", Always},
|
|
|
|
}
|
|
|
|
|
|
|
|
// NamespacedLocks stores information on the LockStatus of namespaces.
|
|
|
|
type NamespacedLocks map[string]LockStatus
|
|
|
|
|
|
|
|
// LockUsage stores information related to a namespace's lock usage.
|
|
|
|
type LockUsage struct {
|
|
|
|
Namespace string
|
|
|
|
Reads int64
|
|
|
|
Writes int64
|
|
|
|
}
|
|
|
|
|
|
|
|
type lockUsages []LockUsage
|
|
|
|
|
|
|
|
func percentageInt64(value, outOf int64) float64 {
|
|
|
|
if value == 0 || outOf == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return 100 * (float64(value) / float64(outOf))
|
|
|
|
}
|
|
|
|
|
2015-10-27 00:46:40 +00:00
|
|
|
func averageInt64(value, outOf int64) int64 {
|
|
|
|
if value == 0 || outOf == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return value / outOf
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
func (slice lockUsages) Len() int {
|
|
|
|
return len(slice)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (slice lockUsages) Less(i, j int) bool {
|
|
|
|
return slice[i].Reads+slice[i].Writes < slice[j].Reads+slice[j].Writes
|
|
|
|
}
|
|
|
|
|
|
|
|
func (slice lockUsages) Swap(i, j int) {
|
|
|
|
slice[i], slice[j] = slice[j], slice[i]
|
|
|
|
}
|
|
|
|
|
2015-10-27 00:46:40 +00:00
|
|
|
// CollectionLockStatus stores a collection's lock statistics.
|
|
|
|
type CollectionLockStatus struct {
|
|
|
|
ReadAcquireWaitsPercentage float64
|
|
|
|
WriteAcquireWaitsPercentage float64
|
|
|
|
ReadAcquireTimeMicros int64
|
|
|
|
WriteAcquireTimeMicros int64
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
// LockStatus stores a database's lock statistics.
|
|
|
|
type LockStatus struct {
|
|
|
|
DBName string
|
|
|
|
Percentage float64
|
|
|
|
Global bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// StatLine is a wrapper for all metrics reported by mongostat for monitored hosts.
|
|
|
|
type StatLine struct {
|
|
|
|
Key string
|
|
|
|
// What storage engine is being used for the node with this stat line
|
|
|
|
StorageEngine string
|
|
|
|
|
|
|
|
Error error
|
|
|
|
IsMongos bool
|
|
|
|
Host string
|
2020-05-12 18:31:54 +00:00
|
|
|
Version string
|
2015-07-07 01:20:11 +00:00
|
|
|
|
2019-12-02 19:16:00 +00:00
|
|
|
UptimeNanos int64
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
// The time at which this StatLine was generated.
|
|
|
|
Time time.Time
|
|
|
|
|
|
|
|
// The last time at which this StatLine was printed to output.
|
|
|
|
LastPrinted time.Time
|
|
|
|
|
|
|
|
// Opcounter fields
|
2019-01-09 23:48:45 +00:00
|
|
|
Insert, InsertCnt int64
|
|
|
|
Query, QueryCnt int64
|
|
|
|
Update, UpdateCnt int64
|
|
|
|
Delete, DeleteCnt int64
|
|
|
|
GetMore, GetMoreCnt int64
|
|
|
|
Command, CommandCnt int64
|
2015-07-07 01:20:11 +00:00
|
|
|
|
2020-05-12 18:31:54 +00:00
|
|
|
// Asserts fields
|
|
|
|
Regular int64
|
|
|
|
Warning int64
|
|
|
|
Msg int64
|
|
|
|
User int64
|
|
|
|
Rollovers int64
|
|
|
|
|
2020-01-09 02:18:12 +00:00
|
|
|
// OpLatency fields
|
|
|
|
WriteOpsCnt int64
|
|
|
|
WriteLatency int64
|
|
|
|
ReadOpsCnt int64
|
|
|
|
ReadLatency int64
|
|
|
|
CommandOpsCnt int64
|
|
|
|
CommandLatency int64
|
|
|
|
|
2016-04-19 18:55:03 +00:00
|
|
|
// TTL fields
|
2019-01-09 23:48:45 +00:00
|
|
|
Passes, PassesCnt int64
|
|
|
|
DeletedDocuments, DeletedDocumentsCnt int64
|
2016-04-19 18:55:03 +00:00
|
|
|
|
2018-05-07 22:00:24 +00:00
|
|
|
// Cursor fields
|
2019-01-09 23:48:45 +00:00
|
|
|
TimedOutC, TimedOutCCnt int64
|
|
|
|
NoTimeoutC, NoTimeoutCCnt int64
|
|
|
|
PinnedC, PinnedCCnt int64
|
|
|
|
TotalC, TotalCCnt int64
|
2018-05-07 22:00:24 +00:00
|
|
|
|
2018-07-03 21:09:20 +00:00
|
|
|
// Document fields
|
|
|
|
DeletedD, InsertedD, ReturnedD, UpdatedD int64
|
|
|
|
|
2020-03-23 19:33:10 +00:00
|
|
|
//Commands fields
|
2020-05-12 18:31:54 +00:00
|
|
|
AggregateCommandTotal, AggregateCommandFailed int64
|
|
|
|
CountCommandTotal, CountCommandFailed int64
|
2020-03-23 19:33:10 +00:00
|
|
|
DeleteCommandTotal, DeleteCommandFailed int64
|
2020-05-12 18:31:54 +00:00
|
|
|
DistinctCommandTotal, DistinctCommandFailed int64
|
2020-03-23 19:33:10 +00:00
|
|
|
FindCommandTotal, FindCommandFailed int64
|
|
|
|
FindAndModifyCommandTotal, FindAndModifyCommandFailed int64
|
|
|
|
GetMoreCommandTotal, GetMoreCommandFailed int64
|
|
|
|
InsertCommandTotal, InsertCommandFailed int64
|
|
|
|
UpdateCommandTotal, UpdateCommandFailed int64
|
|
|
|
|
2020-05-12 18:31:54 +00:00
|
|
|
// Operation fields
|
|
|
|
ScanAndOrderOp, WriteConflictsOp int64
|
|
|
|
|
|
|
|
// Query Executor fields
|
|
|
|
TotalKeysScanned, TotalObjectsScanned int64
|
|
|
|
|
2018-07-03 21:09:20 +00:00
|
|
|
// Connection fields
|
|
|
|
CurrentC, AvailableC, TotalCreatedC int64
|
|
|
|
|
2015-10-27 00:46:40 +00:00
|
|
|
// Collection locks (3.0 mmap only)
|
|
|
|
CollectionLocks *CollectionLockStatus
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
// Cache utilization (wiredtiger only)
|
|
|
|
CacheDirtyPercent float64
|
|
|
|
CacheUsedPercent float64
|
|
|
|
|
2020-05-14 07:41:58 +00:00
|
|
|
// Cache utilization extended (wiredtiger only)
|
2017-10-03 00:38:51 +00:00
|
|
|
TrackedDirtyBytes int64
|
|
|
|
CurrentCachedBytes int64
|
|
|
|
MaxBytesConfigured int64
|
|
|
|
AppThreadsPageReadCount int64
|
|
|
|
AppThreadsPageReadTime int64
|
|
|
|
AppThreadsPageWriteCount int64
|
|
|
|
BytesWrittenFrom int64
|
|
|
|
BytesReadInto int64
|
|
|
|
PagesEvictedByAppThread int64
|
|
|
|
PagesQueuedForEviction int64
|
2019-01-15 19:31:52 +00:00
|
|
|
PagesReadIntoCache int64
|
|
|
|
PagesRequestedFromCache int64
|
2017-10-03 00:38:51 +00:00
|
|
|
ServerEvictingPages int64
|
|
|
|
WorkerThreadEvictingPages int64
|
2019-01-15 19:31:52 +00:00
|
|
|
InternalPagesEvicted int64
|
|
|
|
ModifiedPagesEvicted int64
|
|
|
|
UnmodifiedPagesEvicted int64
|
2017-10-03 00:38:51 +00:00
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
// Replicated Opcounter fields
|
2020-03-23 23:14:56 +00:00
|
|
|
InsertR, InsertRCnt int64
|
|
|
|
QueryR, QueryRCnt int64
|
|
|
|
UpdateR, UpdateRCnt int64
|
|
|
|
DeleteR, DeleteRCnt int64
|
|
|
|
GetMoreR, GetMoreRCnt int64
|
|
|
|
CommandR, CommandRCnt int64
|
|
|
|
ReplLag int64
|
|
|
|
OplogStats *OplogStats
|
|
|
|
Flushes, FlushesCnt int64
|
|
|
|
FlushesTotalTime int64
|
|
|
|
Mapped, Virtual, Resident, NonMapped int64
|
|
|
|
Faults, FaultsCnt int64
|
|
|
|
HighestLocked *LockStatus
|
|
|
|
QueuedReaders, QueuedWriters int64
|
|
|
|
ActiveReaders, ActiveWriters int64
|
|
|
|
AvailableReaders, AvailableWriters int64
|
|
|
|
TotalTicketsReaders, TotalTicketsWriters int64
|
|
|
|
NetIn, NetInCnt int64
|
|
|
|
NetOut, NetOutCnt int64
|
|
|
|
NumConnections int64
|
|
|
|
ReplSetName string
|
|
|
|
NodeType string
|
|
|
|
NodeState string
|
2016-04-29 16:40:26 +00:00
|
|
|
|
2020-05-12 18:31:54 +00:00
|
|
|
// Replicated Metrics fields
|
|
|
|
ReplNetworkBytes int64
|
|
|
|
ReplNetworkGetmoresNum int64
|
|
|
|
ReplNetworkGetmoresTotalMillis int64
|
|
|
|
ReplNetworkOps int64
|
|
|
|
ReplBufferCount int64
|
|
|
|
ReplBufferSizeBytes int64
|
|
|
|
ReplApplyBatchesNum int64
|
|
|
|
ReplApplyBatchesTotalMillis int64
|
|
|
|
ReplApplyOps int64
|
|
|
|
ReplExecutorPoolInProgressCount int64
|
|
|
|
ReplExecutorQueuesNetworkInProgress int64
|
|
|
|
ReplExecutorQueuesSleepers int64
|
|
|
|
ReplExecutorUnsignaledEvents int64
|
|
|
|
|
2016-04-29 16:40:26 +00:00
|
|
|
// Cluster fields
|
|
|
|
JumboChunksCount int64
|
2016-07-19 11:47:12 +00:00
|
|
|
|
|
|
|
// DB stats field
|
|
|
|
DbStatsLines []DbStatLine
|
2018-02-20 21:55:56 +00:00
|
|
|
|
2019-07-31 04:36:19 +00:00
|
|
|
// Col Stats field
|
|
|
|
ColStatsLines []ColStatLine
|
|
|
|
|
2018-02-20 21:55:56 +00:00
|
|
|
// Shard stats
|
|
|
|
TotalInUse, TotalAvailable, TotalCreated, TotalRefreshing int64
|
2018-04-11 00:10:29 +00:00
|
|
|
|
|
|
|
// Shard Hosts stats field
|
|
|
|
ShardHostStatsLines map[string]ShardHostStatLine
|
2020-05-12 18:31:54 +00:00
|
|
|
|
|
|
|
// TCMalloc stats field
|
|
|
|
TCMallocCurrentAllocatedBytes int64
|
|
|
|
TCMallocHeapSize int64
|
|
|
|
TCMallocCentralCacheFreeBytes int64
|
|
|
|
TCMallocCurrentTotalThreadCacheBytes int64
|
|
|
|
TCMallocMaxTotalThreadCacheBytes int64
|
|
|
|
TCMallocTotalFreeBytes int64
|
|
|
|
TCMallocTransferCacheFreeBytes int64
|
|
|
|
TCMallocThreadCacheFreeBytes int64
|
|
|
|
TCMallocSpinLockTotalDelayNanos int64
|
|
|
|
TCMallocPageheapFreeBytes int64
|
|
|
|
TCMallocPageheapUnmappedBytes int64
|
|
|
|
TCMallocPageheapComittedBytes int64
|
|
|
|
TCMallocPageheapScavengeCount int64
|
|
|
|
TCMallocPageheapCommitCount int64
|
|
|
|
TCMallocPageheapTotalCommitBytes int64
|
|
|
|
TCMallocPageheapDecommitCount int64
|
|
|
|
TCMallocPageheapTotalDecommitBytes int64
|
|
|
|
TCMallocPageheapReserveCount int64
|
|
|
|
TCMallocPageheapTotalReserveBytes int64
|
|
|
|
|
|
|
|
// Storage stats field
|
|
|
|
StorageFreelistSearchBucketExhausted int64
|
|
|
|
StorageFreelistSearchRequests int64
|
|
|
|
StorageFreelistSearchScanned int64
|
2016-07-19 11:47:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DbStatLine struct {
|
|
|
|
Name string
|
|
|
|
Collections int64
|
|
|
|
Objects int64
|
|
|
|
AvgObjSize float64
|
|
|
|
DataSize int64
|
|
|
|
StorageSize int64
|
|
|
|
NumExtents int64
|
|
|
|
Indexes int64
|
|
|
|
IndexSize int64
|
|
|
|
Ok int64
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
2019-07-31 04:36:19 +00:00
|
|
|
type ColStatLine struct {
|
|
|
|
Name string
|
|
|
|
DbName string
|
|
|
|
Count int64
|
|
|
|
Size int64
|
|
|
|
AvgObjSize float64
|
|
|
|
StorageSize int64
|
|
|
|
TotalIndexSize int64
|
|
|
|
Ok int64
|
|
|
|
}
|
2015-07-07 01:20:11 +00:00
|
|
|
|
2018-04-11 00:10:29 +00:00
|
|
|
type ShardHostStatLine struct {
|
|
|
|
InUse int64
|
|
|
|
Available int64
|
|
|
|
Created int64
|
|
|
|
Refreshing int64
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
func parseLocks(stat ServerStatus) map[string]LockUsage {
|
|
|
|
returnVal := map[string]LockUsage{}
|
|
|
|
for namespace, lockInfo := range stat.Locks {
|
|
|
|
returnVal[namespace] = LockUsage{
|
|
|
|
namespace,
|
|
|
|
lockInfo.TimeLockedMicros.Read + lockInfo.TimeLockedMicros.ReadLower,
|
|
|
|
lockInfo.TimeLockedMicros.Write + lockInfo.TimeLockedMicros.WriteLower,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return returnVal
|
|
|
|
}
|
|
|
|
|
|
|
|
func computeLockDiffs(prevLocks, curLocks map[string]LockUsage) []LockUsage {
|
|
|
|
lockUsages := lockUsages(make([]LockUsage, 0, len(curLocks)))
|
|
|
|
for namespace, curUsage := range curLocks {
|
|
|
|
prevUsage, hasKey := prevLocks[namespace]
|
|
|
|
if !hasKey {
|
|
|
|
// This namespace didn't appear in the previous batch of lock info,
|
|
|
|
// so we can't compute a diff for it - skip it.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Calculate diff of lock usage for this namespace and add to the list
|
|
|
|
lockUsages = append(lockUsages,
|
|
|
|
LockUsage{
|
|
|
|
namespace,
|
|
|
|
curUsage.Reads - prevUsage.Reads,
|
|
|
|
curUsage.Writes - prevUsage.Writes,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
// Sort the array in order of least to most locked
|
|
|
|
sort.Sort(lockUsages)
|
|
|
|
return lockUsages
|
|
|
|
}
|
|
|
|
|
2019-01-09 23:48:45 +00:00
|
|
|
func diff(newVal, oldVal, sampleTime int64) (int64, int64) {
|
2015-10-22 16:55:26 +00:00
|
|
|
d := newVal - oldVal
|
2015-10-28 16:44:09 +00:00
|
|
|
if d < 0 {
|
2015-10-22 16:55:26 +00:00
|
|
|
d = newVal
|
|
|
|
}
|
2019-01-09 23:48:45 +00:00
|
|
|
return d / sampleTime, newVal
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
2016-04-19 23:16:22 +00:00
|
|
|
// NewStatLine constructs a StatLine object from two MongoStatus objects.
|
|
|
|
func NewStatLine(oldMongo, newMongo MongoStatus, key string, all bool, sampleSecs int64) *StatLine {
|
|
|
|
oldStat := *oldMongo.ServerStatus
|
|
|
|
newStat := *newMongo.ServerStatus
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
returnVal := &StatLine{
|
|
|
|
Key: key,
|
|
|
|
Host: newStat.Host,
|
2020-05-12 18:31:54 +00:00
|
|
|
Version: newStat.Version,
|
2015-07-07 01:20:11 +00:00
|
|
|
Mapped: -1,
|
|
|
|
Virtual: -1,
|
|
|
|
Resident: -1,
|
|
|
|
NonMapped: -1,
|
|
|
|
Faults: -1,
|
|
|
|
}
|
|
|
|
|
2019-12-02 19:16:00 +00:00
|
|
|
returnVal.UptimeNanos = 1000 * 1000 * newStat.UptimeMillis
|
|
|
|
|
2018-11-28 01:45:23 +00:00
|
|
|
// set connection info
|
|
|
|
returnVal.CurrentC = newStat.Connections.Current
|
|
|
|
returnVal.AvailableC = newStat.Connections.Available
|
|
|
|
returnVal.TotalCreatedC = newStat.Connections.TotalCreated
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
// set the storage engine appropriately
|
|
|
|
if newStat.StorageEngine != nil && newStat.StorageEngine["name"] != "" {
|
|
|
|
returnVal.StorageEngine = newStat.StorageEngine["name"]
|
|
|
|
} else {
|
|
|
|
returnVal.StorageEngine = "mmapv1"
|
|
|
|
}
|
|
|
|
|
|
|
|
if newStat.Opcounters != nil && oldStat.Opcounters != nil {
|
2019-01-09 23:48:45 +00:00
|
|
|
returnVal.Insert, returnVal.InsertCnt = diff(newStat.Opcounters.Insert, oldStat.Opcounters.Insert, sampleSecs)
|
|
|
|
returnVal.Query, returnVal.QueryCnt = diff(newStat.Opcounters.Query, oldStat.Opcounters.Query, sampleSecs)
|
|
|
|
returnVal.Update, returnVal.UpdateCnt = diff(newStat.Opcounters.Update, oldStat.Opcounters.Update, sampleSecs)
|
|
|
|
returnVal.Delete, returnVal.DeleteCnt = diff(newStat.Opcounters.Delete, oldStat.Opcounters.Delete, sampleSecs)
|
|
|
|
returnVal.GetMore, returnVal.GetMoreCnt = diff(newStat.Opcounters.GetMore, oldStat.Opcounters.GetMore, sampleSecs)
|
|
|
|
returnVal.Command, returnVal.CommandCnt = diff(newStat.Opcounters.Command, oldStat.Opcounters.Command, sampleSecs)
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
2020-01-09 02:18:12 +00:00
|
|
|
if newStat.OpLatencies != nil {
|
|
|
|
if newStat.OpLatencies.Reads != nil {
|
|
|
|
returnVal.ReadOpsCnt = newStat.OpLatencies.Reads.Ops
|
|
|
|
returnVal.ReadLatency = newStat.OpLatencies.Reads.Latency
|
|
|
|
}
|
|
|
|
if newStat.OpLatencies.Writes != nil {
|
|
|
|
returnVal.WriteOpsCnt = newStat.OpLatencies.Writes.Ops
|
|
|
|
returnVal.WriteLatency = newStat.OpLatencies.Writes.Latency
|
|
|
|
}
|
|
|
|
if newStat.OpLatencies.Commands != nil {
|
|
|
|
returnVal.CommandOpsCnt = newStat.OpLatencies.Commands.Ops
|
|
|
|
returnVal.CommandLatency = newStat.OpLatencies.Commands.Latency
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:31:54 +00:00
|
|
|
if newStat.Asserts != nil {
|
|
|
|
returnVal.Regular = newStat.Asserts.Regular
|
|
|
|
returnVal.Warning = newStat.Asserts.Warning
|
|
|
|
returnVal.Msg = newStat.Asserts.Msg
|
|
|
|
returnVal.User = newStat.Asserts.User
|
|
|
|
returnVal.Rollovers = newStat.Asserts.Rollovers
|
|
|
|
}
|
|
|
|
|
|
|
|
if newStat.TCMallocStats != nil {
|
|
|
|
if newStat.TCMallocStats.Generic != nil {
|
|
|
|
returnVal.TCMallocCurrentAllocatedBytes = newStat.TCMallocStats.Generic.CurrentAllocatedBytes
|
|
|
|
returnVal.TCMallocHeapSize = newStat.TCMallocStats.Generic.HeapSize
|
|
|
|
}
|
|
|
|
if newStat.TCMallocStats.TCMalloc != nil {
|
|
|
|
returnVal.TCMallocCentralCacheFreeBytes = newStat.TCMallocStats.TCMalloc.CentralCacheFreeBytes
|
|
|
|
returnVal.TCMallocCurrentTotalThreadCacheBytes = newStat.TCMallocStats.TCMalloc.CurrentTotalThreadCacheBytes
|
|
|
|
returnVal.TCMallocMaxTotalThreadCacheBytes = newStat.TCMallocStats.TCMalloc.MaxTotalThreadCacheBytes
|
|
|
|
returnVal.TCMallocTransferCacheFreeBytes = newStat.TCMallocStats.TCMalloc.TransferCacheFreeBytes
|
|
|
|
returnVal.TCMallocThreadCacheFreeBytes = newStat.TCMallocStats.TCMalloc.ThreadCacheFreeBytes
|
|
|
|
returnVal.TCMallocTotalFreeBytes = newStat.TCMallocStats.TCMalloc.TotalFreeBytes
|
|
|
|
returnVal.TCMallocSpinLockTotalDelayNanos = newStat.TCMallocStats.TCMalloc.SpinLockTotalDelayNanos
|
|
|
|
|
|
|
|
returnVal.TCMallocPageheapFreeBytes = newStat.TCMallocStats.TCMalloc.PageheapFreeBytes
|
|
|
|
returnVal.TCMallocPageheapUnmappedBytes = newStat.TCMallocStats.TCMalloc.PageheapUnmappedBytes
|
|
|
|
returnVal.TCMallocPageheapComittedBytes = newStat.TCMallocStats.TCMalloc.PageheapComittedBytes
|
|
|
|
returnVal.TCMallocPageheapScavengeCount = newStat.TCMallocStats.TCMalloc.PageheapScavengeCount
|
|
|
|
returnVal.TCMallocPageheapCommitCount = newStat.TCMallocStats.TCMalloc.PageheapCommitCount
|
|
|
|
returnVal.TCMallocPageheapTotalCommitBytes = newStat.TCMallocStats.TCMalloc.PageheapTotalCommitBytes
|
|
|
|
returnVal.TCMallocPageheapDecommitCount = newStat.TCMallocStats.TCMalloc.PageheapDecommitCount
|
|
|
|
returnVal.TCMallocPageheapTotalDecommitBytes = newStat.TCMallocStats.TCMalloc.PageheapTotalDecommitBytes
|
|
|
|
returnVal.TCMallocPageheapReserveCount = newStat.TCMallocStats.TCMalloc.PageheapReserveCount
|
|
|
|
returnVal.TCMallocPageheapTotalReserveBytes = newStat.TCMallocStats.TCMalloc.PageheapTotalReserveBytes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:00:24 +00:00
|
|
|
if newStat.Metrics != nil && oldStat.Metrics != nil {
|
|
|
|
if newStat.Metrics.TTL != nil && oldStat.Metrics.TTL != nil {
|
2019-01-09 23:48:45 +00:00
|
|
|
returnVal.Passes, returnVal.PassesCnt = diff(newStat.Metrics.TTL.Passes, oldStat.Metrics.TTL.Passes, sampleSecs)
|
|
|
|
returnVal.DeletedDocuments, returnVal.DeletedDocumentsCnt = diff(newStat.Metrics.TTL.DeletedDocuments, oldStat.Metrics.TTL.DeletedDocuments, sampleSecs)
|
2018-05-07 22:00:24 +00:00
|
|
|
}
|
|
|
|
if newStat.Metrics.Cursor != nil && oldStat.Metrics.Cursor != nil {
|
2019-01-09 23:48:45 +00:00
|
|
|
returnVal.TimedOutC, returnVal.TimedOutCCnt = diff(newStat.Metrics.Cursor.TimedOut, oldStat.Metrics.Cursor.TimedOut, sampleSecs)
|
2018-05-07 22:00:24 +00:00
|
|
|
if newStat.Metrics.Cursor.Open != nil && oldStat.Metrics.Cursor.Open != nil {
|
2019-01-09 23:48:45 +00:00
|
|
|
returnVal.NoTimeoutC, returnVal.NoTimeoutCCnt = diff(newStat.Metrics.Cursor.Open.NoTimeout, oldStat.Metrics.Cursor.Open.NoTimeout, sampleSecs)
|
|
|
|
returnVal.PinnedC, returnVal.PinnedCCnt = diff(newStat.Metrics.Cursor.Open.Pinned, oldStat.Metrics.Cursor.Open.Pinned, sampleSecs)
|
|
|
|
returnVal.TotalC, returnVal.TotalCCnt = diff(newStat.Metrics.Cursor.Open.Total, oldStat.Metrics.Cursor.Open.Total, sampleSecs)
|
2018-05-07 22:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-29 00:43:13 +00:00
|
|
|
if newStat.Metrics.Document != nil {
|
|
|
|
returnVal.DeletedD = newStat.Metrics.Document.Deleted
|
|
|
|
returnVal.InsertedD = newStat.Metrics.Document.Inserted
|
|
|
|
returnVal.ReturnedD = newStat.Metrics.Document.Returned
|
|
|
|
returnVal.UpdatedD = newStat.Metrics.Document.Updated
|
|
|
|
}
|
2020-03-23 19:33:10 +00:00
|
|
|
|
|
|
|
if newStat.Metrics.Commands != nil {
|
2020-05-12 18:31:54 +00:00
|
|
|
if newStat.Metrics.Commands.Aggregate != nil {
|
|
|
|
returnVal.AggregateCommandTotal = newStat.Metrics.Commands.Aggregate.Total
|
|
|
|
returnVal.AggregateCommandFailed = newStat.Metrics.Commands.Aggregate.Failed
|
|
|
|
}
|
|
|
|
if newStat.Metrics.Commands.Count != nil {
|
|
|
|
returnVal.CountCommandTotal = newStat.Metrics.Commands.Count.Total
|
|
|
|
returnVal.CountCommandFailed = newStat.Metrics.Commands.Count.Failed
|
|
|
|
}
|
2020-03-23 19:33:10 +00:00
|
|
|
if newStat.Metrics.Commands.Delete != nil {
|
|
|
|
returnVal.DeleteCommandTotal = newStat.Metrics.Commands.Delete.Total
|
|
|
|
returnVal.DeleteCommandFailed = newStat.Metrics.Commands.Delete.Failed
|
|
|
|
}
|
2020-05-12 18:31:54 +00:00
|
|
|
if newStat.Metrics.Commands.Distinct != nil {
|
|
|
|
returnVal.DistinctCommandTotal = newStat.Metrics.Commands.Distinct.Total
|
|
|
|
returnVal.DistinctCommandFailed = newStat.Metrics.Commands.Distinct.Failed
|
|
|
|
}
|
2020-03-23 19:33:10 +00:00
|
|
|
if newStat.Metrics.Commands.Find != nil {
|
|
|
|
returnVal.FindCommandTotal = newStat.Metrics.Commands.Find.Total
|
|
|
|
returnVal.FindCommandFailed = newStat.Metrics.Commands.Find.Failed
|
|
|
|
}
|
|
|
|
if newStat.Metrics.Commands.FindAndModify != nil {
|
|
|
|
returnVal.FindAndModifyCommandTotal = newStat.Metrics.Commands.FindAndModify.Total
|
|
|
|
returnVal.FindAndModifyCommandFailed = newStat.Metrics.Commands.FindAndModify.Failed
|
|
|
|
}
|
|
|
|
if newStat.Metrics.Commands.GetMore != nil {
|
|
|
|
returnVal.GetMoreCommandTotal = newStat.Metrics.Commands.GetMore.Total
|
|
|
|
returnVal.GetMoreCommandFailed = newStat.Metrics.Commands.GetMore.Failed
|
|
|
|
}
|
|
|
|
if newStat.Metrics.Commands.Insert != nil {
|
|
|
|
returnVal.InsertCommandTotal = newStat.Metrics.Commands.Insert.Total
|
|
|
|
returnVal.InsertCommandFailed = newStat.Metrics.Commands.Insert.Failed
|
|
|
|
}
|
|
|
|
if newStat.Metrics.Commands.Update != nil {
|
|
|
|
returnVal.UpdateCommandTotal = newStat.Metrics.Commands.Update.Total
|
|
|
|
returnVal.UpdateCommandFailed = newStat.Metrics.Commands.Update.Failed
|
|
|
|
}
|
|
|
|
}
|
2020-05-12 18:31:54 +00:00
|
|
|
|
|
|
|
if newStat.Metrics.Operation != nil {
|
|
|
|
returnVal.ScanAndOrderOp = newStat.Metrics.Operation.ScanAndOrder
|
|
|
|
returnVal.WriteConflictsOp = newStat.Metrics.Operation.WriteConflicts
|
|
|
|
}
|
|
|
|
|
|
|
|
if newStat.Metrics.QueryExecutor != nil {
|
|
|
|
returnVal.TotalKeysScanned = newStat.Metrics.QueryExecutor.Scanned
|
|
|
|
returnVal.TotalObjectsScanned = newStat.Metrics.QueryExecutor.ScannedObjects
|
|
|
|
}
|
|
|
|
|
|
|
|
if newStat.Metrics.Repl != nil {
|
|
|
|
if newStat.Metrics.Repl.Apply != nil {
|
|
|
|
returnVal.ReplApplyBatchesNum = newStat.Metrics.Repl.Apply.Batches.Num
|
|
|
|
returnVal.ReplApplyBatchesTotalMillis = newStat.Metrics.Repl.Apply.Batches.TotalMillis
|
|
|
|
returnVal.ReplApplyOps = newStat.Metrics.Repl.Apply.Ops
|
|
|
|
}
|
|
|
|
if newStat.Metrics.Repl.Buffer != nil {
|
|
|
|
returnVal.ReplBufferCount = newStat.Metrics.Repl.Buffer.Count
|
|
|
|
returnVal.ReplBufferSizeBytes = newStat.Metrics.Repl.Buffer.SizeBytes
|
|
|
|
}
|
|
|
|
if newStat.Metrics.Repl.Executor != nil {
|
|
|
|
returnVal.ReplExecutorPoolInProgressCount = newStat.Metrics.Repl.Executor.Pool["inProgressCount"]
|
|
|
|
returnVal.ReplExecutorQueuesNetworkInProgress = newStat.Metrics.Repl.Executor.Queues["networkInProgress"]
|
|
|
|
returnVal.ReplExecutorQueuesSleepers = newStat.Metrics.Repl.Executor.Queues["sleepers"]
|
|
|
|
returnVal.ReplExecutorUnsignaledEvents = newStat.Metrics.Repl.Executor.UnsignaledEvents
|
|
|
|
}
|
|
|
|
if newStat.Metrics.Repl.Network != nil {
|
|
|
|
returnVal.ReplNetworkBytes = newStat.Metrics.Repl.Network.Bytes
|
|
|
|
returnVal.ReplNetworkGetmoresNum = newStat.Metrics.Repl.Network.GetMores.Num
|
|
|
|
returnVal.ReplNetworkGetmoresTotalMillis = newStat.Metrics.Repl.Network.GetMores.TotalMillis
|
|
|
|
returnVal.ReplNetworkOps = newStat.Metrics.Repl.Network.Ops
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if newStat.Metrics.Storage != nil {
|
|
|
|
returnVal.StorageFreelistSearchBucketExhausted = newStat.Metrics.Storage.FreelistSearchBucketExhausted
|
|
|
|
returnVal.StorageFreelistSearchRequests = newStat.Metrics.Storage.FreelistSearchRequests
|
|
|
|
returnVal.StorageFreelistSearchScanned = newStat.Metrics.Storage.FreelistSearchScanned
|
|
|
|
}
|
2016-04-19 18:55:03 +00:00
|
|
|
}
|
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
if newStat.OpcountersRepl != nil && oldStat.OpcountersRepl != nil {
|
2019-01-09 23:48:45 +00:00
|
|
|
returnVal.InsertR, returnVal.InsertRCnt = diff(newStat.OpcountersRepl.Insert, oldStat.OpcountersRepl.Insert, sampleSecs)
|
|
|
|
returnVal.QueryR, returnVal.QueryRCnt = diff(newStat.OpcountersRepl.Query, oldStat.OpcountersRepl.Query, sampleSecs)
|
|
|
|
returnVal.UpdateR, returnVal.UpdateRCnt = diff(newStat.OpcountersRepl.Update, oldStat.OpcountersRepl.Update, sampleSecs)
|
|
|
|
returnVal.DeleteR, returnVal.DeleteRCnt = diff(newStat.OpcountersRepl.Delete, oldStat.OpcountersRepl.Delete, sampleSecs)
|
|
|
|
returnVal.GetMoreR, returnVal.GetMoreRCnt = diff(newStat.OpcountersRepl.GetMore, oldStat.OpcountersRepl.GetMore, sampleSecs)
|
|
|
|
returnVal.CommandR, returnVal.CommandRCnt = diff(newStat.OpcountersRepl.Command, oldStat.OpcountersRepl.Command, sampleSecs)
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
returnVal.CacheDirtyPercent = -1
|
|
|
|
returnVal.CacheUsedPercent = -1
|
2019-01-15 19:31:52 +00:00
|
|
|
if newStat.WiredTiger != nil {
|
2015-07-07 01:20:11 +00:00
|
|
|
returnVal.CacheDirtyPercent = float64(newStat.WiredTiger.Cache.TrackedDirtyBytes) / float64(newStat.WiredTiger.Cache.MaxBytesConfigured)
|
|
|
|
returnVal.CacheUsedPercent = float64(newStat.WiredTiger.Cache.CurrentCachedBytes) / float64(newStat.WiredTiger.Cache.MaxBytesConfigured)
|
2017-10-03 00:38:51 +00:00
|
|
|
|
|
|
|
returnVal.TrackedDirtyBytes = newStat.WiredTiger.Cache.TrackedDirtyBytes
|
|
|
|
returnVal.CurrentCachedBytes = newStat.WiredTiger.Cache.CurrentCachedBytes
|
|
|
|
returnVal.MaxBytesConfigured = newStat.WiredTiger.Cache.MaxBytesConfigured
|
|
|
|
returnVal.AppThreadsPageReadCount = newStat.WiredTiger.Cache.AppThreadsPageReadCount
|
|
|
|
returnVal.AppThreadsPageReadTime = newStat.WiredTiger.Cache.AppThreadsPageReadTime
|
|
|
|
returnVal.AppThreadsPageWriteCount = newStat.WiredTiger.Cache.AppThreadsPageWriteCount
|
|
|
|
returnVal.BytesWrittenFrom = newStat.WiredTiger.Cache.BytesWrittenFrom
|
|
|
|
returnVal.BytesReadInto = newStat.WiredTiger.Cache.BytesReadInto
|
|
|
|
returnVal.PagesEvictedByAppThread = newStat.WiredTiger.Cache.PagesEvictedByAppThread
|
|
|
|
returnVal.PagesQueuedForEviction = newStat.WiredTiger.Cache.PagesQueuedForEviction
|
2019-01-15 19:31:52 +00:00
|
|
|
returnVal.PagesReadIntoCache = newStat.WiredTiger.Cache.PagesReadIntoCache
|
|
|
|
returnVal.PagesRequestedFromCache = newStat.WiredTiger.Cache.PagesRequestedFromCache
|
2017-10-03 00:38:51 +00:00
|
|
|
returnVal.ServerEvictingPages = newStat.WiredTiger.Cache.ServerEvictingPages
|
|
|
|
returnVal.WorkerThreadEvictingPages = newStat.WiredTiger.Cache.WorkerThreadEvictingPages
|
2019-01-15 19:31:52 +00:00
|
|
|
|
|
|
|
returnVal.InternalPagesEvicted = newStat.WiredTiger.Cache.InternalPagesEvicted
|
|
|
|
returnVal.ModifiedPagesEvicted = newStat.WiredTiger.Cache.ModifiedPagesEvicted
|
|
|
|
returnVal.UnmodifiedPagesEvicted = newStat.WiredTiger.Cache.UnmodifiedPagesEvicted
|
|
|
|
|
|
|
|
returnVal.FlushesTotalTime = newStat.WiredTiger.Transaction.TransCheckpointsTotalTimeMsecs * int64(time.Millisecond)
|
|
|
|
}
|
|
|
|
if newStat.WiredTiger != nil && oldStat.WiredTiger != nil {
|
|
|
|
returnVal.Flushes, returnVal.FlushesCnt = diff(newStat.WiredTiger.Transaction.TransCheckpoints, oldStat.WiredTiger.Transaction.TransCheckpoints, sampleSecs)
|
2015-07-07 01:20:11 +00:00
|
|
|
} else if newStat.BackgroundFlushing != nil && oldStat.BackgroundFlushing != nil {
|
2019-01-09 23:48:45 +00:00
|
|
|
returnVal.Flushes, returnVal.FlushesCnt = diff(newStat.BackgroundFlushing.Flushes, oldStat.BackgroundFlushing.Flushes, sampleSecs)
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
2016-04-19 23:16:22 +00:00
|
|
|
returnVal.Time = newMongo.SampleTime
|
2015-07-07 01:20:11 +00:00
|
|
|
returnVal.IsMongos =
|
|
|
|
(newStat.ShardCursorType != nil || strings.HasPrefix(newStat.Process, MongosProcess))
|
|
|
|
|
|
|
|
// BEGIN code modification
|
|
|
|
if oldStat.Mem.Supported.(bool) {
|
|
|
|
// END code modification
|
|
|
|
if !returnVal.IsMongos {
|
|
|
|
returnVal.Mapped = newStat.Mem.Mapped
|
|
|
|
}
|
|
|
|
returnVal.Virtual = newStat.Mem.Virtual
|
|
|
|
returnVal.Resident = newStat.Mem.Resident
|
|
|
|
|
|
|
|
if !returnVal.IsMongos && all {
|
|
|
|
returnVal.NonMapped = newStat.Mem.Virtual - newStat.Mem.Mapped
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if newStat.Repl != nil {
|
|
|
|
setName, isReplSet := newStat.Repl.SetName.(string)
|
|
|
|
if isReplSet {
|
|
|
|
returnVal.ReplSetName = setName
|
|
|
|
}
|
|
|
|
// BEGIN code modification
|
|
|
|
if newStat.Repl.IsMaster.(bool) {
|
|
|
|
returnVal.NodeType = "PRI"
|
2017-05-30 18:02:26 +00:00
|
|
|
} else if newStat.Repl.Secondary != nil && newStat.Repl.Secondary.(bool) {
|
2015-07-07 01:20:11 +00:00
|
|
|
returnVal.NodeType = "SEC"
|
2016-12-16 13:46:32 +00:00
|
|
|
} else if newStat.Repl.ArbiterOnly != nil && newStat.Repl.ArbiterOnly.(bool) {
|
|
|
|
returnVal.NodeType = "ARB"
|
2015-07-07 01:20:11 +00:00
|
|
|
} else {
|
|
|
|
returnVal.NodeType = "UNK"
|
|
|
|
}
|
|
|
|
// END code modification
|
|
|
|
} else if returnVal.IsMongos {
|
|
|
|
returnVal.NodeType = "RTR"
|
|
|
|
}
|
|
|
|
|
|
|
|
if oldStat.ExtraInfo != nil && newStat.ExtraInfo != nil &&
|
|
|
|
oldStat.ExtraInfo.PageFaults != nil && newStat.ExtraInfo.PageFaults != nil {
|
2019-01-09 23:48:45 +00:00
|
|
|
returnVal.Faults, returnVal.FaultsCnt = diff(*(newStat.ExtraInfo.PageFaults), *(oldStat.ExtraInfo.PageFaults), sampleSecs)
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
2015-08-04 14:58:32 +00:00
|
|
|
if !returnVal.IsMongos && oldStat.Locks != nil {
|
2015-07-07 01:20:11 +00:00
|
|
|
globalCheck, hasGlobal := oldStat.Locks["Global"]
|
|
|
|
if hasGlobal && globalCheck.AcquireCount != nil {
|
|
|
|
// This appears to be a 3.0+ server so the data in these fields do *not* refer to
|
|
|
|
// actual namespaces and thus we can't compute lock %.
|
|
|
|
returnVal.HighestLocked = nil
|
2015-10-27 00:46:40 +00:00
|
|
|
|
|
|
|
// Check if it's a 3.0+ MMAP server so we can still compute collection locks
|
|
|
|
collectionCheck, hasCollection := oldStat.Locks["Collection"]
|
|
|
|
if hasCollection && collectionCheck.AcquireWaitCount != nil {
|
|
|
|
readWaitCountDiff := newStat.Locks["Collection"].AcquireWaitCount.Read - oldStat.Locks["Collection"].AcquireWaitCount.Read
|
|
|
|
readTotalCountDiff := newStat.Locks["Collection"].AcquireCount.Read - oldStat.Locks["Collection"].AcquireCount.Read
|
|
|
|
writeWaitCountDiff := newStat.Locks["Collection"].AcquireWaitCount.Write - oldStat.Locks["Collection"].AcquireWaitCount.Write
|
|
|
|
writeTotalCountDiff := newStat.Locks["Collection"].AcquireCount.Write - oldStat.Locks["Collection"].AcquireCount.Write
|
|
|
|
readAcquireTimeDiff := newStat.Locks["Collection"].TimeAcquiringMicros.Read - oldStat.Locks["Collection"].TimeAcquiringMicros.Read
|
|
|
|
writeAcquireTimeDiff := newStat.Locks["Collection"].TimeAcquiringMicros.Write - oldStat.Locks["Collection"].TimeAcquiringMicros.Write
|
|
|
|
returnVal.CollectionLocks = &CollectionLockStatus{
|
|
|
|
ReadAcquireWaitsPercentage: percentageInt64(readWaitCountDiff, readTotalCountDiff),
|
|
|
|
WriteAcquireWaitsPercentage: percentageInt64(writeWaitCountDiff, writeTotalCountDiff),
|
|
|
|
ReadAcquireTimeMicros: averageInt64(readAcquireTimeDiff, readWaitCountDiff),
|
|
|
|
WriteAcquireTimeMicros: averageInt64(writeAcquireTimeDiff, writeWaitCountDiff),
|
|
|
|
}
|
|
|
|
}
|
2015-07-07 01:20:11 +00:00
|
|
|
} else {
|
|
|
|
prevLocks := parseLocks(oldStat)
|
|
|
|
curLocks := parseLocks(newStat)
|
|
|
|
lockdiffs := computeLockDiffs(prevLocks, curLocks)
|
|
|
|
if len(lockdiffs) == 0 {
|
|
|
|
if newStat.GlobalLock != nil {
|
|
|
|
returnVal.HighestLocked = &LockStatus{
|
|
|
|
DBName: "",
|
|
|
|
Percentage: percentageInt64(newStat.GlobalLock.LockTime, newStat.GlobalLock.TotalTime),
|
|
|
|
Global: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Get the entry with the highest lock
|
|
|
|
highestLocked := lockdiffs[len(lockdiffs)-1]
|
|
|
|
|
|
|
|
var timeDiffMillis int64
|
|
|
|
timeDiffMillis = newStat.UptimeMillis - oldStat.UptimeMillis
|
|
|
|
|
|
|
|
lockToReport := highestLocked.Writes
|
|
|
|
|
|
|
|
// if the highest locked namespace is not '.'
|
|
|
|
if highestLocked.Namespace != "." {
|
|
|
|
for _, namespaceLockInfo := range lockdiffs {
|
|
|
|
if namespaceLockInfo.Namespace == "." {
|
|
|
|
lockToReport += namespaceLockInfo.Writes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// lock data is in microseconds and uptime is in milliseconds - so
|
|
|
|
// divide by 1000 so that they units match
|
|
|
|
lockToReport /= 1000
|
|
|
|
|
|
|
|
returnVal.HighestLocked = &LockStatus{
|
|
|
|
DBName: highestLocked.Namespace,
|
|
|
|
Percentage: percentageInt64(lockToReport, timeDiffMillis),
|
|
|
|
Global: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
returnVal.HighestLocked = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if newStat.GlobalLock != nil {
|
|
|
|
hasWT := (newStat.WiredTiger != nil && oldStat.WiredTiger != nil)
|
|
|
|
//If we have wiredtiger stats, use those instead
|
|
|
|
if newStat.GlobalLock.CurrentQueue != nil {
|
|
|
|
if hasWT {
|
|
|
|
returnVal.QueuedReaders = newStat.GlobalLock.CurrentQueue.Readers + newStat.GlobalLock.ActiveClients.Readers - newStat.WiredTiger.Concurrent.Read.Out
|
|
|
|
returnVal.QueuedWriters = newStat.GlobalLock.CurrentQueue.Writers + newStat.GlobalLock.ActiveClients.Writers - newStat.WiredTiger.Concurrent.Write.Out
|
|
|
|
if returnVal.QueuedReaders < 0 {
|
|
|
|
returnVal.QueuedReaders = 0
|
|
|
|
}
|
|
|
|
if returnVal.QueuedWriters < 0 {
|
|
|
|
returnVal.QueuedWriters = 0
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
returnVal.QueuedReaders = newStat.GlobalLock.CurrentQueue.Readers
|
|
|
|
returnVal.QueuedWriters = newStat.GlobalLock.CurrentQueue.Writers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if hasWT {
|
|
|
|
returnVal.ActiveReaders = newStat.WiredTiger.Concurrent.Read.Out
|
|
|
|
returnVal.ActiveWriters = newStat.WiredTiger.Concurrent.Write.Out
|
2020-03-23 23:14:56 +00:00
|
|
|
returnVal.AvailableReaders = newStat.WiredTiger.Concurrent.Read.Available
|
|
|
|
returnVal.AvailableWriters = newStat.WiredTiger.Concurrent.Write.Available
|
|
|
|
returnVal.TotalTicketsReaders = newStat.WiredTiger.Concurrent.Read.TotalTickets
|
|
|
|
returnVal.TotalTicketsWriters = newStat.WiredTiger.Concurrent.Write.TotalTickets
|
2015-07-07 01:20:11 +00:00
|
|
|
} else if newStat.GlobalLock.ActiveClients != nil {
|
|
|
|
returnVal.ActiveReaders = newStat.GlobalLock.ActiveClients.Readers
|
|
|
|
returnVal.ActiveWriters = newStat.GlobalLock.ActiveClients.Writers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if oldStat.Network != nil && newStat.Network != nil {
|
2019-01-09 23:48:45 +00:00
|
|
|
returnVal.NetIn, returnVal.NetInCnt = diff(newStat.Network.BytesIn, oldStat.Network.BytesIn, sampleSecs)
|
|
|
|
returnVal.NetOut, returnVal.NetOutCnt = diff(newStat.Network.BytesOut, oldStat.Network.BytesOut, sampleSecs)
|
2015-07-07 01:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if newStat.Connections != nil {
|
|
|
|
returnVal.NumConnections = newStat.Connections.Current
|
|
|
|
}
|
|
|
|
|
2019-08-27 17:31:42 +00:00
|
|
|
if newMongo.ReplSetStatus != nil {
|
|
|
|
newReplStat := *newMongo.ReplSetStatus
|
|
|
|
|
|
|
|
if newReplStat.Members != nil {
|
|
|
|
myName := newStat.Repl.Me
|
|
|
|
// Find the master and myself
|
|
|
|
master := ReplSetMember{}
|
|
|
|
me := ReplSetMember{}
|
|
|
|
for _, member := range newReplStat.Members {
|
|
|
|
if member.Name == myName {
|
|
|
|
// Store my state string
|
|
|
|
returnVal.NodeState = member.StateStr
|
|
|
|
if member.State == 1 {
|
|
|
|
// I'm the master
|
|
|
|
returnVal.ReplLag = 0
|
|
|
|
break
|
|
|
|
} else {
|
|
|
|
// I'm secondary
|
|
|
|
me = member
|
|
|
|
}
|
|
|
|
} else if member.State == 1 {
|
|
|
|
// Master found
|
|
|
|
master = member
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if me.State == 2 {
|
|
|
|
// OptimeDate.Unix() type is int64
|
|
|
|
lag := master.OptimeDate.Unix() - me.OptimeDate.Unix()
|
|
|
|
if lag < 0 {
|
2016-04-19 23:16:22 +00:00
|
|
|
returnVal.ReplLag = 0
|
|
|
|
} else {
|
2019-08-27 17:31:42 +00:00
|
|
|
returnVal.ReplLag = lag
|
2016-04-19 23:16:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-27 17:31:42 +00:00
|
|
|
}
|
2016-04-19 23:16:22 +00:00
|
|
|
|
2019-08-27 17:31:42 +00:00
|
|
|
if newMongo.ClusterStatus != nil {
|
|
|
|
newClusterStat := *newMongo.ClusterStatus
|
|
|
|
returnVal.JumboChunksCount = newClusterStat.JumboChunksCount
|
2016-04-19 23:16:22 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 17:31:42 +00:00
|
|
|
if newMongo.OplogStats != nil {
|
|
|
|
returnVal.OplogStats = newMongo.OplogStats
|
|
|
|
}
|
2016-04-29 16:40:26 +00:00
|
|
|
|
2019-08-27 17:31:42 +00:00
|
|
|
if newMongo.DbStats != nil {
|
|
|
|
newDbStats := *newMongo.DbStats
|
|
|
|
for _, db := range newDbStats.Dbs {
|
|
|
|
dbStatsData := db.DbStatsData
|
|
|
|
// mongos doesn't have the db key, so setting the db name
|
|
|
|
if dbStatsData.Db == "" {
|
|
|
|
dbStatsData.Db = db.Name
|
|
|
|
}
|
|
|
|
dbStatLine := &DbStatLine{
|
|
|
|
Name: dbStatsData.Db,
|
|
|
|
Collections: dbStatsData.Collections,
|
|
|
|
Objects: dbStatsData.Objects,
|
|
|
|
AvgObjSize: dbStatsData.AvgObjSize,
|
|
|
|
DataSize: dbStatsData.DataSize,
|
|
|
|
StorageSize: dbStatsData.StorageSize,
|
|
|
|
NumExtents: dbStatsData.NumExtents,
|
|
|
|
Indexes: dbStatsData.Indexes,
|
|
|
|
IndexSize: dbStatsData.IndexSize,
|
|
|
|
Ok: dbStatsData.Ok,
|
|
|
|
}
|
|
|
|
returnVal.DbStatsLines = append(returnVal.DbStatsLines, *dbStatLine)
|
2016-07-19 11:47:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-09 22:55:46 +00:00
|
|
|
if newMongo.ColStats != nil {
|
|
|
|
for _, col := range newMongo.ColStats.Collections {
|
|
|
|
colStatsData := col.ColStatsData
|
|
|
|
// mongos doesn't have the db key, so setting the db name
|
|
|
|
if colStatsData.Collection == "" {
|
|
|
|
colStatsData.Collection = col.Name
|
|
|
|
}
|
|
|
|
colStatLine := &ColStatLine{
|
|
|
|
Name: colStatsData.Collection,
|
|
|
|
DbName: col.DbName,
|
|
|
|
Count: colStatsData.Count,
|
|
|
|
Size: colStatsData.Size,
|
|
|
|
AvgObjSize: colStatsData.AvgObjSize,
|
|
|
|
StorageSize: colStatsData.StorageSize,
|
|
|
|
TotalIndexSize: colStatsData.TotalIndexSize,
|
|
|
|
Ok: colStatsData.Ok,
|
|
|
|
}
|
|
|
|
returnVal.ColStatsLines = append(returnVal.ColStatsLines, *colStatLine)
|
2019-07-31 04:36:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-20 21:55:56 +00:00
|
|
|
// Set shard stats
|
2019-11-19 18:52:48 +00:00
|
|
|
if newMongo.ShardStats != nil {
|
|
|
|
newShardStats := *newMongo.ShardStats
|
|
|
|
returnVal.TotalInUse = newShardStats.TotalInUse
|
|
|
|
returnVal.TotalAvailable = newShardStats.TotalAvailable
|
|
|
|
returnVal.TotalCreated = newShardStats.TotalCreated
|
|
|
|
returnVal.TotalRefreshing = newShardStats.TotalRefreshing
|
|
|
|
returnVal.ShardHostStatsLines = map[string]ShardHostStatLine{}
|
|
|
|
for host, stats := range newShardStats.Hosts {
|
|
|
|
shardStatLine := &ShardHostStatLine{
|
|
|
|
InUse: stats.InUse,
|
|
|
|
Available: stats.Available,
|
|
|
|
Created: stats.Created,
|
|
|
|
Refreshing: stats.Refreshing,
|
|
|
|
}
|
2018-04-11 00:10:29 +00:00
|
|
|
|
2019-11-19 18:52:48 +00:00
|
|
|
returnVal.ShardHostStatsLines[host] = *shardStatLine
|
|
|
|
}
|
2018-04-11 00:10:29 +00:00
|
|
|
}
|
2018-02-20 21:55:56 +00:00
|
|
|
|
2015-07-07 01:20:11 +00:00
|
|
|
return returnVal
|
|
|
|
}
|