Metric¶
Time series and summary for a single metric. For the env metric, additional dynamic peer properties may be present at the same JSON depth as series and summary, one per physical environmental sensor (e.g. processorTemperatureProcessor1, chassisTemperatureInternal0). Each such property is itself a Metric. Non-env metrics never carry these additional properties.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| series | List[Series] | [optional] | |
| summary | Summary | [optional] |
Example¶
from scc_firewall_manager_sdk.models.metric import Metric
# TODO update the JSON string below
json = "{}"
# create an instance of Metric from a JSON string
metric_instance = Metric.from_json(json)
# print the JSON string representation of the object
print(Metric.to_json())
# convert the object into a dict
metric_dict = metric_instance.to_dict()
# create an instance of Metric from a dict
metric_form_dict = metric.from_dict(metric_dict)