- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Database Monitoring offers comprehensive insights into your MongoDB databases by providing access to critical metrics, slow operations, operation samples, explain plans, and replication state changes. To take advantage of Database Monitoring for MongoDB, ensure that the Datadog Agent is installed and configured to connect to your MongoDB instances. This guide outlines the steps to set up Database Monitoring for self-hosted MongoDB.
Database Monitoring for MongoDB captures slow operations from either MongoDB slow query logs or the system.profile
collection. Slow operations are defined as those taking longer than the slowms
threshold set in your MongoDB configuration. Monitoring slow operations is critical to identify and troubleshoot performance issues.
Database Monitoring for MongoDB collects explain plans for current running read operations and slow operations. Explain plans provide detailed insights into the query execution plans, helping you optimize query performance.
Database Monitoring for MongoDB now offers schema and index analysis for your MongoDB collections. This feature provides insights into the structure and organization of your data by collecting inferred schema details and index information.
Using a document sampling approach with the $sample
aggregation stage, Datadog analyzes your collection to identify common fields, their data types, and how often each field appears across the sampled documents (field prevalence). In addition to schema details, Database Monitoring for MongoDB also gathers information on the indexes present, giving you a comprehensive view of how data is structured and optimized for querying.
To enable Database Monitoring for your database:
The Datadog Agent requires read-only access to the MongoDB instance to collect statistics and queries.
In a Mongo shell, authenticate to the MongoDB instance, create a read-only user for the Datadog Agent in the admin
database, and grant the required permissions:
# 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": "<UNIQUE_PASSWORD>",
"roles": [
{ role: "read", db: "admin" },
{ role: "read", db: "local" },
{ role: "clusterMonitor", db: "admin" }
]
})
Grant additional permissions to the datadog
user in the databases you want to monitor:
db.grantRolesToUser("datadog", [
{ role: "read", db: "mydatabase" },
{ role: "read", db: "myotherdatabase" }
])
Alternatively, you can grant readAnyDatabase
role to the datadog
user in the admin
database to monitor all databases:
db.grantRolesToUser("datadog", [
{ role: "readAnyDatabase", db: "admin" }
])
In a Mongo shell, authenticate to the primary node of the replica set, create a read-only user for the Datadog Agent in the admin
database, and grant the required permissions:
# 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": "<UNIQUE_PASSWORD>",
"roles": [
{ role: "read", db: "admin" },
{ role: "read", db: "local" },
{ role: "clusterMonitor", db: "admin" }
]
})
Grant additional permissions to the datadog
user in the databases you want to monitor:
db.grantRolesToUser("datadog", [
{ role: "read", db: "mydatabase" },
{ role: "read", db: "myotherdatabase" }
])
Alternatively, you can grant readAnyDatabase
role to the datadog
user in the admin
database to monitor all databases:
db.grantRolesToUser("datadog", [
{ role: "readAnyDatabase", db: "admin" }
])
admin
database, and grant the required permissions:# 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": "<UNIQUE_PASSWORD>",
"roles": [
{ role: "read", db: "admin" },
{ role: "read", db: "local" },
{ role: "clusterMonitor", db: "admin" }
]
})
Grant additional permissions to the datadog
user in the databases you want to monitor:
db.grantRolesToUser("datadog", [
{ role: "read", db: "mydatabase" },
{ role: "read", db: "myotherdatabase" }
])
Alternatively, you can grant the readAnyDatabase
role to the datadog
user in the admin
database to monitor all databases:
db.grantRolesToUser("datadog", [
{ role: "readAnyDatabase", db: "admin" }
])
mongos
proxy. This action creates the local user in the config servers and allows direct connection.Store your password using secret management software such as Vault. You can then reference this password as ENC[<SECRET_NAME>]
in your Agent configuration files: for example, ENC[datadog_user_database_password]
. See Secrets Management for more information.
The examples on this page use datadog_user_database_password
to refer to the name of the secret where your password is stored. It is possible to reference your password in plain text, but this is not recommended.
Datadog recommends installing the Agent directly on the MongoDB host, as that enables the Agent to collect a variety of system telemetry (CPU, memory, disk, network) in addition to MongoDB specific telemetry.
The Database Monitoring feature for MongoDB is available in the beta version of the Datadog Agent. To install the beta version of the Datadog Agent, follow the instructions for your environment. A Datadog API key is required.
To install the beta version of the Datadog Agent on a Linux host, run the following command.
Replace <DD_API_KEY>
with your Datadog API key and <DD_SITE>
with your Datadog site.
# Override the following environment variables
export DD_REPO_URL=datad0g.com
export DD_AGENT_DIST_CHANNEL=beta
export DD_AGENT_MAJOR_VERSION=7
export DD_AGENT_MINOR_VERSION="58.0~dbm~mongo~1.6"
DD_API_KEY=<DD_API_KEY> DD_SITE=<DD_SITE> bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
To install the beta version of the containerized Datadog Agent, run the following command.
Replace <DD_API_KEY>
with your Datadog API key and <DD_SITE>
with your Datadog site.
# Override the following environment variables
export DD_API_KEY=<DD_API_KEY>
export DD_SITE=<DD_SITE>
export DD_AGENT_VERSION=7.58.0-dbm-mongo-1.6
docker pull "datadog/agent:${DD_AGENT_VERSION}"
To install the beta version of the Datadog Agent on Kubernetes, run the following command.
Replace <DD_API_KEY>
with your Datadog API key and <DD_SITE>
with your Datadog site.
# Override the following environment variables
export DD_API_KEY=<DD_API_KEY>
export DD_SITE=<DD_SITE>
helm repo add datadog https://helm.datadoghq.com
helm repo update
kubectl create secret generic datadog-secret --from-literal api-key="${DD_API_KEY}"
Create a values.yaml
file with the following content:
datadog:
agents:
image:
tag: 7.58.0-dbm-mongo-1.6
registry: datadog/agent
apiKeyExistingSecret: datadog-secret
To configure the Agent to monitor a standalone MongoDB instance, use the following configuration block:
init_config:
instances:
## @param hosts - required
## Specify the hostname, IP address, or UNIX domain socket
## of the standalone mongod instance. If the port number
## is not specified, the default port 27017 is used.
#
- 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: "ENC[datadog_user_database_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 tls - boolean - optional
## Set to true to connect to the MongoDB instance using TLS.
#
tls: true
## @param dbm - boolean - optional
## Set to true to enable Database Monitoring.
#
dbm: true
## @param cluster_name - string - optional
## The unique name of the cluster to which the monitored MongoDB instance belongs.
## Used to group MongoDB instances in a MongoDB cluster.
## Required when `dbm` is enabled.
#
cluster_name: <MONGO_CLUSTER_NAME>
## @param reported_database_hostname - string - optional
## Set the reported database hostname for the connected MongoDB instance.
## This value overrides the MongoDB hostname detected by the Agent
## from the MongoDB admin command serverStatus.host.
#
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
## @param additional_metrics - list of strings - optional
## List of additional metrics to collect. Available options are:
## - metrics.commands: Use of database commands
## - tcmalloc: TCMalloc memory allocator
## - top: Usage statistics for each collection
## - collection: Metrics of the specified collections
#
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
## @param collections_indexes_stats - boolean - optional
## Set to true to collect index statistics for the specified collections.
## Requires `collections` to be set.
#
collections_indexes_stats: true
## @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
To monitor a MongoDB replica set, the Agent needs to connect to all members (including the arbiter) of the replica set.
Use the following configuration block as an example to configure the Agent to connect to a replica set member:
init_config:
instances:
## @param hosts - required
## Specify the hostname, IP address, or UNIX domain socket of
## a mongod instance as listed in the replica set configuration.
## If the port number is not specified, the default port 27017 is used.
#
- hosts:
- <HOST>:<PORT> # Primary node
## @param username - string - optional
## The username to use for authentication.
#
username: datadog
## @param password - string - optional
## The password to use for authentication.
#
password: "ENC[datadog_user_database_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 tls - boolean - optional
## Set to true to connect to the MongoDB instance using TLS.
#
tls: true
## @param dbm - boolean - optional
## Set to true to enable Database Monitoring.
#
dbm: true
## @param cluster_name - string - optional
## The unique name of the cluster to which the monitored MongoDB instance belongs.
## Used to group MongoDB instances in a MongoDB cluster.
## Required when `dbm` is enabled.
#
cluster_name: <MONGO_CLUSTER_NAME>
## @param reported_database_hostname - string - optional
## Set the reported database hostname for the connected MongoDB instance.
## This value overrides the MongoDB hostname detected by the Agent
## from the MongoDB admin command serverStatus.host.
#
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
## @param additional_metrics - list of strings - optional
## List of additional metrics to collect. Available options are:
## - metrics.commands: Use of database commands
## - tcmalloc: TCMalloc memory allocator
## - top: Usage statistics for each collection
## - collection: Metrics of the specified collections
#
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
## @param collections_indexes_stats - boolean - optional
## Set to true to collect index statistics for the specified collections.
## Requires `collections` to be set.
#
collections_indexes_stats: true
## @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
An example configuration for a replica set with 1 primary and 2 secondaries is as follows:
init_config:
instances:
- hosts:
- <HOST_REPLICA_1>:<PORT> # Primary node
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
database_autodiscovery:
enabled: true
- hosts:
- <HOST_REPLICA_2>:<PORT> # Secondary node
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
database_autodiscovery:
enabled: true
- hosts:
- <HOST_REPLICA_3>:<PORT> # Secondary node
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
database_autodiscovery:
enabled: true
To monitor a MongoDB sharded cluster, the Agent needs to connect to the mongos
router(s) and all members of the shards. If you have multiple mongos
routers, you can configure the Agent to connect to them for load balancing.
Use the following configuration block as an example to configure the Agent to connect to a Mongos router:
init_config:
instances:
## @param hosts - required
## For a sharded cluster, you need one check instance for each mongod instance in
## each shard (including the configsvr shard) as well as one additional check instance
## that connects to at least one mongos node.
## Specify the hostname, IP address, or UNIX domain socket of the mongod or mongos instance.
## If the port number is not specified, the default port 27017 is used.
- 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: "ENC[datadog_user_database_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 tls - boolean - optional
## Set to true to connect to the MongoDB instance using TLS.
#
tls: true
## @param dbm - boolean - optional
## Set to true to enable Database Monitoring.
#
dbm: true
## @param cluster_name - string - optional
## The unique name of the cluster to which the monitored MongoDB instance belongs.
## Used to group MongoDB instances in a MongoDB cluster.
## Required when `dbm` is enabled.
#
cluster_name: <MONGO_CLUSTER_NAME>
## @param reported_database_hostname - string - optional
## Set the reported database hostname for the connected MongoDB instance.
## This value overrides the MongoDB hostname detected by
## the Agent from the MongoDB admin command serverStatus.host.
#
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
## @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
Refer to the Replica Set configuration for an example configuration for connecting to members in each shard and the config server.
An example configuration for a sharded cluster with 1 mongos
router and 2 shards is as follows:
init_config:
instances:
## mongos router
- hosts:
- <HOST_MONGOS>:<PORT>
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection", "jumbo_chunks"]
database_autodiscovery:
enabled: true
## Shard1
- hosts:
- <HOST_SHARD1_1>:<PORT> # Primary node
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
database_autodiscovery:
enabled: true
- hosts:
- <HOST_SHARD1_2>:<PORT> # Secondary node
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
database_autodiscovery:
enabled: true
- hosts:
- <HOST_SHARD1_3>:<PORT> # Secondary node
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
database_autodiscovery:
enabled: true
## Shard 2
- hosts:
- <HOST_SHARD2_1>:<PORT> # Primary node
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
database_autodiscovery:
enabled: true
- hosts:
- <HOST_SHARD2_2>:<PORT> # Secondary node
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
database_autodiscovery:
enabled: true
- hosts:
- <HOST_SHARD2_3>:<PORT> # Secondary node
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
database_autodiscovery:
enabled: true
## Config server
- hosts:
- <HOST_CONFIG_1>:<PORT> # Primary node
username: datadog
password: "ENC[datadog_user_database_password]"
database: config
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
- hosts:
- <HOST_CONFIG_2>:<PORT> # Secondary node
username: datadog
password: "ENC[datadog_user_database_password]"
database: config
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
- hosts:
- <HOST_CONFIG_3>:<PORT> # Secondary node
username: datadog
password: "ENC[datadog_user_database_password]"
database: config
options:
authSource: admin
tls: true
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
Place the MongoDB Agent configuration file created in the previous step in /etc/datadog-agent/conf.d/mongo.d/conf.yaml
. See the sample conf file for all available configuration options.
Once all Agent configuration is complete, restart the Datadog Agent.
Run the Agent’s status subcommand and look for mongo
under the Checks section. Navigate to the Database Monitoring for MongoDB page in Datadog to get started.
To configure the Database Monitoring Agent running in a Docker container, set the Autodiscovery Integration Templates as Docker labels on your Agent container.
The MongoDB check is included in the Datadog Agent. No additional installation is necessary.
Note: The Agent must have read permission on the Docker socket for autodiscovery of labels to work.
Add the configuration details for the MongoDB check from the previous step in the com.datadoghq.ad.checks
label. See the sample conf file for all available configuration options.
export DD_API_KEY=<DD_API_KEY>
export DD_AGENT_VERSION=7.58.0-dbm-mongo-1.6
docker run -e "DD_API_KEY=${DD_API_KEY}" \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-l com.datadoghq.ad.checks='{
"mongo": {
"init_config": {},
"instances": [{
"hosts": ["<HOST>:<PORT>"],
"username": "datadog",
"password": "<UNIQUE_PASSWORD>",
"options": {
"authSource": "admin"
},
"dbm": true,
"cluster_name": "<MONGO_CLUSTER_NAME>",
"reported_database_hostname": "<DATABASE_HOSTNAME_OVERRIDE>",
"additional_metrics": ["metrics.commands", "tcmalloc", "top", "collection"],
"collections_indexes_stats": true,
"database_autodiscovery": {
"enabled": true
}
}]
}
}' \
datadog/agent:${DD_AGENT_VERSION}
Run the Agent’s status subcommand and look for mongo
under the Checks section. Navigate to the Database Monitoring for MongoDB page in Datadog to get started.
If you have a Kubernetes cluster, use the Datadog Cluster Agent for Database Monitoring.
If cluster checks are not already enabled in your Kubernetes cluster, follow the instructions to enable cluster checks. You can configure the Cluster Agent either with static files mounted in the Cluster Agent container, or by using Kubernetes service annotations.
Execute the following Helm command to install the Datadog Cluster Agent on your Kubernetes cluster. Replace the values to match your account and environment:
helm repo add datadog https://helm.datadoghq.com
helm repo update
helm install <RELEASE_NAME> \
--set 'datadog.apiKey=<DATADOG_API_KEY>' \
--set 'clusterAgent.enabled=true' \
--set 'clusterChecksRunner.enabled=true' \
--set 'clusterAgent.confd.mongo\.yaml=cluster_check: true
init_config:
instances:
- hosts:
- <HOST>:<PORT>
username: datadog
password: <UNIQUE_PASSWORD>
options:
authSource: admin
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
database_autodiscovery:
enabled: true
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true' \
datadog/datadog
To configure a cluster check with a mounted configuration file, mount the configuration file in the Cluster Agent container on the path: /conf.d/mongo.yaml
:
cluster_check: true # Make sure to include this flag
init_config:
instances:
- hosts:
- <HOST>:<PORT>
username: datadog
password: "ENC[datadog_user_database_password]"
options:
authSource: admin
dbm: true
cluster_name: <MONGO_CLUSTER_NAME>
reported_database_hostname: <DATABASE_HOSTNAME_OVERRIDE>
database_autodiscovery:
enabled: true
additional_metrics: ["metrics.commands", "tcmalloc", "top", "collection"]
collections_indexes_stats: true
Rather than mounting a file, you can declare the instance configuration as a Kubernetes Service. To configure this check for an Agent running on Kubernetes, create a Service in the same namespace as the Datadog Cluster Agent:
apiVersion: v1
kind: Service
metadata:
name: mongodb-datadog-check-instances
annotations:
ad.datadoghq.com/mongo.checks: |
{
"mongo": {
"init_config": {},
"instances": [{
"hosts": ["<HOST>:<PORT>"],
"username": "datadog",
"password": "ENC[datadog_user_database_password]",
"options": {
"authSource": "admin"
},
"dbm": true,
"cluster_name": "<MONGO_CLUSTER_NAME>",
"reported_database_hostname": "<DATABASE_HOSTNAME_OVERRIDE>",
"additional_metrics": ["metrics.commands", "tcmalloc", "top", "collection"],
"collections_indexes_stats": true,
"database_autodiscovery": {
"enabled": true
}
}]
}
}
spec:
ports:
- port: 27017
protocol: TCP
targetPort: 27017
name: mongodb
The Cluster Agent automatically registers this configuration and begins running the MongoDB integration.
To avoid exposing the datadog
user’s password in plain text, use the Agent’s secret management package and declare the password using the ENC[]
syntax.
Run the Agent’s status subcommand and look for mongo
under the Checks section. Navigate to the Database Monitoring for MongoDB page in Datadog to get started.
Refer to the MongoDB integration documentation for a comprehensive list of metrics collected by the MongoDB integration.
Database Monitoring for MongoDB captures slow operations from either MongoDB slow query logs or the system.profile
collection. Slow operations are defined as those taking longer than the slowms
threshold set in your MongoDB configuration.
system.profile
collection.Database Monitoring for MongoDB gathers operation samples using the currentOp
command. This command provides information about currently executing operations in the MongoDB instance. Additionally, Database Monitoring collects explain plans for the read operation samples using the explain
command, offering detailed insights into the query execution plans.
Database Monitoring for MongoDB generates an event each time there is a change in the replication state within the MongoDB instance. This ensures that any changes in replication are promptly detected and reported.
Database Monitoring for MongoDB collects inferred schemas and indexes of MongoDB collections. This information is used to provide insights into the structure and organization of your collections.
When analyzing MongoDB collections, Datadog collects inferred schema information by sampling documents using the $sample
aggregation stage. From this analysis, only metadata about the schema is gathered and sent to Datadog, including field names, field prevalence (how often each field appears), and their respective data types. Datadog does not collect or transmit the actual content of documents or any customer business data. This ensures that sensitive data remains protected while still providing valuable insights into the structure and organization of your collections.