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:
In docker-compose.yaml, add
MONITORING_ENABLED: truein theenvironmentblock:services: datalore: ... environment: ... MONITORING_ENABLED: true(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:
In datalore.values.yaml, add
MONITORING_ENABLED: truein theenvironmentblock:dataloreEnv: ... MONITORING_ENABLED: true(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