Skip to main content

MongoDB

Plugin: go.d.plugin Module: mongodb

Overview

This collector monitors MongoDB servers.

Executed queries:

This collector is supported on all platforms.

This collector supports collecting metrics from multiple instances of this integration, including remote instances.

Default Behavior

Auto-Detection

This integration doesn't support auto-detection.

Limits

The default configuration for this integration does not impose any limits on data collection.

Performance Impact

The default configuration for this integration is not expected to impose a significant performance impact on the system.

Metrics

Metrics grouped by scope.

The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.

  • WireTiger metrics are available only if WiredTiger is used as the storage engine.
  • Sharding metrics are available on shards only for mongos.

Per MongoDB instance

These metrics refer to the entire monitored application.

This scope has no labels.

Metrics:

MetricDimensionsUnit
mongodb.operations_ratereads, writes, commandsoperations/s
mongodb.operations_latency_timereads, writes, commandsmilliseconds
mongodb.operations_by_type_rateinsert, query, update, delete, getmore, commandoperations/s
mongodb.document_operations_rateinserted, deleted, returned, updatedoperations/s
mongodb.scanned_indexes_ratescannedindexes/s
mongodb.scanned_documents_ratescanneddocuments/s
mongodb.active_clients_countreaders, writersclients
mongodb.queued_operations_countreads, writesoperations
mongodb.cursors_open_countopencursors
mongodb.cursors_open_no_timeout_countopen_no_timeoutcursors
mongodb.cursors_opened_rateopenedcursors/s
mongodb.cursors_timed_out_ratetimed_outcursors/s
mongodb.cursors_by_lifespan_countle_1s, 1s_5s, 5s_15s, 15s_30s, 30s_1m, 1m_10m, ge_10mcursors
mongodb.transactions_countactive, inactive, open, preparedtransactions
mongodb.transactions_ratestarted, aborted, committed, preparedtransactions/s
mongodb.connections_usageavailable, usedconnections
mongodb.connections_by_state_countactive, threaded, exhaust_is_master, exhaust_hello, awaiting_topology_changesconnections
mongodb.connections_ratecreatedconnections/s
mongodb.asserts_rateregular, warning, msg, user, tripwire, rolloversasserts/s
mongodb.network_traffic_ratein, outbytes/s
mongodb.network_requests_raterequestsrequests/s
mongodb.network_slow_dns_resolutions_rateslow_dnsresolutions/s
mongodb.network_slow_ssl_handshakes_rateslow_sslhandshakes/s
mongodb.memory_resident_sizeusedbytes
mongodb.memory_virtual_sizeusedbytes
mongodb.memory_page_faults_ratepgfaultspgfaults/s
mongodb.memory_tcmalloc_statsallocated, central_cache_freelist, transfer_cache_freelist, thread_cache_freelists, pageheap_freelist, pageheap_unmappedbytes
mongodb.wiredtiger_concurrent_read_transactions_usageavailable, usedtransactions
mongodb.wiredtiger_concurrent_write_transactions_usageavailable, usedtransactions
mongodb.wiredtiger_cache_usageusedbytes
mongodb.wiredtiger_cache_dirty_space_sizedirtybytes
mongodb.wiredtiger_cache_io_rateread, writtenpages/s
mongodb.wiredtiger_cache_evictions_rateunmodified, modifiedpages/s
mongodb.sharding_nodes_countshard_aware, shard_unawarenodes
mongodb.sharding_sharded_databases_countpartitioned, unpartitioneddatabases
mongodb.sharding_sharded_collections_countpartitioned, unpartitionedcollections

Per lock type

These metrics refer to the lock type.

Labels:

LabelDescription
lock_typelock type (e.g. global, database, collection, mutex)

Metrics:

MetricDimensionsUnit
mongodb.lock_acquisitions_rateshared, exclusive, intent_shared, intent_exclusiveacquisitions/s

Per commit type

These metrics refer to the commit type.

Labels:

