1# fan_missing_error_delay
2
3## Description
4
5The amount of time(in seconds) to delay logging an error against the fan when
6its not present. This attribute is optional and defaults to **no error** being
7logged when the fan is not present when the attribute is not given.
8
9## Attribute Value(s)
10
11integer (default = do not create an error log)
12
13## Example
14
15```json
16{
17  "fans": [
18    {
19      "inventory": "/system/chassis/motherboard/fan0",
20      "allowed_out_of_range_time": 30,
21      "functional_delay": 5,
22      "deviation": 15,
23      "num_sensors_nonfunc_for_fan_nonfunc": 1,
24      "monitor_start_delay": 30,
25      "fan_missing_error_delay": 20,
26      "nonfunc_rotor_error_delay": 0,
27      "sensors": [
28        {
29          "name": "fan0_0",
30          "has_target": true
31        },
32        {
33          "name": "fan0_1",
34          "has_target": false,
35          "factor": 1.45,
36          "offset": -909
37        }
38      ]
39    }
40  ]
41}
42```
43