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