Docs Menu

Docs HomeView & Analyze DataMongoDB Compass

Toggle Chrome DevTools

On this page

  • About This Task
  • Procedure
  • Compass Settings Panel
  • Command Line
  • Configuration File
  • Learn More

You can toggle the enableDevTools option to control user access to Chrome DevTools on MongoDB Compass. When you enable Chrome Devtools, you can view additional diagnostic or debugging information from the Compass interface.

By default, Compass disables Chrome DevTools.

If you enable any of the following options, you cannot enable the Enable DevTools setting:

  • Set Read-Only Mode

  • Enable MongoDB Shell

  • maxTimeMS

  • Protect Connection String Secrets

You can set the enableDevTools option in either:

1
Settings panel location under the MongoDB Compass system menu

Alternatively, you can use keyboard shortcuts to open the Settings panel:

  • Windows / Linux: Ctrl + ,

  • Mac: + ,

2

Compass opens a dialog box where you can configure your MongoDB Compass settings.

3
4

The following command starts Compass from the command line and sets the --enableDevTools option:

<path-to-Compass-executable> --enableDevTools

Note

The name and filepath of the Compass executable depend on your operating system.

You can specify the Compass configuration file in either EJSON or YAML format. The following configurations set the enableDevTools option to true:

{ "enableDevTools": true }
enableDevTools: true

To learn more about the MongoDB Compass configuration file, see Configuration File Settings.

← Specify Read Preference and Tags