Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 991 Bytes

File metadata and controls

33 lines (24 loc) · 991 Bytes

FailureMetric

Cluster failure metrics.

Properties

Name Type Description Notes
timestamp datetime
execution_id str
error_message str
error_type str

Example

from mixpeek.models.failure_metric import FailureMetric

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

# convert the object into a dict
failure_metric_dict = failure_metric_instance.to_dict()
# create an instance of FailureMetric from a dict
failure_metric_from_dict = FailureMetric.from_dict(failure_metric_dict)

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