LabelDescription
commit_typecommit type (e.g. noShards, singleShard, singleWriteShard)

Metrics:

MetricDimensionsUnit
mongodb.transactions_commits_ratesuccess, failcommits/s
mongodb.transactions_commits_duration_timecommitsmilliseconds

Per database

These metrics refer to the database.

Labels:

LabelDescription
databasedatabase name

Metrics:

MetricDimensionsUnit
mongodb.database_collection_countcollectionscollections
mongodb.database_indexes_countindexesindexes
mongodb.database_views_countviewsviews
mongodb.database_documents_countdocumentsdocuments
mongodb.database_data_sizedata_sizebytes
mongodb.database_storage_sizestorage_sizebytes
mongodb.database_index_sizeindex_sizebytes

Per replica set member

These metrics refer to the replica set member.

Labels:

LabelDescription
repl_set_memberreplica set member name

Metrics:

MetricDimensionsUnit
mongodb.repl_set_member_stateprimary, startup, secondary, recovering, startup2, unknown, arbiter, down, rollback, removedstate
mongodb.repl_set_member_health_statusup, downstatus
mongodb.repl_set_member_replication_lag_timereplication_lagmilliseconds
mongodb.repl_set_member_heartbeat_latency_timeheartbeat_latencymilliseconds
mongodb.repl_set_member_ping_rtt_timeping_rttmilliseconds
mongodb.repl_set_member_uptimeuptimeseconds

Per shard

These metrics refer to the shard.

Labels:

LabelDescription
shard_idshard id

Metrics:

MetricDimensionsUnit
mongodb.sharding_shard_chunks_countchunkschunks

Functions

This collector exposes real-time functions for interactive troubleshooting in the Top tab.

Top Queries

Retrieves profiled query statistics from MongoDB system.profile collection.

This function queries the system.profile collection across all user databases (excluding admin, local, config) to retrieve slow or sampled queries captured by the MongoDB profiler. It provides detailed execution metrics including timing, document counts, and execution plan information.

Use cases:

  • Identify slow queries that exceed the profiling threshold
  • Analyze query patterns by examining docs examined vs docs returned ratios
  • Detect collection scans (COLLSCAN) that may need index optimization

Query text is truncated at 4096 characters for display purposes.

AspectDescription
NameMongodb:top-queries
Require Cloudyes
PerformanceReads from system.profile collection across all user databases:
• Profiling itself adds overhead to MongoDB operations (typically 1-5%)
• Default limit of 500 rows balances usefulness with performance
SecurityQuery text may contain unmasked literal values including potentially sensitive data:
• Document field values in query filters
• Personal information in inserted/updated documents
• Access should be restricted to authorized personnel only
AvailabilityAvailable when:
• The collector has successfully connected to MongoDB
• Profiling is enabled on at least one user database
• Returns HTTP 503 if collector is still initializing or profiling is disabled on all databases
• Returns HTTP 500 if the query fails
• Returns HTTP 504 if the query times out

Prerequisites

Enable MongoDB profiling

Database profiling must be enabled on each database you want to monitor, and the function must be enabled in the collector configuration.

  1. Enable profiling on a database (profile slow queries > 100ms):

    use myDatabase
    db.setProfilingLevel(1, { slowms: 100 })
  2. Or profile all operations (level 2, use with caution):

    db.setProfilingLevel(2)
  3. Verify profiling status:

    db.getProfilingStatus()
  4. Enable the function in Netdata collector config:

    jobs:
    - name: local
    uri: mongodb://localhost:27017
    top_queries_function_enabled: true
info
  • Profiling level 0 = off, 1 = slow operations only, 2 = all operations
  • The slowms threshold determines which queries are captured at level 1
  • system.profile is a capped collection; old entries are automatically removed
  • System databases (admin, local, config) are excluded from profiling queries

Parameters

ParameterTypeDescriptionRequiredDefaultOptions
Filter ByselectSelect the primary sort column. Options include execution time, docs examined, keys examined, and more. Defaults to execution time to focus on slowest queries.yesexecution_time

