"warnLowDiskSpace" section
Configures appropriate property values if email notifications must be sent when disk space is low.
You must include "warnLowDiskSpace" inside the "interactive" application configuration. For more information, see the A typical example section and "interactive" section.
A typical example
"interactive": {
"warnLowDiskSpace": {
"enabled": true,
"emailTo": "[email protected];[email protected]",
"minFreeDisk": 10240,
"minPercentage": 5
}
},
"warnLowDiskSpace" Additional Information
Property
Default Value
Description
"emailTo"
The separated email addresses to send the warning email to. If empty, the system administrators are notified.
Example: "emailTo" : "[email protected];[email protected]"
"enabled"
true
The boolean value to enable or disable the feature.
"emailFrequency"
86400
How often the warning email should be sent in seconds.
Default value: 86400 (1 day in seconds, 24 * 60 *60). Minimum value: 3600 (1 hour).
"minFreeDisk"
10240
The minimum amount of free disk space in MB that generates the warning email.
Default value: 10240 (10 GB).
"minPercentage"
5
The minimum percentage of free disk space that generates the warning email.
Default value: 5 (5%).
Was this helpful?