Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

CustomBlueprintIndicator

Properties

Name Type Description Notes
bad_event_infra_metric str [optional]
bad_events_filter TagFilterExpressionElement [optional]
good_event_infra_metric str [optional]
good_events_filter TagFilterExpressionElement

Example

from instana_client.models.custom_blueprint_indicator import CustomBlueprintIndicator

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

# convert the object into a dict
custom_blueprint_indicator_dict = custom_blueprint_indicator_instance.to_dict()
# create an instance of CustomBlueprintIndicator from a dict
custom_blueprint_indicator_from_dict = CustomBlueprintIndicator.from_dict(custom_blueprint_indicator_dict)

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