Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

SlowOperationsResponse

Response for slowest operations query.

Properties

Name Type Description Notes
time_range ApiAnalyticsModelsTimeRange Time range of the query
operations List[SlowOperation] List of slowest operations
threshold_ms float Latency threshold used for filtering

Example

from mixpeek.models.slow_operations_response import SlowOperationsResponse

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

# convert the object into a dict
slow_operations_response_dict = slow_operations_response_instance.to_dict()
# create an instance of SlowOperationsResponse from a dict
slow_operations_response_from_dict = SlowOperationsResponse.from_dict(slow_operations_response_dict)

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