docs/vmanomaly - patch release v1.18.6 docs (#7706)

### Describe Your Changes

docs/vmanomaly - patch release v1.18.6 docs

### Checklist

The following checks are **mandatory**:

- [x] My change adheres [VictoriaMetrics contributing
guidelines](https://docs.victoriametrics.com/contributing/).
This commit is contained in:
Fred Navruzov 2024-12-01 17:20:52 +01:00 committed by GitHub
parent 4d39dfc0ee
commit 30b61c6d8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 18 additions and 12 deletions

View File

@ -72,7 +72,7 @@ services:
restart: always restart: always
vmanomaly: vmanomaly:
container_name: vmanomaly container_name: vmanomaly
image: victoriametrics/vmanomaly:v1.18.5 image: victoriametrics/vmanomaly:v1.18.6
depends_on: depends_on:
- "victoriametrics" - "victoriametrics"
ports: ports:

View File

@ -11,6 +11,12 @@ aliases:
--- ---
Please find the changelog for VictoriaMetrics Anomaly Detection below. Please find the changelog for VictoriaMetrics Anomaly Detection below.
## v1.18.6
Released: 2024-12-01
- FIX: Assure proper validation of [BacktestingScheduler](https://docs.victoriametrics.com/anomaly-detection/components/scheduler/#backtesting-scheduler) arguments, if specified in ISO-8601 format, preventing service crashes due to validation errors.
## v1.18.5 ## v1.18.5
Released: 2024-11-27 Released: 2024-11-27

View File

@ -159,7 +159,7 @@ services:
# ... # ...
vmanomaly: vmanomaly:
container_name: vmanomaly container_name: vmanomaly
image: victoriametrics/vmanomaly:v1.18.5 image: victoriametrics/vmanomaly:v1.18.6
# ... # ...
ports: ports:
- "8490:8490" - "8490:8490"
@ -365,7 +365,7 @@ options:
Heres an example of using the config splitter to divide configurations based on the `extra_filters` argument from the reader section: Heres an example of using the config splitter to divide configurations based on the `extra_filters` argument from the reader section:
```sh ```sh
docker pull victoriametrics/vmanomaly:v1.18.5 && docker image tag victoriametrics/vmanomaly:v1.18.5 vmanomaly docker pull victoriametrics/vmanomaly:v1.18.6 && docker image tag victoriametrics/vmanomaly:v1.18.6 vmanomaly
``` ```
```sh ```sh

View File

@ -229,7 +229,7 @@ This will expose metrics at `http://0.0.0.0:8080/metrics` page.
To use *vmanomaly* you need to pull docker image: To use *vmanomaly* you need to pull docker image:
```sh ```sh
docker pull victoriametrics/vmanomaly:v1.18.5 docker pull victoriametrics/vmanomaly:v1.18.6
``` ```
> Note: please check what is latest release in [CHANGELOG](https://docs.victoriametrics.com/anomaly-detection/changelog/) > Note: please check what is latest release in [CHANGELOG](https://docs.victoriametrics.com/anomaly-detection/changelog/)
@ -239,7 +239,7 @@ docker pull victoriametrics/vmanomaly:v1.18.5
You can put a tag on it for your convenience: You can put a tag on it for your convenience:
```sh ```sh
docker image tag victoriametrics/vmanomaly:v1.18.5 vmanomaly docker image tag victoriametrics/vmanomaly:v1.18.6 vmanomaly
``` ```
Here is an example of how to run *vmanomaly* docker container with [license file](#licensing): Here is an example of how to run *vmanomaly* docker container with [license file](#licensing):

View File

@ -63,13 +63,13 @@ Below are the steps to get `vmanomaly` up and running inside a Docker container:
1. Pull Docker image: 1. Pull Docker image:
```sh ```sh
docker pull victoriametrics/vmanomaly:v1.18.5 docker pull victoriametrics/vmanomaly:v1.18.6
``` ```
2. (Optional step) tag the `vmanomaly` Docker image: 2. (Optional step) tag the `vmanomaly` Docker image:
```sh ```sh
docker image tag victoriametrics/vmanomaly:v1.18.5 vmanomaly docker image tag victoriametrics/vmanomaly:v1.18.6 vmanomaly
``` ```
3. Start the `vmanomaly` Docker container with a *license file*, use the command below. 3. Start the `vmanomaly` Docker container with a *license file*, use the command below.
@ -103,7 +103,7 @@ docker run -it --user 1000:1000 \
services: services:
# ... # ...
vmanomaly: vmanomaly:
image: victoriametrics/vmanomaly:v1.18.5 image: victoriametrics/vmanomaly:v1.18.6
volumes: volumes:
$YOUR_LICENSE_FILE_PATH:/license $YOUR_LICENSE_FILE_PATH:/license
$YOUR_CONFIG_FILE_PATH:/config.yml $YOUR_CONFIG_FILE_PATH:/config.yml

View File

@ -993,7 +993,7 @@ monitoring:
Let's pull the docker image for `vmanomaly`: Let's pull the docker image for `vmanomaly`:
```sh ```sh
docker pull victoriametrics/vmanomaly:v1.18.5 docker pull victoriametrics/vmanomaly:v1.18.6
``` ```
Now we can run the docker container putting as volumes both config and model file: Now we can run the docker container putting as volumes both config and model file:
@ -1007,7 +1007,7 @@ docker run -it \
-v $(PWD)/license:/license \ -v $(PWD)/license:/license \
-v $(PWD)/custom_model.py:/vmanomaly/model/custom.py \ -v $(PWD)/custom_model.py:/vmanomaly/model/custom.py \
-v $(PWD)/custom.yaml:/config.yaml \ -v $(PWD)/custom.yaml:/config.yaml \
victoriametrics/vmanomaly:v1.18.5 /config.yaml \ victoriametrics/vmanomaly:v1.18.6 /config.yaml \
--licenseFile=/license --licenseFile=/license
``` ```

View File

@ -385,7 +385,7 @@ services:
restart: always restart: always
vmanomaly: vmanomaly:
container_name: vmanomaly container_name: vmanomaly
image: victoriametrics/vmanomaly:v1.18.5 image: victoriametrics/vmanomaly:v1.18.6
depends_on: depends_on:
- "victoriametrics" - "victoriametrics"
ports: ports:
@ -402,7 +402,7 @@ services:
- "--licenseFile=/license" - "--licenseFile=/license"
alertmanager: alertmanager:
container_name: alertmanager container_name: alertmanager
image: prom/alertmanager:v0.25.0 image: prom/alertmanager:v0.27.0
volumes: volumes:
- ./alertmanager.yml:/config/alertmanager.yml - ./alertmanager.yml:/config/alertmanager.yml
command: command: