mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Set disk_almost_full_threshold to 99%
This commit is contained in:
parent
c9333f247a
commit
9bccac03f5
@ -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() ->
|
||||||
|
Loading…
Reference in New Issue
Block a user