You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set aggregation that can be applied to a series of values. Eg: `MEAN`.
granularity
int
If the granularity is set you will get data points with the specified granularity in seconds. Default: `1000` milliseconds
[optional]
metric
str
Set a particular metric, eg: `latency`.
Example
frominstana_client.models.website_monitoring_metrics_configurationimportWebsiteMonitoringMetricsConfiguration# TODO update the JSON string belowjson="{}"# create an instance of WebsiteMonitoringMetricsConfiguration from a JSON stringwebsite_monitoring_metrics_configuration_instance=WebsiteMonitoringMetricsConfiguration.from_json(json)
# print the JSON string representation of the objectprint(WebsiteMonitoringMetricsConfiguration.to_json())
# convert the object into a dictwebsite_monitoring_metrics_configuration_dict=website_monitoring_metrics_configuration_instance.to_dict()
# create an instance of WebsiteMonitoringMetricsConfiguration from a dictwebsite_monitoring_metrics_configuration_from_dict=WebsiteMonitoringMetricsConfiguration.from_dict(website_monitoring_metrics_configuration_dict)