Returns

Profiled query statistics from system.profile. Each row represents a single profiled operation with execution metrics and plan details.

ColumnTypeUnitVisibilityDescription
TimestamptimestampWhen the operation was profiled. Useful for correlating slow queries with application events.
NamespacestringDatabase and collection name in format database.collection. Identifies which collection the operation targeted.
OperationstringType of operation: query, insert, update, remove, command, getmore. Helps categorize workload patterns.
QuerystringThe command document as JSON showing the query filter, projection, and options. Truncated to 4096 characters.
Execution TimedurationsecondsTotal execution time of the operation. High values indicate slow queries that may need optimization.
Docs ExaminedintegerNumber of documents scanned during execution. A high ratio of docs examined to docs returned suggests missing or inefficient indexes.
Keys ExaminedintegerNumber of index keys scanned. Compare with docs examined to assess index efficiency.
Docs ReturnedintegerNumber of documents returned to the client. Compare with docs examined to identify inefficient queries.
Plan SummarystringExecution plan summary (e.g., IXSCAN, COLLSCAN, SORT). COLLSCAN indicates a full collection scan that may need an index.
ClientstringClient IP address or hostname that executed the operation. Useful for identifying query sources.
UserstringAuthenticated user who executed the operation. Empty for unauthenticated connections.
Docs DeletedintegerhiddenNumber of documents deleted by the operation. Relevant for remove operations.
Docs InsertedintegerhiddenNumber of documents inserted by the operation. Relevant for insert operations.
Docs ModifiedintegerhiddenNumber of documents modified by the operation. Relevant for update operations.
Response LengthintegerhiddenSize of the response in bytes. Large responses may indicate queries returning excessive data.
Num YieldintegerhiddenNumber of times the operation yielded to allow other operations to proceed. High yields may indicate lock contention.
App NamestringApplication name from the client connection string. Useful for identifying which application generated the query.
Cursor ExhaustedstringhiddenWhether the cursor was fully exhausted (Yes/No).
Has Sort StagestringhiddenWhether the query required an in-memory sort stage (Yes/No). In-memory sorts are slower than index-based sorts.
Uses DiskstringhiddenWhether the operation used disk for sorting or aggregation (Yes/No). Indicates memory pressure.
From Multi PlannerstringhiddenWhether multiple query plans were evaluated (Yes/No).
ReplannedstringhiddenWhether the query was replanned due to plan cache eviction (Yes/No).
Query HashstringhiddenHash of the query shape for identifying similar queries. Available in MongoDB 4.2+.
Plan Cache KeystringhiddenKey used for plan cache lookup. Available in MongoDB 4.2+.
Planning TimedurationsecondshiddenTime spent planning the query execution. Available in MongoDB 6.2+.
CPU TimedurationsecondshiddenCPU time consumed by the operation. Available in MongoDB 6.3+ on Linux only.
Query FrameworkstringhiddenQuery execution framework used (classic or SBE). Available in MongoDB 7.0+.
Query Shape HashstringhiddenHash representing the query shape for grouping similar queries. Available in MongoDB 8.0+.

Alerts

There are no alerts configured by default for this integration.

Setup

You can configure the mongodb collector in two ways:

MethodBest forHow to
UIFast setup without editing filesGo to Nodes → Configure this node → Collectors → Jobs, search for mongodb, then click + to add a job.
FileIf you prefer configuring via file, or need to automate deployments (e.g., with Ansible)Edit go.d/mongodb.conf and add a job.
important

UI configuration requires paid Netdata Cloud plan.

Prerequisites

Create a read-only user

Create a read-only user for Netdata in the admin database.

  • Authenticate as the admin user:

    use admin
    db.auth("admin", "<MONGODB_ADMIN_PASSWORD>")
  • Create a user:

    db.createUser({
    "user":"netdata",
    "pwd": "<UNIQUE_PASSWORD>",
    "roles" : [
    {role: 'read', db: 'admin' },
    {role: 'clusterMonitor', db: 'admin'},
    {role: 'read', db: 'local' }
    ]
    })

