1# monitor_start_delay 2 3## Description 4 5The amount of time(in seconds) to delay from monitoring the fan at the start of 6powering on the system. This attribute is optional and defaults to 0, meaning 7the fan will immediately be monitored according to its configuration at the 8start of power on. 9 10## Attribute Value(s) 11 12integer (default = 0) 13 14## Example 15 16```json 17{ 18 "fans": [ 19 { 20 "inventory": "/system/chassis/motherboard/fan0", 21 "allowed_out_of_range_time": 30, 22 "functional_delay": 5, 23 "deviation": 15, 24 "num_sensors_nonfunc_for_fan_nonfunc": 1, 25 "monitor_start_delay": 30, 26 "fan_missing_error_delay": 20, 27 "nonfunc_rotor_error_delay": 0, 28 "sensors": [ 29 { 30 "name": "fan0_0", 31 "has_target": true 32 }, 33 { 34 "name": "fan0_1", 35 "has_target": false, 36 "factor": 1.45, 37 "offset": -909 38 } 39 ] 40 } 41 ] 42} 43``` 44