Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.02 KB

File metadata and controls

34 lines (25 loc) · 1.02 KB

LatencyMetric

Latency distribution metric.

Properties

Name Type Description Notes
time_bucket datetime
document_count int
avg_latency_ms float
p95_latency_ms float
p99_latency_ms float

Example

from mixpeek.models.latency_metric import LatencyMetric

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

# convert the object into a dict
latency_metric_dict = latency_metric_instance.to_dict()
# create an instance of LatencyMetric from a dict
latency_metric_from_dict = LatencyMetric.from_dict(latency_metric_dict)

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