Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.77 KB

File metadata and controls

31 lines (22 loc) · 1.77 KB

WebsiteBeaconTagGroup

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.website_beacon_tag_group import WebsiteBeaconTagGroup

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

# convert the object into a dict
website_beacon_tag_group_dict = website_beacon_tag_group_instance.to_dict()
# create an instance of WebsiteBeaconTagGroup from a dict
website_beacon_tag_group_from_dict = WebsiteBeaconTagGroup.from_dict(website_beacon_tag_group_dict)

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