데이터 스트림에서 온도 데이터를 모니터링하는 시스템을 개발하고 있습니다. 이 시스템은 비정상적인 값에 대응하여 알림을 생성해야 합니다. 솔루션은 개발 노력을 최소화해야 합니다. 솔루션에 무엇을 포함해야 합니까?
정답: A
The requirement: You have a system monitoring temperature data from a single data stream. The system must generate an alert in response to atypical values. The solution must minimize development effort. Analysis of Options: Univariate Anomaly Detection Designed for detecting anomalies in a single time series (e.g., temperature, pressure, humidity, sales). Since the system monitors temperature only, this is a classic univariate case. Provides simple integration with minimal effort. Correct choice. Azure Stream Analytics Can process real-time streaming data and detect conditions (with custom queries). However, it requires more development effort since you would need to manually code logic for anomaly detection. Not the minimal-effort option. Metric alerts in Azure Monitor Used to trigger alerts on predefined thresholds (static rules). Not intelligent anomaly detection-does not automatically learn patterns from data. Would require manual threshold setup, which is not efficient for anomaly detection. Multivariate Anomaly Detection Used when analyzing multiple related time series (e.g., temperature, pressure, vibration all together). Since this scenario only has one variable (temperature), multivariate is unnecessary and adds complexity. The answer: A. Univariate Anomaly Detection Microsoft References Azure AI Anomaly Detector - Univariate Multivariate Anomaly Detector Difference between univariate and multivariate anomaly detection