Anomalies
...
Overlay a band on the metric, showing the expected behavior of a series based on past values.
Kloudfuse provides these possible implementations of anomaly detection:
basic
Implements the Rolling quantile algorithm.
sampling interval :
Sampling intervals are 1m, 2m, 3m, 5m, 10m, 15m, 30m, 1h, and 2h.
Numeric parameter
Has the possible values of 1, 2, or 3.
agile
Implements the SARIMA algorithm.
Numeric parameter
Has the possible values of 1, 2, or 3.
robust
Implements the Seasonal decompose algorithm.
sampling interval
Sampling intervals are 1m, 2m, 3m, 5m, 10m, 15m, 30m, 1h, and 2h.
Numeric parameter
Has the possible values of 1, 2, or 3.
agile-robust
Implements the Prophet algorithm.
sampling interval
Sampling intervals hourly, daily, or weekly.
Numeric parameter
Has the possible values of 1, 2, or 3.
Outlier:
Highlight outliers series.
Kloudfuse provides the DBSCAN implementation of outlier detection.
Configure the Tolerance Level
In DBSCAN, the tolerance level (referred to as eps
) determines the radius of the neighborhood around each point for clustering purposes. In this example, eps
is set to 0.8, which controls the sensitivity of outlier detection. A lower tolerance will detect more subtle outliers, while a higher tolerance will detect only the most significant deviations.
Visualization
The chart displays the results of DBSCAN outlier detection applied to the selected metric over time. In the visualization:
Solid Lines represent data series flagged as outliers. These indicate instances where the data behavior deviates significantly from the norm based on the defined tolerance.
Dotted Lines represent data series identified as non-outliers, meaning they exhibit expected behavior relative to their peers.
In the following examples, a cube root transformation is applied to the data before DBSCAN processing. The choice of eps
significantly affects the number of detected outliers:
Tolerance = 0.8
In the first example ,eps
is set to 0.8, making the detection process highly sensitive to deviations. As a result:Solid lines in the chart represent data points marked as outliers, where even small deviations from the normal pattern are detected.
Dotted lines indicate non-outliers, showing stable or expected behavior.
Tolerance = 5
In the second example ,eps
is increased to 5. With this higher tolerance:Only significant deviations are identified as outliers, with most series marked as dotted lines (non-outliers).
Solid lines (outliers) appear only for major deviations, filtering out more minor deviations.
This setting is appropriate when you only want to capture large deviations and are not concerned with smaller fluctuations in the data.
...
Forecasting :
Forecasting allows users to predict future values in a time series based on historical data, enabling proactive monitoring and resource planning. By forecasting trends and patterns, users can anticipate potential issues, optimize resource allocation, and make data-driven decisions. Our platform supports two forecasting algorithms tailored to different data characteristics and forecasting needs:
Linear Forecast (Linear Regression):
A straightforward method for forecasting based on a linear trend in the data. This approach is well-suited for time series that exhibit a consistent trend without significant seasonal variations. Linear forecasting can help identify steady growth or decline over time, making it ideal for simple trend prediction.
Seasonal Forecast (Prophet):
Prophet is a sophisticated forecasting model designed to handle time series data with seasonal patterns and holiday effects. This algorithm is especially effective for data that shows recurring patterns (e.g., hourly, daily, weekly) and is capable of capturing seasonality and trends. Seasonal forecasting is suitable for applications with clear cyclical behaviors.
...