thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/SystemMetrics.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.4 KiB

SystemMetrics

Properties

Name Type Description Notes
start_time_ms float The start time of metrics collection, expressed in milliseconds since the Epoch. [optional] [readonly]
end_time_ms float The end time of metrics collection, expressed in milliseconds since the Epoch. [optional] [readonly]
cpu_utilization CpuUtilization [optional]
physical_memory_used_bytes PhysicalMemoryUsedBytes [optional]
physical_memory_total_bytes float Total physical memory of the system. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.system_metrics import SystemMetrics

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

# convert the object into a dict
system_metrics_dict = system_metrics_instance.to_dict()
# create an instance of SystemMetrics from a dict
system_metrics_from_dict = SystemMetrics.from_dict(system_metrics_dict)

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