| 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] |
from instana_client.models.get_trace_groups import GetTraceGroups
# TODO update the JSON string below
json = "{}"
# create an instance of GetTraceGroups from a JSON string
get_trace_groups_instance = GetTraceGroups.from_json(json)
# print the JSON string representation of the object
print(GetTraceGroups.to_json())
# convert the object into a dict
get_trace_groups_dict = get_trace_groups_instance.to_dict()
# create an instance of GetTraceGroups from a dict
get_trace_groups_from_dict = GetTraceGroups.from_dict(get_trace_groups_dict)