thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/CpuUtilization.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.6 KiB

CpuUtilization

Properties

Name Type Description Notes
min float The minimum sampled usage value recorded during the monitored period. [optional] [readonly]
max float The maximum sampled usage value recorded during the monitored period. [optional] [readonly]
mean float The mean (average) sampled usage value recorded during the monitored period. [optional] [readonly]
median float The median sampled usage value recorded during the monitored period. [optional] [readonly]
std_dev float The standard deviation of sampled usage values recorded during the monitored period. [optional] [readonly]
count float The total number of samples collected during the monitored period. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.cpu_utilization import CpuUtilization

# TODO update the JSON string below
json = "{}"
# create an instance of CpuUtilization from a JSON string
cpu_utilization_instance = CpuUtilization.from_json(json)
# print the JSON string representation of the object
print(CpuUtilization.to_json())

# convert the object into a dict
cpu_utilization_dict = cpu_utilization_instance.to_dict()
# create an instance of CpuUtilization from a dict
cpu_utilization_from_dict = CpuUtilization.from_dict(cpu_utilization_dict)

[Back to Model list] [Back to API list] [Back to README]