mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.4 KiB
1.4 KiB
SystemMetricDetails
Details of system metrics that contain top applications by CPU/memory usage. Not populated by default.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| top_cpu_applications | **List[ApplicationMetrics]** | A list of applications that consume more than 2% of the CPU. | [optional] [readonly] |
| top_memory_applications | **List[ApplicationMetrics]** | A list of applications that consume more than 2% of the RAM. | [optional] [readonly] |
Example
from thousandeyes_sdk.endpoint_test_results.models.system_metric_details import SystemMetricDetails
# TODO update the JSON string below
json = "{}"
# create an instance of SystemMetricDetails from a JSON string
system_metric_details_instance = SystemMetricDetails.from_json(json)
# print the JSON string representation of the object
print(SystemMetricDetails.to_json())
# convert the object into a dict
system_metric_details_dict = system_metric_details_instance.to_dict()
# create an instance of SystemMetricDetails from a dict
system_metric_details_from_dict = SystemMetricDetails.from_dict(system_metric_details_dict)