Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.51 KB

File metadata and controls

35 lines (26 loc) · 1.51 KB

GetTraces

Properties

Name Type Description Notes
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]
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_traces import GetTraces

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

# convert the object into a dict
get_traces_dict = get_traces_instance.to_dict()
# create an instance of GetTraces from a dict
get_traces_from_dict = GetTraces.from_dict(get_traces_dict)

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