- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Supported OS
Connect MongoDB to Datadog in order to:
You can also create your own metrics using custom find
, count
and aggregate
queries.
Note: MongoDB v3.0+ is required for this integration. Integration of MongoDB Atlas with Datadog is only available on M10+ clusters. This integration also supports Alibaba ApsaraDB and AWS DocumentDB Instance-Based clusters. DocumentDB Elastic clusters are not supported because they only expose the cluster (mongos) endpoints.
The MongoDB check is included in the Datadog Agent package. No additional installation is necessary.
Most low-level metrics (uptime, storage size etc.) need to be collected on every mongod node. Other higher-level metrics (collection/index statistics etc.) should be collected only once. For these reasons the way you configure the Agents depends on how your mongo cluster is deployed.
To configure this integration for a single node MongoDB deployment:
In a Mongo shell, create a read-only user for the Datadog Agent in the admin
database:
# Authenticate as the admin user.
use admin
db.auth("admin", "<YOUR_MONGODB_ADMIN_PASSWORD>")
# Create the user for the Datadog Agent.
db.createUser({
"user": "datadog",
"pwd": "<UNIQUEPASSWORD>",
"roles": [
{ role: "read", db: "admin" },
{ role: "clusterMonitor", db: "admin" },
{ role: "read", db: "local" },
# Grant additional read-only access to the database you want to collect collection/index statistics from.
{ role: "read", db: "mydb" },
{ role: "read", db: "myanotherdb" },
# Alternatively, grant read-only access to all databases.
{ role: "readAnyDatabase", db: "admin" }
]
})
You only need a single agent, preferably running on the same node, to collect all the available mongo metrics. See below for configuration options.
To configure this integration for a MongoDB replica set:
In a Mongo shell, authenticate to the primary and create a read-only user for the Datadog Agent in the admin
database:
# Authenticate as the admin user.
use admin
db.auth("admin", "<YOUR_MONGODB_ADMIN_PASSWORD>")
# Create the user for the Datadog Agent.
db.createUser({
"user": "datadog",
"pwd": "<UNIQUEPASSWORD>",
"roles": [
{ role: "read", db: "admin" },
{ role: "clusterMonitor", db: "admin" },
{ role: "read", db: "local" },
# Grant additional read-only access to the database you want to collect collection/index statistics from.
{ role: "read", db: "mydb" },
{ role: "read", db: "myanotherdb" },
# Alternatively, grant read-only access to all databases.
{ role: "readAnyDatabase", db: "admin" }
]
})
Install the Datadog Agent on each host in the MongoDB replica set and configure the Agent to connect to the replica on that host (localhost
). Running an Agent on each host results in lower latency and execution times, and ensures that data is still connected in the event a host fails.
For example, on the primary node:
init_config:
instances:
- hosts:
- mongo-primary:27017
On the secondary node:
init_config:
instances:
- hosts:
- mongo-secondary:27017
On the tertiary node:
init_config:
instances:
- hosts:
- mongo-tertiary:27017
To configure this integration for a MongoDB sharded cluster:
For each shard in your cluster, connect to the primary of the replica set and create a local read-only user for the Datadog Agent in the admin
database:
# Authenticate as the admin user.
use admin
db.auth("admin", "<YOUR_MONGODB_ADMIN_PASSWORD>")
# Create the user for the Datadog Agent.
db.createUser({
"user": "datadog",
"pwd": "<UNIQUEPASSWORD>",
"roles": [
{ role: "read", db: "admin" },
{ role: "clusterMonitor", db: "admin" },
{ role: "read", db: "local" }
]
})
Then create the same user from a mongos proxy. This action creates the local user in the config servers and allows direct connection.
Note: Monitoring of arbiter nodes is not supported (see the MongoDB Replica Set Arbiter for more details). However, any status change of an arbiter node is reported by the Agent connected to the primary.
Follow the instructions below to configure this check for an Agent running on a host. For containerized environments, see the Docker, Kubernetes, or ECS sections.
To configure this check for an Agent running on a host:
Edit the mongo.d/conf.yaml
file in the conf.d
folder at the root of your Agent’s configuration directory. See the sample mongo.d/conf.yaml for all available configuration options.
init_config:
instances:
## @param hosts - list of strings - required
## Hosts to collect metrics from, as is appropriate for your deployment topology.
## E.g. for a standalone deployment, specify the hostname and port of the mongod instance.
## For replica sets or sharded clusters, see instructions in the sample conf.yaml.
## Only specify multiple hosts when connecting through mongos
#
- hosts:
- <HOST>:<PORT>
## @param username - string - optional
## The username to use for authentication.
#
username: datadog
## @param password - string - optional
## The password to use for authentication.
#
password: <UNIQUEPASSWORD>
## @param database - string - optional
## The database to collect metrics from.
#
database: <DATABASE>
## @param options - mapping - optional
## Connection options. For a complete list, see:
## https://docs.mongodb.com/manual/reference/connection-string/#connections-connection-options
#
options:
authSource: admin
Starting from Datadog Agent v7.56, you can enable database autodiscovery to automatically collect metrics from all your databases on the MongoDB instance.
Please note that database autodiscovery is disabled by default. Read access to the autodiscovered databases is required to collect metrics from them.
To enable it, add the following configuration to your mongo.d/conf.yaml
file:
init_config:
instances:
## @param hosts - list of strings - required
## Hosts to collect metrics from, as is appropriate for your deployment topology.
## E.g. for a standalone deployment, specify the hostname and port of the mongod instance.
## For replica sets or sharded clusters, see instructions in the sample conf.yaml.
## Only specify multiple hosts when connecting through mongos
#
- hosts:
- <HOST>:<PORT>
## @param username - string - optional
## The username to use for authentication.
#
username: datadog
## @param password - string - optional
## The password to use for authentication.
#
password: <UNIQUE_PASSWORD>
## @param options - mapping - optional
## Connection options. For a complete list, see:
## https://docs.mongodb.com/manual/reference/connection-string/#connections-connection-options
#
options:
authSource: admin
## @param database_autodiscovery - mapping - optional
## Enable database autodiscovery to automatically collect metrics from all your MongoDB databases.
#
database_autodiscovery:
## @param enabled - boolean - required
## Enable database autodiscovery.
#
enabled: true
## @param include - list of strings - optional
## List of databases to include in the autodiscovery. Use regular expressions to match multiple databases.
## For example, to include all databases starting with "mydb", use "^mydb.*".
## By default, include is set to ".*" and all databases are included.
#
include:
- "^mydb.*"
## @param exclude - list of strings - optional
## List of databases to exclude from the autodiscovery. Use regular expressions to match multiple databases.
## For example, to exclude all databases starting with "mydb", use "^mydb.*".
## When the exclude list conflicts with include list, the exclude list takes precedence.
#
exclude:
- "^mydb2.*"
- "admin$"
## @param max_databases - integer - optional
## Maximum number of databases to collect metrics from. The default value is 100.
#
max_databases: 100
## @param refresh_interval - integer - optional
## Interval in seconds to refresh the list of databases. The default value is 600 seconds.
#
refresh_interval: 600
Datadog APM integrates with Mongo to see the traces across your distributed system. Trace collection is enabled by default in the Datadog Agent v6+. To start collecting traces:
Available for Agent versions >6.0
Collecting logs is disabled by default in the Datadog Agent, enable it in your datadog.yaml
file:
logs_enabled: true
Add this configuration block to your mongo.d/conf.yaml
file to start collecting your MongoDB logs:
logs:
- type: file
path: /var/log/mongodb/mongodb.log
service: mongo
source: mongodb
Change the service
and path
parameter values and configure them for your environment. See the sample mongo.yaml for all available configuration options
To configure this check for an Agent running on a container:
Set Autodiscovery Integrations Templates as Docker labels on your application container:
LABEL "com.datadoghq.ad.check_names"='["mongo"]'
LABEL "com.datadoghq.ad.init_configs"='[{}]'
LABEL "com.datadoghq.ad.instances"='[{"hosts": ["%%host%%:%%port%%"], "username": "datadog", "password" : "<UNIQUEPASSWORD>", "database": "<DATABASE>"}]'
Collecting logs is disabled by default in the Datadog Agent. To enable it, see Docker Log Collection.
Then, set Log Integrations as Docker labels:
LABEL "com.datadoghq.ad.logs"='[{"source":"mongodb","service":"<SERVICE_NAME>"}]'
APM for containerized apps is supported on Agent v6+ but requires extra configuration to begin collecting traces.
Required environment variables on the Agent container:
Parameter | Value |
---|---|
<DD_API_KEY> | api_key |
<DD_APM_ENABLED> | true |
<DD_APM_NON_LOCAL_TRAFFIC> | true |
See Tracing Docker Applications for a complete list of available environment variables and configuration.
Then, instrument your application container and set DD_AGENT_HOST
to the name of your Agent container.
To configure this check for an Agent running on Kubernetes:
Set Autodiscovery Integrations Templates as pod annotations on your application container. Aside from this, templates can also be configure with a file, configmap, or key-value store.
Annotations v1 (for Datadog Agent < v7.36)
apiVersion: v1
kind: Pod
metadata:
name: mongo
annotations:
ad.datadoghq.com/mongo.check_names: '["mongo"]'
ad.datadoghq.com/mongo.init_configs: '[{}]'
ad.datadoghq.com/mongo.instances: |
[
{
"hosts": ["%%host%%:%%port%%"],
"username": "datadog",
"password": "<UNIQUEPASSWORD>",
"database": "<DATABASE>"
}
]
spec:
containers:
- name: mongo
Annotations v2 (for Datadog Agent v7.36+)
apiVersion: v1
kind: Pod
metadata:
name: mongo
annotations:
ad.datadoghq.com/mongo.checks: |
{
"mongo": {
"init_config": {},
"instances": [
{
"hosts": ["%%host%%:%%port%%"],
"username": "datadog",
"password": "<UNIQUEPASSWORD>",
"database": "<DATABASE>"
}
]
}
}
spec:
containers:
- name: mongo
Collecting logs is disabled by default in the Datadog Agent. To enable it, see Kubernetes Log Collection.
Then, set Log Integrations as pod annotations. This can also be configured with a file, a configmap, or a key-value store.
Annotations v1/v2
apiVersion: v1
kind: Pod
metadata:
name: mongo
annotations:
ad.datadoghq.com/mongo.logs: '[{"source":"mongodb","service":"<SERVICE_NAME>"}]'
spec:
containers:
- name: mongo
APM for containerized apps is supported on hosts running Agent v6+ but requires extra configuration to begin collecting traces.
Required environment variables on the Agent container:
Parameter | Value |
---|---|
<DD_API_KEY> | api_key |
<DD_APM_ENABLED> | true |
<DD_APM_NON_LOCAL_TRAFFIC> | true |
See Tracing Kubernetes Applications and the Kubernetes DaemonSet Setup for a complete list of available environment variables and configuration.
Then, instrument your application container and set DD_AGENT_HOST
to the name of your Agent container.
To configure this check for an Agent running on ECS:
Set Autodiscovery Integrations Templates as Docker labels on your application container:
{
"containerDefinitions": [{
"name": "mongo",
"image": "mongo:latest",
"dockerLabels": {
"com.datadoghq.ad.check_names": "[\"mongo\"]",
"com.datadoghq.ad.init_configs": "[{}]",
"com.datadoghq.ad.instances": "[{\"hosts\": [\"%%host%%:%%port%%\"], \"username\": \"datadog\", \"password\": \"<UNIQUEPASSWORD>\", \"database\": \"<DATABASE>\"}]"
}
}]
}
Available for Agent versions >6.0
Collecting logs is disabled by default in the Datadog Agent. To enable it, see ECS Log Collection.
Then, set Log Integrations as Docker labels:
{
"containerDefinitions": [{
"name": "mongo",
"image": "mongo:latest",
"dockerLabels": {
"com.datadoghq.ad.logs": "[{\"source\":\"mongodb\",\"service\":\"<SERVICE_NAME>\"}]"
}
}]
}
APM for containerized apps is supported on Agent v6+ but requires extra configuration to begin collecting traces.
Required environment variables on the Agent container:
Parameter | Value |
---|---|
<DD_API_KEY> | api_key |
<DD_APM_ENABLED> | true |
<DD_APM_NON_LOCAL_TRAFFIC> | true |
See Tracing Docker Applications for a complete list of available environment variables and configuration.
Then, instrument your application container and set DD_AGENT_HOST
to the EC2 private IP address.
Run the Agent’s status subcommand and look for mongo
under the Checks section.
mongodb.asserts.msgps (gauge) | Number of message assertions raised per second. Shown as assertion |
mongodb.asserts.regularps (gauge) | Number of regular assertions raised per second. Shown as assertion |
mongodb.asserts.rolloversps (gauge) | Number of times that the rollover counters roll over per second. The counters rollover to zero every 2^30 assertions. Shown as assertion |
mongodb.asserts.userps (gauge) | Number of user assertions raised per second. Shown as assertion |
mongodb.asserts.warningps (gauge) | Number of warnings raised per second. Shown as assertion |
mongodb.backgroundflushing.average_ms (gauge) | Average time for each flush to disk. (deprecated in MongoDB 4.0) Shown as millisecond |
mongodb.backgroundflushing.flushesps (gauge) | Number of times the database has flushed all writes to disk. (deprecated in MongoDB 4.0) Shown as flush |
mongodb.backgroundflushing.last_ms (gauge) | Amount of time that the last flush operation took to complete. (deprecated in MongoDB 4.0) Shown as millisecond |
mongodb.backgroundflushing.total_ms (gauge) | Total number of time that the mongod processes have spent writing (i.e. flushing) data to disk. (deprecated in MongoDB 4.0)Shown as millisecond |
mongodb.chunks.jumbo (gauge) | Total number of 'jumbo' chunks in the mongo cluster. |
mongodb.chunks.total (gauge) | Total number of chunks in the mongo cluster. |
mongodb.collection.avgobjsize (gauge) | The size of the average object in the collection in bytes. Shown as byte |
mongodb.collection.capped (gauge) | Whether or not the collection is capped. Shown as record |
mongodb.collection.collectionscans.nontailable (gauge) | Number of times the collection was scanned without tailable cursor (deprecated). Shown as scan |
mongodb.collection.collectionscans.nontailableps (gauge) | Number of times the collection was scanned without tailable cursor per second. Shown as scan |
mongodb.collection.collectionscans.total (gauge) | Total number of times the collection was scanned (deprecated). Shown as scan |
mongodb.collection.collectionscans.totalps (gauge) | Total number of times the collection was scanned per second. Shown as scan |
mongodb.collection.commands.latency (gauge) | Total latency for commands on the collection. Shown as microsecond |
mongodb.collection.commands.latency.avg (gauge) | Average latency for commands on the collection. Shown as microsecond |
mongodb.collection.commands.opsps (gauge) | Number of command operations per second on the collection. Shown as operation |
mongodb.collection.count (gauge) | Total number of objects in the collection. Shown as item |
mongodb.collection.indexes.accesses.ops (gauge) | Number of time the index was used. Shown as event |
mongodb.collection.indexes.accesses.opsps (gauge) | Number of time the index was used per second. Shown as event |
mongodb.collection.indexsizes (gauge) | Size of index in bytes. Shown as byte |
mongodb.collection.max (gauge) | Maximum number of documents in a capped collection. Shown as document |
mongodb.collection.maxsize (gauge) | Maximum size of a capped collection in bytes. Shown as byte |
mongodb.collection.nindexes (gauge) | Total number of indices on the collection. Shown as index |
mongodb.collection.reads.latency (gauge) | Total latency for read operations on the collection. Shown as microsecond |
mongodb.collection.reads.latency.avg (gauge) | Average latency for read operations on the collection. Shown as microsecond |
mongodb.collection.reads.opsps (gauge) | Number of read operations per second on the collection. Shown as operation |
mongodb.collection.size (gauge) | The total uncompressed size in memory of all records in a collection. The size does not include the size of any indexes associated with the collection. Shown as byte |
mongodb.collection.storagesize (gauge) | Total storage space allocated to this collection for document storage. Shown as byte |
mongodb.collection.totalindexsize (gauge) | Total disk space used by all indexes created on this collection. Shown as byte |
mongodb.collection.transactions.latency (gauge) | Total latency for transactions on the collection. Shown as microsecond |
mongodb.collection.transactions.latency.avg (gauge) | Average latency for transactions on the collection. Shown as microsecond |
mongodb.collection.transactions.opsps (gauge) | Number of transaction operations per second on the collection. Shown as operation |
mongodb.collection.writes.latency (gauge) | Total latency for write operations on the collection. Shown as microsecond |
mongodb.collection.writes.latency.avg (gauge) | Average latency for write operations on the collection. Shown as microsecond |
mongodb.collection.writes.opsps (gauge) | Number of write operations per second on the collection. Shown as operation |
mongodb.connection_pool.numascopedconnections (gauge) | Number of active and stored outgoing scoped synchronous connections from the current mongos instance to other members of the sharded cluster or replica set. Shown as connection |
mongodb.connection_pool.numclientconnections (gauge) | Reports the number of active and stored outgoing synchronous connections from the current mongos instance to other members of the sharded cluster or replica set. Shown as connection |
mongodb.connection_pool.totalavailable (gauge) | Reports the total number of available outgoing connections from the current mongos instance to other members of the sharded cluster or replica set. Shown as connection |
mongodb.connection_pool.totalcreatedps (gauge) | Reports the total number of outgoing connections created per second by the current mongos instance to other members of the sharded cluster or replica set. Shown as connection |
mongodb.connection_pool.totalinuse (gauge) | Reports the total number of outgoing connections from the current mongod/mongos instance to other members of the sharded cluster or replica set that are currently in use. Shown as connection |
mongodb.connection_pool.totalrefreshing (gauge) | Reports the total number of outgoing connections from the current mongos instance to other members of the sharded cluster or replica set that are currently being refreshed. Shown as connection |
mongodb.connections.available (gauge) | Number of unused available incoming connections the database can provide. Shown as connection |
mongodb.connections.current (gauge) | Number of connections to the database server from clients. Shown as connection |
mongodb.connections.totalcreated (gauge) | Total number of connections created. Shown as connection |
mongodb.cursors.timedout (gauge) | Total number of cursors that have timed out since the server process started. Shown as cursor |
mongodb.cursors.totalopen (gauge) | Number of cursors that MongoDB is maintaining for clients Shown as cursor |
mongodb.dbs (gauge) | Total number of existing databases Shown as item |
mongodb.dur.commits (gauge) | Number of transactions written to the journal during the last journal group commit interval. Shown as transaction |
mongodb.dur.commitsinwritelock (gauge) | Count of the commits that occurred while a write lock was held. Shown as commit |
mongodb.dur.compression (gauge) | Compression ratio of the data written to the journal. Shown as fraction |
mongodb.dur.earlycommits (gauge) | Number of times MongoDB requested a commit before the scheduled journal group commit interval. Shown as commit |
mongodb.dur.journaledmb (gauge) | Amount of data written to journal during the last journal group commit interval. Shown as mebibyte |
mongodb.dur.timems.commits (gauge) | Amount of time spent for commits. Shown as millisecond |
mongodb.dur.timems.commitsinwritelock (gauge) | Amount of time spent for commits that occurred while a write lock was held. Shown as millisecond |
mongodb.dur.timems.dt (gauge) | Amount of time over which MongoDB collected the dur.timeMS data.Shown as millisecond |
mongodb.dur.timems.preplogbuffer (gauge) | Amount of time spent preparing to write to the journal. Shown as millisecond |
mongodb.dur.timems.remapprivateview (gauge) | Amount of time spent remapping copy-on-write memory mapped views. Shown as millisecond |
mongodb.dur.timems.writetodatafiles (gauge) | Amount of time spent writing to data files after journaling. Shown as millisecond |
mongodb.dur.timems.writetojournal (gauge) | Amount of time spent writing to the journal Shown as millisecond |
mongodb.dur.writetodatafilesmb (gauge) | Amount of data written from journal to the data files during the last journal group commit interval. Shown as mebibyte |
mongodb.extra_info.heap_usage_bytesps (gauge) | The total size in bytes of heap space used by the database process. Available on Unix/Linux systems only. Shown as byte |
mongodb.extra_info.page_faultsps (gauge) | Number of page faults per second that require disk operations. Shown as fault |
mongodb.fsynclocked (gauge) | Metric representing the fsynclock state of a database. 1 if it's locked and 0 if it's not. |
mongodb.globallock.activeclients.readers (gauge) | Count of the active client connections performing read operations. Shown as connection |
mongodb.globallock.activeclients.total (gauge) | Total number of active client connections to the database. Shown as connection |
mongodb.globallock.activeclients.writers (gauge) | Count of active client connections performing write operations. Shown as connection |
mongodb.globallock.currentqueue.readers (gauge) | Number of operations that are currently queued and waiting for the read lock. Shown as operation |
mongodb.globallock.currentqueue.total (gauge) | Total number of operations queued waiting for the lock. Shown as operation |
mongodb.globallock.currentqueue.writers (gauge) | Number of operations that are currently queued and waiting for the write lock. Shown as operation |
mongodb.globallock.locktime (gauge) | Time since the database last started that the globalLock has been held. Shown as millisecond |
mongodb.globallock.ratio (gauge) | Ratio of the time that the globalLock has been held to the total time since it was created. Shown as fraction |
mongodb.globallock.totaltime (gauge) | Time since the database last started and created the global lock. Shown as microsecond |
mongodb.indexcounters.accessesps (gauge) | Number of times that operations have accessed indexes per second. Shown as event |
mongodb.indexcounters.hitsps (gauge) | Number of times per second that an index has been accessed and mongod is able to return the index from memory. Shown as hit |
mongodb.indexcounters.missesps (gauge) | Number of times per second that an operation attempted to access an index that was not in memory. Shown as miss |
mongodb.indexcounters.missratio (gauge) | Ratio of index hits to misses. Shown as fraction |
mongodb.indexcounters.resetsps (gauge) | Number of times per second the index counters have been reset. Shown as event |
mongodb.locks.collection.acquirecount.exclusiveps (gauge) | Number of times the collection lock type was acquired in the Exclusive (X) mode. Shown as lock |
mongodb.locks.collection.acquirecount.intent_exclusiveps (gauge) | Number of times the collection lock type was acquired in the Intent Exclusive (IX) mode. Shown as lock |
mongodb.locks.collection.acquirecount.intent_sharedps (gauge) | Number of times the collection lock type was acquired in the Intent Shared (IS) mode. Shown as lock |
mongodb.locks.collection.acquirecount.sharedps (gauge) | Number of times the collection lock type was acquired in the Shared (S) mode. Shown as lock |
mongodb.locks.collection.acquirewaitcount.exclusiveps (gauge) | Number of times the collection lock type acquisition in the Exclusive (X) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.collection.acquirewaitcount.sharedps (gauge) | Number of times the collection lock type acquisition in the Shared (S) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.collection.timeacquiringmicros.exclusiveps (gauge) | Wait time for the collection lock type acquisitions in the Exclusive (X) mode. Shown as fraction |
mongodb.locks.collection.timeacquiringmicros.sharedps (gauge) | Wait time for the collection lock type acquisitions in the Shared (S) mode. Shown as fraction |
mongodb.locks.database.acquirecount.exclusiveps (gauge) | Number of times the database lock type was acquired in the Exclusive (X) mode. Shown as lock |
mongodb.locks.database.acquirecount.intent_exclusiveps (gauge) | Number of times the database lock type was acquired in the Intent Exclusive (IX) mode. Shown as lock |
mongodb.locks.database.acquirecount.intent_sharedps (gauge) | Number of times the database lock type was acquired in the Intent Shared (IS) mode. Shown as lock |
mongodb.locks.database.acquirecount.sharedps (gauge) | Number of times the database lock type was acquired in the Shared (S) mode. Shown as lock |
mongodb.locks.database.acquirewaitcount.exclusiveps (gauge) | Number of times the database lock type acquisition in the Exclusive (X) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.database.acquirewaitcount.intent_exclusiveps (gauge) | Number of times the database lock type acquisition in the Intent Exclusive (IX) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.database.acquirewaitcount.intent_sharedps (gauge) | Number of times the database lock type acquisition in the Intent Shared (IS) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.database.acquirewaitcount.sharedps (gauge) | Number of times the database lock type acquisition in the Shared (S) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.database.timeacquiringmicros.exclusiveps (gauge) | Wait time for the database lock type acquisitions in the Exclusive (X) mode. Shown as fraction |
mongodb.locks.database.timeacquiringmicros.intent_exclusiveps (gauge) | Wait time for the database lock type acquisitions in the Intent Exclusive (IX) mode. Shown as fraction |
mongodb.locks.database.timeacquiringmicros.intent_sharedps (gauge) | Wait time for the database lock type acquisitions in the Intent Shared (IS) mode. Shown as fraction |
mongodb.locks.database.timeacquiringmicros.sharedps (gauge) | Wait time for the database lock type acquisitions in the Shared (S) mode. Shown as fraction |
mongodb.locks.global.acquirecount.exclusiveps (gauge) | Number of times the global lock type was acquired in the Exclusive (X) mode. Shown as lock |
mongodb.locks.global.acquirecount.intent_exclusiveps (gauge) | Number of times the global lock type was acquired in the Intent Exclusive (IX) mode. Shown as lock |
mongodb.locks.global.acquirecount.intent_sharedps (gauge) | Number of times the global lock type was acquired in the Intent Shared (IS) mode. Shown as lock |
mongodb.locks.global.acquirecount.sharedps (gauge) | Number of times the global lock type was acquired in the Shared (S) mode. Shown as lock |
mongodb.locks.global.acquirewaitcount.exclusiveps (gauge) | Number of times the global lock type acquisition in the Exclusive (X) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.global.acquirewaitcount.intent_exclusiveps (gauge) | Number of times the global lock type acquisition in the Intent Exclusive (IX) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.global.acquirewaitcount.intent_sharedps (gauge) | Number of times the global lock type acquisition in the Intent Shared (IS) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.global.acquirewaitcount.sharedps (gauge) | Number of times the global lock type acquisition in the Shared (S) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.global.timeacquiringmicros.exclusiveps (gauge) | Wait time for the global lock type acquisitions in the Exclusive (X) mode. Shown as fraction |
mongodb.locks.global.timeacquiringmicros.intent_exclusiveps (gauge) | Wait time for the global lock type acquisitions in the Intent Exclusive (IX) mode. Shown as fraction |
mongodb.locks.global.timeacquiringmicros.intent_sharedps (gauge) | Wait time for the global lock type acquisitions in the Intent Shared (IS) mode. Shown as fraction |
mongodb.locks.global.timeacquiringmicros.sharedps (gauge) | Wait time for the global lock type acquisitions in the Shared (S) mode. Shown as fraction |
mongodb.locks.metadata.acquirecount.exclusiveps (gauge) | Number of times the metadata lock type was acquired in the Exclusive (X) mode. Shown as lock |
mongodb.locks.metadata.acquirecount.sharedps (gauge) | Number of times the metadata lock type was acquired in the Shared (S) mode. Shown as lock |
mongodb.locks.mmapv1journal.acquirecount.intent_exclusiveps (gauge) | Number of times the MMAPv1 storage engine lock type was acquired in the Intent Exclusive (IX) mode. Shown as lock |
mongodb.locks.mmapv1journal.acquirecount.intent_sharedps (gauge) | Number of times the MMAPv1 storage engine lock type was acquired in the Intent Shared (IS) mode. Shown as lock |
mongodb.locks.mmapv1journal.acquirewaitcount.intent_exclusiveps (gauge) | Number of times the MMAPv1 storage engine lock type acquisition in the Intent Exclusive (IX) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.mmapv1journal.acquirewaitcount.intent_sharedps (gauge) | Number of times the MMAPv1 storage engine lock type acquisition in the Intent Shared (IS) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.mmapv1journal.timeacquiringmicros.intent_exclusiveps (gauge) | Wait time for the MMAPv1 storage engine lock type acquisitions in the Intent Exclusive (IX) mode. Shown as fraction |
mongodb.locks.mmapv1journal.timeacquiringmicros.intent_sharedps (gauge) | Wait time for the MMAPv1 storage engine lock type acquisitions in the Intent Shared (IS) mode. Shown as fraction |
mongodb.locks.oplog.acquirecount.intent_exclusiveps (gauge) | Number of times the oplog lock type was acquired in the Intent Exclusive (IX) mode. Shown as lock |
mongodb.locks.oplog.acquirecount.sharedps (gauge) | Number of times the oplog lock type was acquired in the Shared (S) mode. Shown as lock |
mongodb.locks.oplog.acquirewaitcount.intent_exclusiveps (gauge) | Number of times the oplog lock type acquisition in the Intent Exclusive (IX) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.oplog.acquirewaitcount.sharedps (gauge) | Number of times the oplog lock type acquisition in the Shared (S) mode encountered waits because the locks were held in a conflicting mode. Shown as wait |
mongodb.locks.oplog.timeacquiringmicros.intent_exclusiveps (gauge) | Wait time for the oplog lock type acquisitions in the Intent Exclusive (IX) mode. Shown as fraction |
mongodb.locks.oplog.timeacquiringmicros.sharedps (gauge) | Wait time for the oplog lock type acquisitions in the Shared (S) mode. Shown as fraction |
mongodb.mem.bits (gauge) | Size of the in-memory storage engine. Shown as mebibyte |
mongodb.mem.mapped (gauge) | Amount of mapped memory by the database. Shown as mebibyte |
mongodb.mem.mappedwithjournal (gauge) | The amount of mapped memory, including the memory used for journaling. Shown as mebibyte |
mongodb.mem.resident (gauge) | Amount of memory currently used by the database process. Shown as mebibyte |
mongodb.mem.virtual (gauge) | Amount of virtual memory used by the mongod process. Shown as mebibyte |
mongodb.metrics.commands.count.failedps (gauge) | Number of times count failed Shown as command |
mongodb.metrics.commands.count.total (gauge) | Number of times count executed Shown as command |
mongodb.metrics.commands.createindexes.failedps (gauge) | Number of times createIndexes failed Shown as command |
mongodb.metrics.commands.createindexes.total (gauge) | Number of times createIndexes executed Shown as command |
mongodb.metrics.commands.delete.failedps (gauge) | Number of times delete failed Shown as command |
mongodb.metrics.commands.delete.total (gauge) | Number of times delete executed Shown as command |
mongodb.metrics.commands.eval.failedps (gauge) | Number of times eval failed Shown as command |
mongodb.metrics.commands.eval.total (gauge) | Number of times eval executed Shown as command |
mongodb.metrics.commands.findandmodify.failedps (gauge) | Number of times findAndModify failed Shown as command |
mongodb.metrics.commands.findandmodify.total (gauge) | Number of times findAndModify executed Shown as command |
mongodb.metrics.commands.insert.failedps (gauge) | Number of times insert failed Shown as command |
mongodb.metrics.commands.insert.total (gauge) | Number of times insert executed Shown as command |
mongodb.metrics.commands.update.failedps (gauge) | Number of times update failed Shown as command |
mongodb.metrics.commands.update.total (gauge) | Number of times update executed Shown as command |
mongodb.metrics.cursor.open.notimeout (gauge) | Number of open cursors with the option DBQuery.Option.noTimeout set to prevent timeout after a period of inactivity.Shown as cursor |
mongodb.metrics.cursor.open.pinned (gauge) | Number of pinned open cursors. Shown as cursor |
mongodb.metrics.cursor.open.total (gauge) | Number of cursors that MongoDB is maintaining for clients. Shown as cursor |
mongodb.metrics.cursor.timedoutps (gauge) | Number of cursors that time out, per second. Shown as cursor |
mongodb.metrics.document.deletedps (gauge) | Number of documents deleted per second. Shown as document |
mongodb.metrics.document.insertedps (gauge) | Number of documents inserted per second. Shown as document |
mongodb.metrics.document.returnedps (gauge) | Number of documents returned by queries per second. Shown as document |
mongodb.metrics.document.updatedps (gauge) | Number of documents updated per second. Shown as document |
mongodb.metrics.getlasterror.wtime.numps (gauge) | Number of getLastError operations per second with a specified write concern (i.e. w) that wait for one or more members of a replica set to acknowledge the write operation. Shown as operation |
mongodb.metrics.getlasterror.wtime.totalmillisps (gauge) | Fraction of time (ms/s) that the mongod has spent performing getLastError operations with write concern (i.e. w) that wait for one or more members of a replica set to acknowledge the write operation. Shown as fraction |
mongodb.metrics.getlasterror.wtimeoutsps (gauge) | Number of times per second that write concern operations have timed out as a result of the wtimeout threshold to getLastError Shown as event |
mongodb.metrics.operation.fastmodps (gauge) | Number of update operations per second that neither cause documents to grow nor require updates to the index. Shown as operation |
mongodb.metrics.operation.idhackps (gauge) | Number of queries per second that contain the _id field. Shown as query |
mongodb.metrics.operation.scanandorderps (gauge) | Number of queries per second that return sorted numbers that cannot perform the sort operation using an index. Shown as query |
mongodb.metrics.operation.writeconflictsps (gauge) | Number of times per second that write concern operations has encounter a conflict. Shown as event |
mongodb.metrics.query.plancache.classic.hitsps (gauge) | Number of times per second the query planner accesses the classic plan cache and finds a cached plan (requires MongoDB 7.0 and above). Shown as operation |
mongodb.metrics.query.plancache.classic.missesps (gauge) | Number of times per second the query planner accesses the classic plan cache and does not find a cached plan (requires MongoDB 7.0 and above). Shown as operation |
mongodb.metrics.query.plancache.sbe.hitsps (gauge) | Number of times per second the query planner accesses the slot-based execution engine plan cache and finds a cached plan (requires MongoDB 7.0 and above). Shown as operation |
mongodb.metrics.query.plancache.sbe.missesps (gauge) | Number of times per second the query planner accesses the slot-based execution engine plan cache and does not find a cached plan (requires MongoDB 7.0 and above). Shown as operation |
mongodb.metrics.query.sort.spilltodiskps (gauge) | The total number of writes per second to disk caused by sort stages (requires MongoDB 6.2 and above). Shown as operation |
mongodb.metrics.query.sort.totalbytessortedps (gauge) | The total amount of sorted data in bytes per second (requires MongoDB 6.2 and above). Shown as byte |
mongodb.metrics.query.sort.totalkeyssortedps (gauge) | The total number of keys used in sorts per second (requires MongoDB 6.2 and above). Shown as key |
mongodb.metrics.queryexecutor.scannedobjectsps (gauge) | Number of documents scanned per second during queries and query-plan evaluation. Shown as operation |
mongodb.metrics.queryexecutor.scannedps (gauge) | Number of index items scanned per second during queries and query-plan evaluation. Shown as operation |
mongodb.metrics.record.movesps (gauge) | Number of times per second documents move within the on-disk representation of the MongoDB data set. Shown as operation |
mongodb.metrics.repl.apply.batches.numps (gauge) | Number of batches applied across all databases per second. Shown as operation |
mongodb.metrics.repl.apply.batches.totalmillisps (gauge) | Fraction of time (ms/s) the mongod has spent applying operations from the oplog. Shown as fraction |
mongodb.metrics.repl.apply.opsps (gauge) | Number of oplog operations applied per second. Shown as operation |
mongodb.metrics.repl.buffer.count (gauge) | Number of operations in the oplog buffer. Shown as operation |
mongodb.metrics.repl.buffer.maxsizebytes (gauge) | Maximum size of the buffer. Shown as byte |
mongodb.metrics.repl.buffer.sizebytes (gauge) | Current size of the contents of the oplog buffer. Shown as byte |
mongodb.metrics.repl.network.bytesps (gauge) | Amount of data read from the replication sync source per second. Shown as byte |
mongodb.metrics.repl.network.getmores.numps (gauge) | Number of getmore operations per second. Shown as operation |
mongodb.metrics.repl.network.getmores.totalmillisps (gauge) | Fraction of time (ms/s) required to collect data from getmore operations. Shown as fraction |
mongodb.metrics.repl.network.opsps (gauge) | Number of operations read from the replication source per second. Shown as operation |
mongodb.metrics.repl.network.readerscreatedps (gauge) | Number of oplog query processes created per second. Shown as process |
mongodb.metrics.repl.preload.docs.numps (gauge) | Number of documents loaded per second during the pre-fetch stage of replication. Shown as document |
mongodb.metrics.repl.preload.docs.totalmillisps (gauge) | Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication. Shown as fraction |
mongodb.metrics.repl.preload.indexes.numps (gauge) | Number of index entries loaded by members before updating documents as part of the pre-fetch stage of replication. Shown as document |
mongodb.metrics.repl.preload.indexes.totalmillisps (gauge) | Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication. Shown as fraction |
mongodb.metrics.ttl.deleteddocumentsps (gauge) | Number of documents deleted from collections with a ttl index per second. Shown as document |
mongodb.metrics.ttl.passesps (gauge) | Number of times per second the background process removes documents from collections with a ttl index. Shown as operation |
mongodb.network.bytesinps (gauge) | The number of bytes that reflects the amount of network traffic received by this database. Shown as byte |
mongodb.network.bytesoutps (gauge) | The number of bytes that reflects the amount of network traffic sent from this database. Shown as byte |
mongodb.network.numrequestsps (gauge) | Number of distinct requests that the server has received. Shown as request |
mongodb.opcounters.commandps (gauge) | Total number of commands per second issued to the database. Shown as command |
mongodb.opcounters.deleteps (gauge) | Number of delete operations per second. Shown as operation |
mongodb.opcounters.getmoreps (gauge) | Number of getmore operations per second. Shown as operation |
mongodb.opcounters.insertps (gauge) | Number of insert operations per second. Shown as operation |
mongodb.opcounters.queryps (gauge) | Total number of queries per second. Shown as query |
mongodb.opcounters.updateps (gauge) | Number of update operations per second. Shown as operation |
mongodb.opcountersrepl.commandps (gauge) | Total number of replicated commands issued to the database per second. Shown as command |
mongodb.opcountersrepl.deleteps (gauge) | Number of replicated delete operations per second. Shown as operation |
mongodb.opcountersrepl.getmoreps (gauge) | Number of replicated getmore operations per second. Shown as operation |
mongodb.opcountersrepl.insertps (gauge) | Number of replicated insert operations per second. Shown as operation |
mongodb.opcountersrepl.queryps (gauge) | Total number of replicated queries per second. Shown as query |
mongodb.opcountersrepl.updateps (gauge) | Number of replicated update operations per second. Shown as operation |
mongodb.oplatencies.commands.latency (gauge) | Total combined latency for database commands. Shown as microsecond |
mongodb.oplatencies.commands.latency.avg (gauge) | Average latency for database commands. Shown as microsecond |
mongodb.oplatencies.commands.latencyps (gauge) | Total latency statistics for database commands per second (deprecated). Shown as command |
mongodb.oplatencies.reads.latency (gauge) | Total combined latency for read requests. Shown as microsecond |
mongodb.oplatencies.reads.latency.avg (gauge) | Average latency for read requests. Shown as microsecond |
mongodb.oplatencies.reads.latencyps (gauge) | Total latency statistics for read requests per second (deprecated). Shown as operation |
mongodb.oplatencies.writes.latency (gauge) | Total combined latency for write requests. Shown as microsecond |
mongodb.oplatencies.writes.latency.avg (gauge) | Average latency for write requests. Shown as microsecond |
mongodb.oplatencies.writes.latencyps (gauge) | Total latency statistics for write operations per second (deprecated). Shown as operation |
mongodb.oplog.logsizemb (gauge) | Total size of the oplog. Shown as mebibyte |
mongodb.oplog.timediff (gauge) | Oplog window: difference between the first and last operation in the oplog. Shown as second |
mongodb.oplog.usedsizemb (gauge) | Total amount of space used by the oplog. Shown as mebibyte |
mongodb.replset.health (gauge) | Member health value of the replica set: conveys if the member is up (i.e. 1) or down (i.e. 0). |
mongodb.replset.optime_lag (gauge) | Delay between a write operation on the primary and its copy to a secondary. Computed only on primary and tagged by 'member'. Shown as second |
mongodb.replset.replicationlag (gauge) | Delay between a write operation on the primary and its copy to a secondary. Computed on each node and tagged by 'host', but may not be representative of cluster health. Negative values do not indicate that the secondary is ahead of the primary. To use a more up-to-date metric, use mongodb.replset.optime_lag instead. Shown as second |
mongodb.replset.state (gauge) | State of a replica that reflects its disposition within the set. |
mongodb.replset.votefraction (gauge) | Fraction of votes a server will cast in a replica set election. Shown as fraction |
mongodb.replset.votes (gauge) | The number of votes a server will cast in a replica set election. Shown as item |
mongodb.sessions.count (gauge) | Number of active sessions for all users. Shown as session |
mongodb.sharded_data_distribution.num_orphaned_docs (gauge) | Number of orphaned documents in the shard. Shown as document |
mongodb.sharded_data_distribution.num_owned_documents (gauge) | Number of owned documents in the shard. Shown as document |
mongodb.sharded_data_distribution.orphaned_size_bytes (gauge) | Size of orphaned documents in the shard. Shown as byte |
mongodb.sharded_data_distribution.owned_size_bytes (gauge) | Size of owned documents in the shard. Shown as byte |
mongodb.stats.avgobjsize (gauge) | The average size of each document in bytes. Shown as byte |
mongodb.stats.collections (gauge) | Contains a count of the number of collections in that database. |
mongodb.stats.datasize (gauge) | Total size of the data held in this database including the padding factor. Shown as byte |
mongodb.stats.filesize (gauge) | Total size of the data held in this database including the padding factor (only available with the mmapv1 storage engine). Shown as byte |
mongodb.stats.freestoragesize (gauge) | Total amount of free space allocated to all collections in the database for document storage. Shown as byte |
mongodb.stats.fstotalsize (gauge) | Total amount of all disk capacity on the filesystem where MongoDB stores data. Shown as byte |
mongodb.stats.fsusedsize (gauge) | Total amount of all disk space in use on the filesystem where MongoDB stores data. Shown as byte |
mongodb.stats.indexes (gauge) | Total number of indexes across all collections in the database. Shown as index |
mongodb.stats.indexfreestoragesize (gauge) | Total amount of free disk space allocated to all indexes in the database. Shown as byte |
mongodb.stats.indexsize (gauge) | Total size of all indexes created on this database. Shown as byte |
mongodb.stats.numextents (gauge) | Contains a count of the number of extents in the database across all collections. |
mongodb.stats.objects (gauge) | Number of objects (documents) in the database across all collections. Shown as object |
mongodb.stats.storagesize (gauge) | Total amount of space allocated to collections in this database for document storage. Shown as byte |
mongodb.stats.totalfreestoragesize (gauge) | Total amount of free storage space allocated for both documents and indexes in all collections in the database. Shown as byte |
mongodb.stats.totalsize (gauge) | Total amount of disk space allocated for both documents and indexes in all collections in the database. Includes used and free storage space. Shown as byte |
mongodb.stats.views (gauge) | Contains a count of the number of views in the database. |
mongodb.system.cpu.cores (gauge) | The total number of available logical processor cores. Shown as core |
mongodb.system.cpu.percent (gauge) | Total CPU usage percentage of the MongoDB process (only available on self-hosted MongoDB running on the same host as the Agent). Shown as percent |
mongodb.system.mem.limit (gauge) | The system memory (RAM) usage limit. For example running in a container may impose memory limits that are lower than the total system memory. Shown as megabyte |
mongodb.system.mem.total (gauge) | The total amount of system memory (RAM). Shown as megabyte |
mongodb.tcmalloc.generic.current_allocated_bytes (gauge) | Number of bytes used by the application. Shown as byte |
mongodb.tcmalloc.generic.heap_size (gauge) | Bytes of system memory reserved by TCMalloc. Shown as byte |
mongodb.tcmalloc.tcmalloc.aggressive_memory_decommit (gauge) | Status of aggressive memory decommit mode. |
mongodb.tcmalloc.tcmalloc.central_cache_free_bytes (gauge) | Number of free bytes in the central cache. Shown as byte |
mongodb.tcmalloc.tcmalloc.current_total_thread_cache_bytes (gauge) | Number of bytes used across all thread caches. Shown as byte |
mongodb.tcmalloc.tcmalloc.max_total_thread_cache_bytes (gauge) | Upper limit on total number of bytes stored across all per-thread caches. Shown as byte |
mongodb.tcmalloc.tcmalloc.pageheap_free_bytes (gauge) | Number of bytes in free mapped pages in page heap. Shown as byte |
mongodb.tcmalloc.tcmalloc.pageheap_unmapped_bytes (gauge) | Number of bytes in free unmapped pages in page heap. Shown as byte |
mongodb.tcmalloc.tcmalloc.spinlock_total_delay_ns (gauge) | Spinlock delay time. Shown as nanosecond |
mongodb.tcmalloc.tcmalloc.thread_cache_free_bytes (gauge) | Number of free bytes in thread caches. Shown as byte |
mongodb.tcmalloc.tcmalloc.transfer_cache_free_bytes (gauge) | Number of free bytes that are waiting to be transferred between the central cache and a thread cache. Shown as byte |
mongodb.uptime (gauge) | Number of seconds that the mongos or mongod process has been active. Shown as second |
mongodb.usage.commands.count (gauge) | Number of commands since server start (deprecated) Shown as command |
mongodb.usage.commands.countps (gauge) | Number of commands per second Shown as command |
mongodb.usage.commands.time (gauge) | Total time spent performing commands in microseconds Shown as microsecond |
mongodb.usage.getmore.count (gauge) | Number of getmore since server start (deprecated) Shown as fetch |
mongodb.usage.getmore.countps (gauge) | Number of getmore per second Shown as fetch |
mongodb.usage.getmore.time (gauge) | Total time spent performing getmore in microseconds Shown as microsecond |
mongodb.usage.insert.count (gauge) | Number of inserts since server start (deprecated) Shown as commit |
mongodb.usage.insert.countps (gauge) | Number of inserts per second Shown as commit |
mongodb.usage.insert.time (gauge) | Total time spent performing inserts in microseconds Shown as microsecond |
mongodb.usage.queries.count (gauge) | Number of queries since server start (deprecated) Shown as query |
mongodb.usage.queries.countps (gauge) | Number of queries per second Shown as query |
mongodb.usage.queries.time (gauge) | Total time spent performing queries in microseconds Shown as microsecond |
mongodb.usage.readlock.count (gauge) | Number of read locks since server start (deprecated) Shown as lock |
mongodb.usage.readlock.countps (gauge) | Number of read locks per second Shown as lock |
mongodb.usage.readlock.time (gauge) | Total time spent performing read locks in microseconds Shown as microsecond |
mongodb.usage.remove.count (gauge) | Number of removes since server start (deprecated) Shown as commit |
mongodb.usage.remove.countps (gauge) | Number of removes per second Shown as commit |
mongodb.usage.remove.time (gauge) | Total time spent performing removes in microseconds Shown as microsecond |
mongodb.usage.total.count (gauge) | Number of operations since server start (deprecated) Shown as command |
mongodb.usage.total.countps (gauge) | Number of operations per second Shown as command |
mongodb.usage.total.time (gauge) | Total time spent holding locks in microseconds Shown as microsecond |
mongodb.usage.update.count (gauge) | Number of updates since server start (deprecated) Shown as commit |
mongodb.usage.update.countps (gauge) | Number of updates per second Shown as commit |
mongodb.usage.update.time (gauge) | Total time spent performing updates in microseconds Shown as microsecond |
mongodb.usage.writelock.count (gauge) | Number of write locks since server start (deprecated) Shown as lock |
mongodb.usage.writelock.countps (gauge) | Number of write locks per second Shown as lock |
mongodb.usage.writelock.time (gauge) | Total time spent performing write locks in microseconds Shown as microsecond |
mongodb.wiredtiger.cache.bytes_currently_in_cache (gauge) | Size of the data currently in cache. Shown as byte |
mongodb.wiredtiger.cache.bytes_read_into_cache (gauge) | Number of bytes read into the cache. Shown as byte |
mongodb.wiredtiger.cache.bytes_written_from_cache (gauge) | Number of bytes written from the cache. Shown as byte |
mongodb.wiredtiger.cache.failed_eviction_of_pages_exceeding_the_in_memory_maximumps (gauge) | Number of failed eviction of pages that exceeded the in-memory maximum, per second. Shown as page |
mongodb.wiredtiger.cache.in_memory_page_splits (gauge) | In-memory page splits. Shown as split |
mongodb.wiredtiger.cache.maximum_bytes_configured (gauge) | Maximum cache size. Shown as byte |
mongodb.wiredtiger.cache.maximum_page_size_at_eviction (gauge) | Maximum page size at eviction. Shown as byte |
mongodb.wiredtiger.cache.modified_pages_evicted (gauge) | Number of pages, that have been modified, evicted from the cache. Shown as page |
mongodb.wiredtiger.cache.pages_currently_held_in_cache (gauge) | Number of pages currently held in the cache. Shown as page |
mongodb.wiredtiger.cache.pages_evicted_by_application_threadsps (gauge) | Number of page evicted by application threads per second. Shown as page |
mongodb.wiredtiger.cache.pages_evicted_exceeding_the_in_memory_maximumps (gauge) | Number of pages evicted because they exceeded the cache in-memory maximum, per second. Shown as page |
mongodb.wiredtiger.cache.pages_read_into_cache (gauge) | Number of pages read into the cache. Shown as page |
mongodb.wiredtiger.cache.pages_requested_from_cache (gauge) | Number of pages requested from the cache. Shown as page |
mongodb.wiredtiger.cache.pages_written_from_cache (gauge) | Number of pages writtent from the cache Shown as page |
mongodb.wiredtiger.cache.tracked_dirty_bytes_in_cache (gauge) | Size of the dirty data in the cache. Shown as byte |
mongodb.wiredtiger.cache.unmodified_pages_evicted (gauge) | Number of pages, that were not modified, evicted from the cache. Shown as page |
mongodb.wiredtiger.concurrenttransactions.read.available (gauge) | Number of available read tickets (concurrent transactions) remaining. Shown as ticket |
mongodb.wiredtiger.concurrenttransactions.read.out (gauge) | Number of read tickets (concurrent transactions) in use. Shown as ticket |
mongodb.wiredtiger.concurrenttransactions.read.totaltickets (gauge) | Total number of read tickets (concurrent transactions) available. Shown as ticket |
mongodb.wiredtiger.concurrenttransactions.write.available (gauge) | Number of available write tickets (concurrent transactions) remaining. Shown as ticket |
mongodb.wiredtiger.concurrenttransactions.write.out (gauge) | Number of write tickets (concurrent transactions) in use. Shown as ticket |
mongodb.wiredtiger.concurrenttransactions.write.totaltickets (gauge) | Total number of write tickets (concurrent transactions) available. Shown as ticket |
See the MongoDB 3.0 Manual for more detailed descriptions of some of these metrics.
The following metrics are not collected by default. Use the additional_metrics
parameter in your mongo.d/conf.yaml
file to collect them:
metric prefix | what to add to additional_metrics to collect it |
---|---|
mongodb.collection | collection |
mongodb.usage.commands | top |
mongodb.usage.getmore | top |
mongodb.usage.insert | top |
mongodb.usage.queries | top |
mongodb.usage.readLock | top |
mongodb.usage.writeLock | top |
mongodb.usage.remove | top |
mongodb.usage.total | top |
mongodb.usage.update | top |
mongodb.usage.writeLock | top |
mongodb.tcmalloc | tcmalloc |
mongodb.metrics.commands | metrics.commands |
mongodb.chunks.jumbo | jumbo_chunks |
mongodb.chunks.total | jumbo_chunks |
mongodb.sharded_data_distribution | sharded_data_distribution |
Replication state changes:
This check emits an event each time a Mongo node has a change in its replication state.
mongodb.can_connect
Returns CRITICAL
if the Agent is unable to connect to the monitored MongoDB instance. Returns OK
otherwise.
Statuses: ok, critical
Need help? Contact Datadog support.
Additional helpful documentation, links, and articles: