Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.43 KB

File metadata and controls

36 lines (27 loc) · 1.43 KB

GetTestResultAnalytic

Properties

Name Type Description Notes
analytic_function str
include_location_id_grouping bool [optional]
order Order [optional]
pagination Pagination [optional]
synthetic_metrics List[str]
tag_filter_expression TagFilterExpressionElement [optional]
tag_filters List[TagFilter] [optional]
time_frame TimeFrame [optional]

Example

from instana_client.models.get_test_result_analytic import GetTestResultAnalytic

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

# convert the object into a dict
get_test_result_analytic_dict = get_test_result_analytic_instance.to_dict()
# create an instance of GetTestResultAnalytic from a dict
get_test_result_analytic_from_dict = GetTestResultAnalytic.from_dict(get_test_result_analytic_dict)

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