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