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