Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.67 KB

File metadata and controls

32 lines (23 loc) · 1.67 KB

Group

Grouping of data under groupbyTag, where groupbyTagEntity and groupbyTagSecondLevelKey are aspects of groupbyTag.

Properties

Name Type Description Notes
groupby_tag str The name of the group tag (e.g. `agent.tag` or `docker.label`).
groupby_tag_entity str The entity by which the data should be grouped. This field supports three possible values: `NOT_APPLICABLE`, `DESTINATION`, and `SOURCE`. `SOURCE`: the tag filter should apply to the source entity. `DESTINATION`: the tag filter should apply to the destination entity. `NOT_APPLICABLE`: some tags are independent of source or destination, such as tags on the call itself, log tags or trace tags (only destination makes sense because the source is unknown for the root call).
groupby_tag_second_level_key str If present, it's the 2nd level key part (e.g. `customKey` on `docker.label.customKey`) [optional]

Example

from instana_client.models.group import Group

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

# convert the object into a dict
group_dict = group_instance.to_dict()
# create an instance of Group from a dict
group_from_dict = Group.from_dict(group_dict)

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