Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

File metadata and controls

32 lines (23 loc) · 1.34 KB

GetAvailableMetricsQuery

Properties

Name Type Description Notes
query str Search term used to filter results using fields such as label, description, tag name or keywords [optional]
tag_filter_expression TagFilterExpressionElement
time_frame TimeFrame
type str Entity type. Identifier for the monitored technology. [optional]

Example

from instana_client.models.get_available_metrics_query import GetAvailableMetricsQuery

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

# convert the object into a dict
get_available_metrics_query_dict = get_available_metrics_query_instance.to_dict()
# create an instance of GetAvailableMetricsQuery from a dict
get_available_metrics_query_from_dict = GetAvailableMetricsQuery.from_dict(get_available_metrics_query_dict)

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