| 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] |
from instana_client.models.mobile_app_beacon_tag_group import MobileAppBeaconTagGroup
# TODO update the JSON string below
json = "{}"
# create an instance of MobileAppBeaconTagGroup from a JSON string
mobile_app_beacon_tag_group_instance = MobileAppBeaconTagGroup.from_json(json)
# print the JSON string representation of the object
print(MobileAppBeaconTagGroup.to_json())
# convert the object into a dict
mobile_app_beacon_tag_group_dict = mobile_app_beacon_tag_group_instance.to_dict()
# create an instance of MobileAppBeaconTagGroup from a dict
mobile_app_beacon_tag_group_from_dict = MobileAppBeaconTagGroup.from_dict(mobile_app_beacon_tag_group_dict)
[Back to Model list] [Back to API list] [Back to README]