Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 923 Bytes

File metadata and controls

31 lines (22 loc) · 923 Bytes

GroupByTag

The grouping tags used to group the metric results.

Properties

Name Type Description Notes
key str [optional]
tag_name str

Example

from instana_client.models.group_by_tag import GroupByTag

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

# convert the object into a dict
group_by_tag_dict = group_by_tag_instance.to_dict()
# create an instance of GroupByTag from a dict
group_by_tag_from_dict = GroupByTag.from_dict(group_by_tag_dict)

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