Glossary
Anomaly detection
Identifying data points or patterns that deviate significantly from expected or normal behavior.
Also called: outlier detection, anomaly monitoring
Anomaly detection is the process of identifying data points, events, or patterns that deviate significantly from what a dataset's normal behavior would predict. An anomaly might be a spike in error rates, a sudden drop in transactions, or a single outlier value that does not fit the surrounding pattern.
Methods range from simple statistical rules—flagging values beyond a set number of standard deviations from the mean—to more adaptive approaches that learn a baseline from historical patterns, including time series forecasting models that flag actual values falling outside their predicted range, and machine learning models trained specifically to separate normal from unusual behavior. The right method depends on how much historical data is available and whether "normal" itself changes over time, such as seasonality, growth, or evolving user behavior.
Anomaly detection is used for fraud monitoring, system reliability, data quality checks, and catching unexpected shifts in business metrics before they show up in a monthly report. It often feeds directly into diagnostic analytics, since flagging an anomaly is only the first step—someone still has to determine the cause. A common pitfall is a poorly tuned threshold: too sensitive and it drowns users in false alarms until they start ignoring alerts; too loose and it misses real problems, especially gradual drifts that never look extreme at any single point in time.
Last reviewed September 19, 2026