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