1# num_sensors_nonfunc_for_fan_nonfunc
2
3## Description
4
5The number of `sensors` that must be deemed nonfunctional for the fan enclosure
6object to also be nonfunctional. This attribute is optional and defaults to 0,
7meaning the fan enclosure will not be set to nonfunctional based on the
8functional state of its list of `sensors`.
9
10## Attribute Value(s)
11
12integer (default = 0)
13
14## Example
15
16<pre><code>
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      <b><i>"num_sensors_nonfunc_for_fan_nonfunc": 1</i></b>,
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</code></pre>
44