diff --git a/docs/anomaly-detection/CHANGELOG.md b/docs/anomaly-detection/CHANGELOG.md index 2a67c55b76..cfe79b711f 100644 --- a/docs/anomaly-detection/CHANGELOG.md +++ b/docs/anomaly-detection/CHANGELOG.md @@ -25,6 +25,14 @@ Please find [launch instructions here](/anomaly-detection/overview.html#run-vman # tip +## v1.8.0 +Released: 2024-01-15 +- FEATURE: Added Univariate [MAD (median absolute deviation)](/anomaly-detection/components/models.md#mad-median-absolute-deviation) model support. +- IMPROVEMENT: Update Python to 3.12.1 and all the dependencies. +- IMPROVEMENT: Don't check /health endpoint, check the real /query_range or /import endpoints directly. Users kept getting problems with /health. +- DEPRECATION: "health_path" param is deprecated and doesn't do anything in config ([reader](/anomaly-detection/components/reader.html#vm-reader), [writer](/anomaly-detection/components/writer.html#vm-writer), [monitoring.push](/anomaly-detection/components/monitoring.html#push-config-parameters)). + + ## v1.7.2 Released: 2023-12-21 - FIX: fit/infer calls are now skipped if we have insufficient *valid* data to run on. diff --git a/docs/anomaly-detection/components/monitoring.md b/docs/anomaly-detection/components/monitoring.md index 63dcacb26b..3d58a0e2d7 100644 --- a/docs/anomaly-detection/components/monitoring.md +++ b/docs/anomaly-detection/components/monitoring.md @@ -63,7 +63,7 @@ There are 2 models to monitor VictoriaMetrics Anomaly Detection behavior - [push <tr> <td><code>health_path</code></td> <td><code>"health"</code></td> - <td>Absolute, to override <code>/health</code> path</td> + <td>Deprecated since <a href="https://docs.victoriametrics.com/anomaly-detection/CHANGELOG.html#v180">v1.8.0</a>. Absolute, to override <code>/health</code> path</td> </tr> <tr> <td><code>user</code></td> @@ -100,7 +100,6 @@ monitoring: push: url: "http://localhost:8480/" tenant_id: "0:0" # For cluster version only - health_path: "health" user: "USERNAME" password: "PASSWORD" timeout: "5s"