| /openbmc/phosphor-fan-presence/docs/monitor/ |
| H A D | deviation.md | 1 # deviation chapter 9 ## Upper Deviation 11 If 'upper_deviation' is specified, it will be used for the deviation above the 12 target instead of 'deviation'. 18 Deviation is represented as a percentage, so only 0 to 100 are valid values. 29 "deviation": 15,
|
| H A D | sensors.md | 11 - Minimum = ([target] _(100 - [`deviation`](deviation.md)) / 100)_ `factor` + 13 - Maximum = ([target] _(100 + [`deviation`](deviation.md)) / 100)_ `factor` + 51 "deviation": 15,
|
| H A D | method.md | 88 "deviation": 15, 110 "deviation": 15,
|
| H A D | monitor_start_delay.md | 23 "deviation": 15,
|
| /openbmc/phosphor-fan-presence/monitor/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Rainier4U/ |
| H A D | config.json | 7 "deviation": 18, number 25 "deviation": 18, number 43 "deviation": 18, number 61 "deviation": 18, number 79 "deviation": 18, number 97 "deviation": 18, number
|
| /openbmc/openbmc/meta-ibm/recipes-phosphor/fans/phosphor-fan-monitor-config/swift/ |
| H A D | monitor.yaml | 5 deviation: 15 14 deviation: 15 23 deviation: 15 32 deviation: 15
|
| /openbmc/phosphor-fan-presence/monitor/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Rainier2U/ |
| H A D | config.json | 9 "deviation": 18, number 34 "deviation": 18, number 59 "deviation": 18, number 84 "deviation": 18, number 109 "deviation": 18, number 134 "deviation": 18, number
|
| /openbmc/phosphor-fan-presence/monitor/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.BlueRidge2U/ |
| H A D | config.json | 9 "deviation": 18, number 34 "deviation": 18, number 59 "deviation": 18, number 84 "deviation": 18, number 109 "deviation": 18, number 134 "deviation": 18, number
|
| /openbmc/openbmc/meta-facebook/meta-catalina/recipes-phosphor/fans/phosphor-fan/catalina/ |
| H A D | config.json | 7 "deviation": 25, number 36 "deviation": 25, number 65 "deviation": 25, number 94 "deviation": 25, number 123 "deviation": 25, number 152 "deviation": 25, number 181 "deviation": 25, number 210 "deviation": 25, number
|
| /openbmc/phosphor-fan-presence/monitor/example/ |
| H A D | monitor.yaml | 12 # * timebased - use a percentage based deviation 16 # within the allowed deviation] 18 # [Time (in secs) actual speed can be outside of deviation of 20 # deviation: 62 # After a speed reading of a sensor is outside of the allowed deviation of 78 # deviation: 15 105 # deviation: 15
|
| H A D | config.json | 24 "deviation": 15, number 63 "deviation": 15, number 113 "deviation": 15, number
|
| /openbmc/openbmc/meta-ampere/meta-mitchell/recipes-phosphor/fans/phosphor-fan/ |
| H A D | monitor.json | 6 "deviation": 25, number 32 "deviation": 25, number 58 "deviation": 25, number 84 "deviation": 25, number 110 "deviation": 25, number 136 "deviation": 25, number
|
| /openbmc/openbmc/meta-ampere/meta-jade/recipes-phosphor/fans/phosphor-fan/ |
| H A D | monitor.json | 6 "deviation": 25, number 32 "deviation": 25, number 58 "deviation": 25, number 84 "deviation": 25, number 110 "deviation": 25, number 136 "deviation": 25, number
|
| /openbmc/openbmc/meta-ampere/meta-jefferson/recipes-phosphor/fans/phosphor-fan/ |
| H A D | monitor.json | 6 "deviation": 25, number 24 "deviation": 25, number 42 "deviation": 25, number 60 "deviation": 25, number
|
| /openbmc/phosphor-fan-presence/monitor/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Rainier1S4U/ |
| H A D | config.json | 7 "deviation": 18, number 25 "deviation": 18, number 43 "deviation": 18, number 61 "deviation": 18, number
|
| /openbmc/phosphor-fan-presence/monitor/config_files/witherspoon/ |
| H A D | config.json | 7 "deviation": 15, number 25 "deviation": 15, number 57 "deviation": 15, number 75 "deviation": 15, number
|
| /openbmc/openbmc/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan-monitor-config/ |
| H A D | monitor.yaml | 4 deviation: 15 15 deviation: 15 26 deviation: 15
|
| /openbmc/phosphor-fan-presence/monitor/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Everest/ |
| H A D | config.json | 7 "deviation": 15, number 30 "deviation": 15, number 53 "deviation": 15, number 76 "deviation": 15, number
|
| /openbmc/phosphor-fan-presence/monitor/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Fuji/ |
| H A D | config.json | 7 "deviation": 15, number 30 "deviation": 15, number 53 "deviation": 15, number 76 "deviation": 15, number
|
| /openbmc/phosphor-fan-presence/monitor/ |
| H A D | json_parser.cpp | 197 if (!fan.contains("inventory") || !fan.contains("deviation") || in getFanDefs() 202 … "Missing required fan monitor definition parameters 'inventory, deviation, sensors'"); in getFanDefs() 206 // Valid deviation range is 0 - 100% in getFanDefs() 207 auto deviation = fan["deviation"].get<size_t>(); in getFanDefs() local 208 if (100 < deviation) in getFanDefs() 211 "Invalid deviation of {DEVIATION} found, must be between 0 and 100", in getFanDefs() 212 "DEVIATION", deviation); in getFanDefs() 214 "Invalid deviation found, must be between 0 and 100"); in getFanDefs() 217 // Upper deviation defaults to the deviation value and in getFanDefs() 219 size_t upperDeviation = deviation; in getFanDefs() [all …]
|
| H A D | gen-fan-monitor-defs.py | 57 ${fan_data['deviation']}, 58 ${fan_data.get('upper_deviation', fan_data['deviation'])}, 162 if (fan["deviation"] < 0) or (fan["deviation"] > 100): 163 sys.exit("Invalid deviation value " + str(fan["deviation"]))
|
| /openbmc/openbmc/meta-facebook/meta-catalina/recipes-phosphor/fans/phosphor-fan/clemente/ |
| H A D | config.json | 7 "deviation": 15, number 43 "deviation": 15, number 79 "deviation": 15, number 115 "deviation": 15, number 151 "deviation": 15, number 187 "deviation": 15, number 223 "deviation": 15, number 259 "deviation": 15, number
|
| /openbmc/phosphor-fan-presence/monitor/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Bonnell/ |
| H A D | config.json | 7 "deviation": 22, number 33 "deviation": 22, number
|
| /openbmc/phosphor-fan-presence/monitor/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Balcones/ |
| H A D | config.json | 7 "deviation": 22, number 33 "deviation": 22, number
|
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
| H A D | python3-pyperf_2.9.0.bb | 8 * Compute the mean and standard deviation. \
|