mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 08:23:34 +01:00
docs/vmalert.md: sync with app/vmalert/README.md
This commit is contained in:
parent
e208e76222
commit
4bc3d284fa
@ -48,10 +48,11 @@ Rules in group evaluated one-by-one sequentially.
|
|||||||
* `http://<vmalert-addr>/api/v1/<groupName>/<alertID>/status" ` - get alert status by ID.
|
* `http://<vmalert-addr>/api/v1/<groupName>/<alertID>/status" ` - get alert status by ID.
|
||||||
Used as alert source in AlertManager.
|
Used as alert source in AlertManager.
|
||||||
* `http://<vmalert-addr>/metrics` - application metrics.
|
* `http://<vmalert-addr>/metrics` - application metrics.
|
||||||
|
* `http://<vmalert-addr>/-/reload` - hot configuration reload.
|
||||||
|
|
||||||
`vmalert` may be configured with `-remotewrite` flag to write alerts state in form of timeseries
|
`vmalert` may be configured with `-remoteWrite` flag to write alerts state in form of timeseries
|
||||||
via remote write protocol. Alerts state will be written as `ALERTS` timeseries. These timeseries
|
via remote write protocol. Alerts state will be written as `ALERTS` timeseries. These timeseries
|
||||||
may be used to recover alerts state on `vmalert` restarts if `-remoteread` is configured.
|
may be used to recover alerts state on `vmalert` restarts if `-remoteRead` is configured.
|
||||||
|
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
@ -81,19 +82,21 @@ Usage of vmalert:
|
|||||||
Address to listen for http connections (default ":8880")
|
Address to listen for http connections (default ":8880")
|
||||||
-notifier.url string
|
-notifier.url string
|
||||||
Prometheus alertmanager URL. Required parameter. e.g. http://127.0.0.1:9093
|
Prometheus alertmanager URL. Required parameter. e.g. http://127.0.0.1:9093
|
||||||
-remoteread.basicAuth.password string
|
-remoteRead.basicAuth.password string
|
||||||
Optional basic auth password for -remoteread.url
|
Optional basic auth password for -remoteRead.url
|
||||||
-remoteread.basicAuth.username string
|
-remoteRead.basicAuth.username string
|
||||||
Optional basic auth username for -remoteread.url
|
Optional basic auth username for -remoteRead.url
|
||||||
-remoteread.lookback duration
|
-remoteRead.lookback duration
|
||||||
Lookback defines how far to look into past for alerts timeseries. For example, if lookback=1h then range from now() to now()-1h will be scanned. (default 1h0m0s)
|
Lookback defines how far to look into past for alerts timeseries. For example, if lookback=1h then range from now() to now()-1h will be scanned. (default 1h0m0s)
|
||||||
-remoteread.url vmalert
|
-remoteRead.url vmalert
|
||||||
Optional URL to Victoria Metrics or VMSelect that will be used to restore alerts state. This configuration makes sense only if vmalert was configured with `remotewrite.url` before and has been successfully persisted its state. E.g. http://127.0.0.1:8428
|
Optional URL to Victoria Metrics or VMSelect that will be used to restore alerts state. This configuration makes sense only if vmalert was configured with `remoteWrite.url` before and has been successfully persisted its state. E.g. http://127.0.0.1:8428
|
||||||
-remotewrite.basicAuth.password string
|
-remoteWrite.basicAuth.password string
|
||||||
Optional basic auth password for -remotewrite.url
|
Optional basic auth password for -remoteWrite.url
|
||||||
-remotewrite.basicAuth.username string
|
-remoteWrite.basicAuth.username string
|
||||||
Optional basic auth username for -remotewrite.url
|
Optional basic auth username for -remoteWrite.url
|
||||||
-remotewrite.url string
|
-remoteWrite.maxQueueSize
|
||||||
|
Defines the max number of pending datapoints to remote write endpoint
|
||||||
|
-remoteWrite.url string
|
||||||
Optional URL to Victoria Metrics or VMInsert where to persist alerts state in form of timeseries. E.g. http://127.0.0.1:8428
|
Optional URL to Victoria Metrics or VMInsert where to persist alerts state in form of timeseries. E.g. http://127.0.0.1:8428
|
||||||
-rule value
|
-rule value
|
||||||
Path to the file with alert rules.
|
Path to the file with alert rules.
|
||||||
@ -109,6 +112,9 @@ Usage of vmalert:
|
|||||||
Pass `-help` to `vmalert` in order to see the full list of supported
|
Pass `-help` to `vmalert` in order to see the full list of supported
|
||||||
command-line flags with their descriptions.
|
command-line flags with their descriptions.
|
||||||
|
|
||||||
|
To reload configuration without `vmalert` restart send SIGHUP signal
|
||||||
|
or send GET request to `/-/reload` endpoint.
|
||||||
|
|
||||||
### Contributing
|
### Contributing
|
||||||
|
|
||||||
`vmalert` is mostly designed and built by VictoriaMetrics community.
|
`vmalert` is mostly designed and built by VictoriaMetrics community.
|
||||||
|
Loading…
Reference in New Issue
Block a user