Configure Dashplot Variables

The Dashplot UI service includes configuration properties that control MongoDB query limits, database migration behavior, etc.


Verify the Configuration File

  1. Check whether the ad-core.yml file exists.

$AcceloHome/config/docker/ad-core.yml

If the file does not exist, generate it.

Run:

accelo admin makeconfig ad-core

Update the Configuration

  1. Open the configuration file.

$AcceloHome/config/docker/ad-core.yml
  1. Locate the ad-dashplot section.

  2. Add or update the following properties:

ad-dashplot-ui: MONGO_MAX_RESULTS: 10000 DASHPLOT_RUN_MIGRATIONS: true

Property Details

Default Value

Description

MONGO_MAX_RESULTS

10000

Specifies the maximum number of documents returned from MongoDB queries used by visualizations and downloads.

This setting has been validated with datasets containing up to 50,000 records.

Increasing this value allows larger result sets to be processed. Higher values may increase memory consumption, query execution time, and UI response time.

Adjust this setting based on available system resources and expected workload size.

DASHPLOT_RUN_MIGRATIONS

true

Controls whether Dashplot migrations run during service startup.

Set this value to true during a fresh installation or when upgrading Pulse to a newer version.

  1. Save the file.


Restart the Service

Restart the Dashplot service by running the following command:

accelo restart ad-dashplot-ui