thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/CpuUtilization.md
Shahid Hussain Khan 745e74afc4
CP-2189 Update SDK names for admin and monitors modules (#9)
* CP-2189 Update SDK names for admin and monitors modules

* CP-2189 Move client to core

* CP-2189 Change client to core
2024-06-04 16:09:40 +01:00

35 lines
1.6 KiB
Markdown

# 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** | **int** | The total number of samples collected during the monitored period. | [optional] [readonly]
## Example
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)