summaryrefslogtreecommitdiffstats
path: root/doc/mgr/diskprediction.rst
blob: af34a037c44661f03bea5db5acbe75efbb503c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
.. _diskprediction:

=====================
Diskprediction Module
=====================

The *diskprediction* module leverages Ceph device health check to collect disk health metrics and uses internal predictor module to produce the disk failure prediction and returns back to Ceph. It doesn't require any external server for data analysis and output results. Its internal predictor's accuracy is around 70%.

Enabling
========

Run the following command to enable the *diskprediction_local* module in the Ceph
environment::

    ceph mgr module enable diskprediction_local


To enable the local predictor::

    ceph config set global device_failure_prediction_mode local

To disable prediction,::

    ceph config set global device_failure_prediction_mode none


*diskprediction_local* requires at least six datasets of device health metrics to
make prediction of the devices' life expentancy. And these health metrics are
collected only if health monitoring is :ref:`enabled <enabling-monitoring>`.

Run the following command to retrieve the life expectancy of given device.

::

    ceph device predict-life-expectancy <device id>

Configuration
=============

The module performs the prediction on a daily basis by default. You can adjust
this interval with::

  ceph config set mgr mgr/diskprediction_local/predict_interval <interval-in-seconds>

Debugging
=========

If you want to debug the DiskPrediction module mapping to Ceph logging level,
use the following command.

::

    [mgr]

        debug mgr = 20

With logging set to debug for the manager the module will print out logging
message with prefix *mgr[diskprediction]* for easy filtering.