Introducing Dragonfly Cloud! Learn More

Question: How can I check disk usage in MongoDB?

Answer

MongoDB provides various ways to check disk usage that can help you monitor and manage your database's storage efficiently. Below, we discuss some of the primary methods:

1. Using the db.stats() Command

To get a general overview of your database's size and storage, you can use the db.stats() command. This command returns statistics about the current database.

db.stats()

This command will give you outputs such as dbSize, storageSize, and indexSize, among others, which are key metrics for understanding your database's disk usage.

2. Using the collStats Command

For more granular information about a specific collection's disk usage, use the collStats command.

db.collection.stats()

Replace collection with the name of your collection. This command provides detailed information about the size, storage size, and indexes of the collection.

3. Checking Disk Usage at the File System Level

MongoDB stores data in files on disk, so another way to check disk usage is directly through the file system. The method to do this depends on your operating system.

For Unix/Linux systems, you can use the du -sh /path/to/mongodb/data/directory command to check the size of your MongoDB data directory.

For Windows systems, you can check the properties of the folder where MongoDB stores its data files (default path is C:\data\db unless specified otherwise).

4. Using Monitoring Tools

MongoDB offers operational tooling such as MongoDB Atlas, Ops Manager, or third-party monitoring solutions that provide insights into disk usage among other metrics. These tools offer dashboards and alerting systems to help you keep an eye on your databases' health.

It's important to regularly monitor disk usage to avoid running out of space, which could lead to performance issues or downtime. Implementing alerts for when disk usage reaches a certain threshold can be a proactive step to managing your database's health.

Each method has its use case depending on whether you're interested in overall database stats, detailed collection-level stats, or physical disk space usage.

Was this content helpful?

White Paper

Free System Design on AWS E-Book

Download this early release of O'Reilly's latest cloud infrastructure e-book: System Design on AWS.

Free System Design on AWS E-Book

Start building today 

Dragonfly is fully compatible with the Redis ecosystem and requires no code changes to implement.