ChassisStatsHealthMetrics¶
The chassis health metrics for the device.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| fan1_rpm_avg | float | The average speed of fan 1, if present, crucial for assessing the effectiveness of the system’s cooling mechanism under operational load. | [optional] |
| fan2_rpm_avg | float | The average speed of fan 2, if present, crucial for assessing the effectiveness of the system’s cooling mechanism under operational load. | [optional] |
| fan3_rpm_avg | float | The average speed of fan 3, if present, crucial for assessing the effectiveness of the system’s cooling mechanism under operational load. | [optional] |
| fan4_rpm_avg | float | The average speed of fan 4, if present, crucial for assessing the effectiveness of the system’s cooling mechanism under operational load. | [optional] |
| psu1_fan_status | str | [optional] | |
| psu1_input_status | str | [optional] | |
| psu1_output_status | str | [optional] | |
| psu2_fan_status | str | [optional] | |
| psu2_input_status | str | [optional] | |
| psu2_output_status | str | [optional] |
Example¶
from scc_firewall_manager_sdk.models.chassis_stats_health_metrics import ChassisStatsHealthMetrics
# TODO update the JSON string below
json = "{}"
# create an instance of ChassisStatsHealthMetrics from a JSON string
chassis_stats_health_metrics_instance = ChassisStatsHealthMetrics.from_json(json)
# print the JSON string representation of the object
print(ChassisStatsHealthMetrics.to_json())
# convert the object into a dict
chassis_stats_health_metrics_dict = chassis_stats_health_metrics_instance.to_dict()
# create an instance of ChassisStatsHealthMetrics from a dict
chassis_stats_health_metrics_form_dict = chassis_stats_health_metrics.from_dict(chassis_stats_health_metrics_dict)