58 lines
1.9 KiB
Plaintext
58 lines
1.9 KiB
Plaintext
menuconfig BR2_PACKAGE_VMUTILS
|
|
bool "vmutils"
|
|
help
|
|
Victoria Metrics utilities
|
|
|
|
if BR2_PACKAGE_VMUTILS
|
|
|
|
config BR2_PACKAGE_VMUTILS_VMAGENT
|
|
bool "vmagent"
|
|
help
|
|
vmagent is a tiny but mighty agent which helps you collect metrics
|
|
from various sources and store them in VictoriaMetrics or any other
|
|
Prometheus-compatible storage systems that support the remote_write
|
|
protocol.
|
|
|
|
config BR2_PACKAGE_VMUTILS_VMALERT
|
|
bool "vmalert"
|
|
help
|
|
vmalert executes a list of the given alerting or recording rules
|
|
against configured -datasource.url. For sending alerting
|
|
notifications vmalert relies on Alertmanager configured via
|
|
-notifier.url flag. Recording rules results are persisted via remote
|
|
write protocol and require -remoteWrite.url to be configured. Vmalert
|
|
is heavily inspired by Prometheus implementation and aims to be
|
|
compatible with its syntax.
|
|
|
|
config BR2_PACKAGE_VMUTILS_VMAUTH
|
|
bool "vmauth"
|
|
help
|
|
vmauth is a simple auth proxy, router and load balancer for
|
|
VictoriaMetrics. It reads auth credentials from Authorization http
|
|
header (Basic Auth, Bearer token and InfluxDB authorization is
|
|
supported), matches them against configs pointed by -auth.config
|
|
command-line flag and proxies incoming HTTP requests to the
|
|
configured per-user url_prefix on successful match. The -auth.config
|
|
can point to either local file or to http url.
|
|
|
|
config BR2_PACKAGE_VMUTILS_VMBACKUP
|
|
bool "vmbackup"
|
|
help
|
|
vmbackup creates VictoriaMetrics data backups from instant snapshots.
|
|
|
|
config BR2_PACKAGE_VMUTILS_VMRESTORE
|
|
bool "vmrestore"
|
|
help
|
|
vmrestore restores data from backups created by vmbackup.
|
|
VictoriaMetrics v1.29.0 and newer versions must be used for working
|
|
with the restored data.
|
|
|
|
config BR2_PACKAGE_VMUTILS_VMCTL
|
|
bool "vmctl"
|
|
help
|
|
VictoriaMetrics command-line tool
|
|
|
|
vmctl provides various useful actions with VictoriaMetrics components.
|
|
|
|
endif
|