Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.28 KB

File metadata and controls

35 lines (26 loc) · 1.28 KB

PerformanceInsight

Performance insight or recommendation.

Properties

Name Type Description Notes
type str Insight type (bottleneck, optimization, warning)
severity str Severity (info, warning, critical)
message str Human-readable message
stage str Related stage name [optional]
metric_value float Related metric value [optional]
recommendation str Recommended action [optional]

Example

from mixpeek.models.performance_insight import PerformanceInsight

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

# convert the object into a dict
performance_insight_dict = performance_insight_instance.to_dict()
# create an instance of PerformanceInsight from a dict
performance_insight_from_dict = PerformanceInsight.from_dict(performance_insight_dict)

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