Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

EntityMetricScope

Properties

Name Type Description Notes
tag_filter_expression TagFilterExpressionElement [optional]
type str Type of the Entity Metric. Eg. For Mobile App SLO it would be any of the supported beaconTypes

Example

from instana_client.models.entity_metric_scope import EntityMetricScope

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

# convert the object into a dict
entity_metric_scope_dict = entity_metric_scope_instance.to_dict()
# create an instance of EntityMetricScope from a dict
entity_metric_scope_from_dict = EntityMetricScope.from_dict(entity_metric_scope_dict)

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