thousandeyes-sdk-python/endpoint_test_results/docs/PhysicalMemoryUsedBytes.md

1.7 KiB

PhysicalMemoryUsedBytes

Properties

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

Example

from endpoint_test_results.models.physical_memory_used_bytes import PhysicalMemoryUsedBytes

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

# convert the object into a dict
physical_memory_used_bytes_dict = physical_memory_used_bytes_instance.to_dict()
# create an instance of PhysicalMemoryUsedBytes from a dict
physical_memory_used_bytes_from_dict = PhysicalMemoryUsedBytes.from_dict(physical_memory_used_bytes_dict)

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