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
Copy file name to clipboardExpand all lines: sdk/metricsadvisor/ai-metrics-advisor/README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,33 +113,33 @@ const adminClient = new MetricsAdvisorAdministrationClient("<endpoint>", credent
113
113
114
114
`MetricsAdvisorAdministrationClient` is the interface responsible for managing entities in the Metrics Advisor resources, such as managing data feeds, anomaly detection configurations, anomaly alerting configurations.
115
115
116
-
### DataFeed
116
+
### Data Feed
117
117
118
-
A `DataFeed` is what Metrics Advisor ingests from your data source, such as Cosmos DB or a SQL server. A data feed contains rows of:
118
+
A data feed is what Metrics Advisor ingests from your data source, such as Cosmos DB or a SQL server. A data feed contains rows of:
119
119
120
120
- timestamps
121
121
- zero or more dimensions
122
122
- one or more measures
123
123
124
124
### Metric
125
125
126
-
A `Metric` is a quantifiable measure that is used to monitor and assess the status of a specific business process. It can be a combination of multiple time series values divided into dimensions. For example a web health metric might contain dimensions for user count and the en-us market.
126
+
A metric is a quantifiable measure that is used to monitor and assess the status of a specific business process. It can be a combination of multiple time series values divided into dimensions. For example a web health metric might contain dimensions for user count and the en-us market.
127
127
128
128
### AnomalyDetectionConfiguration
129
129
130
130
`AnomalyDetectionConfiguration` is required for every time series, and determines whether a point in the time series is an anomaly.
131
131
132
132
### Anomaly & Incident
133
133
134
-
After a detection configuration is applied to metrics, `Incident`s are generated whenever any series within it has an `Anomaly`.
134
+
After a detection configuration is applied to metrics, `AnomalyIncident`s are generated whenever any series within it has an `DataPointAnomaly`.
135
135
136
136
### Alert
137
137
138
-
You can configure which anomalies should trigger an `Alert`. You can set multiple alerts with different settings. For example, you could create an alert for anomalies with lower business impact, and another for more important alerts.
138
+
You can configure which anomalies should trigger an `AnomalyAlert`. You can set multiple alerts with different settings. For example, you could create an alert for anomalies with lower business impact, and another for more important alerts.
139
139
140
140
### Hook
141
141
142
-
Metrics Advisor lets you create and subscribe to real-time alerts. These alerts are sent over the internet, using a `Hook`.
142
+
Metrics Advisor lets you create and subscribe to real-time alerts. These alerts are sent over the internet, using a notification hook.
143
143
144
144
Please refer to [the Metrics Advisory Glossary][metrics_advisor_glossary] documentation page for a comprehensive list of concepts.
145
145
@@ -462,10 +462,10 @@ async function queryAnomaliesByAlert(client, alert) {
462
462
console.log(
463
463
`Listing anomalies for alert configuration '${alert.alertConfigId}' and alert '${alert.id}'`
Copy file name to clipboardExpand all lines: sdk/metricsadvisor/ai-metrics-advisor/recordings/node/aad_metricsadvisoradministrationclient_datafeed_datafeed/recording_creates_eventhubs_data_feed.js
Copy file name to clipboardExpand all lines: sdk/metricsadvisor/ai-metrics-advisor/recordings/node/aad_metricsadvisoradministrationclient_datafeed_datafeed/recording_deletes_eventhubs_data_feed.js
0 commit comments