Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

GetWebsiteMetrics

Properties

Name Type Description Notes
metrics List[WebsiteMonitoringMetricsConfiguration]
tag_filters List[DeprecatedTagFilter] [optional]
time_frame TimeFrame [optional]
type str

Example

from instana_client.models.get_website_metrics import GetWebsiteMetrics

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

# convert the object into a dict
get_website_metrics_dict = get_website_metrics_instance.to_dict()
# create an instance of GetWebsiteMetrics from a dict
get_website_metrics_from_dict = GetWebsiteMetrics.from_dict(get_website_metrics_dict)

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