Set disk_almost_full_threshold to 99%

This commit is contained in:
Evgeniy Khramtsov 2017-12-19 09:55:19 +03:00
parent c9333f247a
commit 9bccac03f5
1 changed files with 4 additions and 0 deletions

View File

@ -42,6 +42,8 @@
%%-include("logger.hrl"). %%-include("logger.hrl").
-define(CHECK_INTERVAL, timer:seconds(30)). -define(CHECK_INTERVAL, timer:seconds(30)).
-define(DISK_FULL_THRES, 0.99).
-record(state, {tref :: reference(), -record(state, {tref :: reference(),
mref :: reference()}). mref :: reference()}).
-record(proc_stat, {qlen :: non_neg_integer(), -record(proc_stat, {qlen :: non_neg_integer(),
@ -65,6 +67,8 @@ start() ->
application:set_env(os_mon, start_cpu_sup, false), application:set_env(os_mon, start_cpu_sup, false),
application:set_env(os_mon, start_os_sup, false), application:set_env(os_mon, start_os_sup, false),
application:set_env(os_mon, start_memsup, true), application:set_env(os_mon, start_memsup, true),
application:set_env(os_mon, start_disksup, true),
application:set_env(os_mon, disk_almost_full_threshold, ?DISK_FULL_THRES),
ejabberd:start_app(os_mon). ejabberd:start_app(os_mon).
excluded_apps() -> excluded_apps() ->