Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

GetApplicationMetrics

Properties

Name Type Description Notes
include_internal bool [optional]
include_synthetic bool [optional]
metrics List[AppDataMetricConfiguration]
tag_filter_expression TagFilterExpressionElement [optional]
time_frame TimeFrame

Example

from instana_client.models.get_application_metrics import GetApplicationMetrics

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

# convert the object into a dict
get_application_metrics_dict = get_application_metrics_instance.to_dict()
# create an instance of GetApplicationMetrics from a dict
get_application_metrics_from_dict = GetApplicationMetrics.from_dict(get_application_metrics_dict)

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