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