waveguard_scan_timeseries
Detect anomalies in time-series data using GPU-accelerated wave physics simulation. Analyze numeric arrays with sliding windows to identify deviations from normal patterns.
Instructions
Detect anomalies in time-series data using GPU-accelerated wave physics simulation. Send a flat array of numeric values and a window size. The tool automatically creates overlapping windows, uses the first N as training (normal baseline), and scores the remaining windows as test samples. Returns per-window anomaly scores, confidence, and p-values.
Example: send 100 CPU-usage readings with window_size=10. The first 5 windows become training, the rest are tested.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Flat array of numeric time-series values in chronological order. | |
| window_size | No | Number of data points per window (default: 10). Smaller windows = finer resolution. | |
| test_windows | No | Number of trailing windows to test (default: auto, uses last ~40%% of windows). | |
| sensitivity | No | Anomaly threshold multiplier (default: 2.0). Lower = more sensitive. Range: 0.5 to 5.0. |