Datalore 2025.6 Help

Configure storage monitoring and alerts

You can configure alerts to notify you when the available disk space in your Datalore On-Premises instance is low.

Configure monitoring and alerts

To enable monitoring and alerts, take the following steps:

  1. In docker-compose.yaml, add MONITORING_ENABLED: true in the environment block:

    services: datalore: ... environment: ... MONITORING_ENABLED: true
  2. (Optional) To override the default monitoring and alerting values, set the following parameters:

    services: datalore: ... environment: ... MONITORING_ENABLED: true MONITORING_INTERVAL_MILLIS: <CHECK_INTERVAL> # Intervals between consecutive checks in milliseconds Default is 60000 MONITORING_THRESHOLD_PERCENTAGE_INFO: <INFO_THRESHOLD> # Disk usage threshold for INFO notifications in percent. Default is 80 MONITORING_THRESHOLD_PERCENTAGE_WARN: <WARN_THRESHOLD> # Disk usage threshold for WARN notifications in percent. Default is 90 MONITORING_VOLUMES_DATA: <DATA_VOLUMES> # Volumes to monitor in non-default configurations

Add the following parameters to datalore.values.yaml:

  1. In datalore.values.yaml, add MONITORING_ENABLED: true in the environment block:

    dataloreEnv: ... MONITORING_ENABLED: true
  2. (Optional) To override the default monitoring and alerting values, set the following parameters:

    dataloreEnv: ... MONITORING_ENABLED: true MONITORING_INTERVAL_MILLIS: <CHECK_INTERVAL> # Intervals between consecutive checks in milliseconds Default is 60000 MONITORING_THRESHOLD_PERCENTAGE_INFO: <INFO_THRESHOLD> # Disk usage threshold for INFO notifications in percent. Default is 80 MONITORING_THRESHOLD_PERCENTAGE_WARN: <WARN_THRESHOLD> # Disk usage threshold for WARN notifications in percent. Default is 90 MONITORING_VOLUMES_DATA: <DATA_VOLUMES> # Volumes to monitor in non-default configurations
    01 August 2025