From: Wido den Hollander Date: Wed, 31 Jan 2018 13:30:47 +0000 (+0100) Subject: mgr/influx: Set the default interval to 30 seconds X-Git-Tag: v13.1.0~483^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b6a20a3a6817218d621d7edffdcd029c2fbd2dc1;p=ceph.git mgr/influx: Set the default interval to 30 seconds A interval of 5 seconds (previous default) provides a high resolution, but also a very large number of entries in the Influx database. By setting the default 30 seconds the amount of entries is reduced to 1/6th of that and thus saves storage and other resources. If users want they can change the interval to anything they like. Signed-off-by: Wido den Hollander --- diff --git a/src/pybind/mgr/influx/module.py b/src/pybind/mgr/influx/module.py index a5d50a2d8d5..d2cce634750 100644 --- a/src/pybind/mgr/influx/module.py +++ b/src/pybind/mgr/influx/module.py @@ -45,7 +45,7 @@ class Module(MgrModule): 'database': 'ceph', 'username': None, 'password': None, - 'interval': 5, + 'interval': 30, 'ssl': 'false', 'verify_ssl': 'true' }