1# group
2
3## Description
4
5A list of sensor object names to include in determining trust of their values
6based on the configured [`class`](class.md). These sensors are what's included
7in the group that then has all of their current values trusted or not for
8monitoring based on algorithm of the [`class`](class.md).
9
10## Attribute Value(s)
11
12- `name` - string
13  - The name of the fan tach sensor located under the
14    `/xyz/openbmc_project/sensros/fan_tach` D-Bus path.
15- `in_trust` - boolean (Optional)
16  - By default, the sensor is included in determining trust of the group.
17    However this can be used to cancel/restart monitoring of a fan tach sensor
18    but not have it included in the determination of trust.
19
20## Example
21
22<pre><code>
23{
24  "sensor_trust_groups": [
25    {
26      "class": "NonzeroSpeed",
27      <b><i>"group": [
28        {
29          "name": "fan0_0"
30        },
31        {
32          "name": "fan1_0"
33        },
34        {
35          "name": "fan2_0",
36          "in_trust": false
37        }
38      ]</i></b>
39    }
40  ]
41}
42</code></pre>
43