Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.02 KB

File metadata and controls

37 lines (28 loc) · 2.02 KB

GetCallGroups

Properties

Name Type Description Notes
group Group
include_internal bool Flag to include Internal Calls. These calls are work done inside a service and correspond to intermediate spans in custom tracing. [optional]
include_synthetic bool Flag to include Synthetic Calls. These calls have a synthetic endpoint as their destination, such as calls to health-check endpoints. [optional]
metrics List[MetricConfig] A list of objects each of which defines a metric and the (statistical) aggregation -- MEAN, SUM, MAX, etc -- that should be used to summarize it for the defined time frame. Eg: `[{ 'metric': 'latency', 'aggregation': 'MEAN'}]`. To know more about supported metrics and its aggregation, See `Get Metric catalog`.
order Order [optional]
pagination CursorPagination [optional]
tag_filter_expression TagFilterExpressionElement [optional]
tag_filters List[DeprecatedTagFilter] [optional]
time_frame TimeFrame [optional]

Example

from instana_client.models.get_call_groups import GetCallGroups

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

# convert the object into a dict
get_call_groups_dict = get_call_groups_instance.to_dict()
# create an instance of GetCallGroups from a dict
get_call_groups_from_dict = GetCallGroups.from_dict(get_call_groups_dict)

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