Configuration

Options

The following options can be defined globally: update_every, autodetection_retry.

Config options
GroupOptionDescriptionDefaultRequired
Collectionupdate_everyData collection interval (seconds).5no
autodetection_retryAutodetection retry interval (seconds). Set 0 to disable.0no
TargeturiMongoDB connection string. See URI syntax.mongodb://localhost:27017yes
timeoutQuery timeout (seconds).1no
FiltersdatabasesDatabase selector. Defines which databases to collect metrics from.no
Virtual NodevnodeAssociates this data collection job with a Virtual Node.no

via UI

Configure the mongodb collector from the Netdata web interface:

  1. Go to Nodes.
  2. Select the node where you want the mongodb data-collection job to run and click the (Configure this node). That node will run the data collection.
  3. The Collectors → Jobs view opens by default.
  4. In the Search box, type mongodb (or scroll the list) to locate the mongodb collector.
  5. Click the + next to the mongodb collector to add a new job.
  6. Fill in the job fields, then click Test to verify the configuration and Submit to save.
    • Test runs the job with the provided settings and shows whether data can be collected.
    • If it fails, an error message appears with details (for example, connection refused, timeout, or command execution errors), so you can adjust and retest.

via File

The configuration file name for this integration is go.d/mongodb.conf.

The file format is YAML. Generally, the structure is:

update_every: 1
autodetection_retry: 0
jobs:
- name: some_name1
- name: some_name2

You can edit the configuration file using the edit-config script from the Netdata config directory.

cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
sudo ./edit-config go.d/mongodb.conf
Examples
TCP socket

An example configuration.

Config
jobs:
- name: local
uri: mongodb://netdata:password@localhost:27017

With databases metrics

An example configuration.

Config
jobs:
- name: local
uri: mongodb://netdata:password@localhost:27017
databases:
includes:
- "* *"

Multi-instance

Note: When you define multiple jobs, their names must be unique.

Local and remote instances.

Config
jobs:
- name: local
uri: mongodb://netdata:password@localhost:27017

- name: remote
uri: mongodb://netdata:password@203.0.113.0:27017

Troubleshooting

Debug Mode

Important: Debug mode is not supported for data collection jobs created via the UI using the Dyncfg feature.

To troubleshoot issues with the mongodb collector, run the go.d.plugin with the debug option enabled. The output should give you clues as to why the collector isn't working.

  • Navigate to the plugins.d directory, usually at /usr/libexec/netdata/plugins.d/. If that's not the case on your system, open netdata.conf and look for the plugins setting under [directories].

    cd /usr/libexec/netdata/plugins.d/
  • Switch to the netdata user.

    sudo -u netdata -s
  • Run the go.d.plugin to debug the collector:

    ./go.d.plugin -d -m mongodb

    To debug a specific job:

    ./go.d.plugin -d -m mongodb -j jobName

Getting Logs

If you're encountering problems with the mongodb collector, follow these steps to retrieve logs and identify potential issues:

  • Run the command specific to your system (systemd, non-systemd, or Docker container).
  • Examine the output for any warnings or error messages that might indicate issues. These messages should provide clues about the root cause of the problem.

System with systemd

Use the following command to view logs generated since the last Netdata service restart:

journalctl _SYSTEMD_INVOCATION_ID="$(systemctl show --value --property=InvocationID netdata)" --namespace=netdata --grep mongodb

System without systemd

Locate the collector log file, typically at /var/log/netdata/collector.log, and use grep to filter for collector's name:

grep mongodb /var/log/netdata/collector.log

Note: This method shows logs from all restarts. Focus on the latest entries for troubleshooting current issues.

Docker Container

If your Netdata runs in a Docker container named "netdata" (replace if different), use this command:

docker logs netdata 2>&1 | grep mongodb

Do you have any feedback for this page? If so, you can open a new issue on our netdata/learn repository.