baselines
Creates, updates, deletes, gets or lists a baselines
resource.
Overview
Name | baselines |
Type | Resource |
Id | azure.monitor.baselines |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The metric baseline Id. |
name | string | The name of the metric for which the baselines were retrieved. |
properties | object | The response to a metric baselines query. |
type | string | The resource type of the metric baseline resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | interval, metricName, resourceUri, timespan | Lists the metric baseline values for a resource. |
SELECT
examples
Lists the metric baseline values for a resource.
SELECT
id,
name,
properties,
type
FROM azure.monitor.baselines
WHERE interval = '{{ interval }}'
AND metricName = '{{ metricName }}'
AND resourceUri = '{{ resourceUri }}'
AND timespan = '{{ timespan }}';