Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

BottleneckResponse

Response for bottleneck analysis.

Properties

Name Type Description Notes
time_range ApiAnalyticsModelsTimeRange Time range of the analysis
bottlenecks List[BottleneckAnalysis] Ranked list of bottlenecks
total_time_ms float Total execution time across all components

Example

from mixpeek.models.bottleneck_response import BottleneckResponse

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

# convert the object into a dict
bottleneck_response_dict = bottleneck_response_instance.to_dict()
# create an instance of BottleneckResponse from a dict
bottleneck_response_from_dict = BottleneckResponse.from_dict(bottleneck_response_dict)

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