Static configs #
Let’s start from a simple case with scraping targets at pre-defined addresses.
Create a scrape.yaml
file with the following contents:
After you created the scrape.yaml
file, download and unpack single-node VictoriaMetrics to the same directory:
wget https://github.com/VictoriaMetrics/VictoriaMetrics/releases/download/v1.114.0/victoria-metrics-linux-amd64-v1.114.0.tar.gz
tar xzf victoria-metrics-linux-amd64-v1.114.0.tar.gz
Then start VictoriaMetrics and instruct it to scrape targets defined in scrape.yaml
and save scraped metrics
to local storage according to these docs:
./victoria-metrics-prod -promscrape.config=scrape.yaml
Now open the http://localhost:8428/targets
page in web browser in order to see the current status for scrape targets.
The page must contain the information about the target at http://localhost:9100/metrics
url.
It is likely the target has state: down
if you didn’t start node-exporter
on localhost
.
Let’s add a new scrape config to scrape.yaml
for scraping VictoriaMetrics metrics:
Note that the last specified target contains the full url instead of host and port.
This is an extension supported by VictoriaMetrics and vmagent - you can use both host:port
and full urls in scrape target lists.
Send SIGHUP
signal victoria-metrics-prod
process, so it reloads the updated scrape.yaml
:
kill -HUP `pidof victoria-metrics-prod`
Now the http://localhost:8428/targets
page must contain two targets - http://localhost:9100/metrics
and http://localhost:8428/metrics
.
The last one should have state: up
, since this is VictoriaMetrics itself.
Let’s query the scraped metrics. Open http://localhost:8428/vmui/
aka vmui, enter up
in the query input field
and press enter
. You’ll see a graph for up
metrics. It must contain two lines for the targets defined in scrape.yaml
file above.
See these docs about up
metric. You can explore other scraped metrics
in vmui
via Prometheus metrics explorer.
Let’s look closely to the contents of the scrape.yaml
file created above:
The scrape_configs
section contains a list of scrape configs.
Our scrape.yaml
file contains two scrape configs - for job_name: node-exporter
and for job_name: victoriametrics
.
vmagent and single-node VictoriaMetrics
can efficiently process thousands of scrape configs in production.
Every scrape config in the list must contain job_name
field - its’ value is used as job
label
in all the metrics scraped from targets defined in this scrape config.
Every scrape config must contain at least a single section from this list.
Every scrape config may contain other options described here.
In our case only static_configs
sections are used.
These sections consist of a list of static configs according to these docs.
Every static config contains a list of targets
, which need to be scraped. The target address is used as instance
label in all the metrics scraped from the target.
vmagent and single-node VictoriaMetrics can efficiently process tens of thousands of targets in production. If you need scraping more targets, then see these docs.
Targets are scraped at http
or https
urls, which are formed according to these rules.
It is possible to modify scrape urls via relabeling if needed.
File-based target discovery #
It may be not so convenient updating scrape.yaml
file with static_configs
every time new scrape target is added, changed or removed. In this case file_sd_configs
can come to rescue. It allows defining a list of scrape targets in JSON
files, and automatically updating the list of scrape targets
at vmagent or single-node VictoriaMetrics side
when the corresponding JSON
files are updated.
Let’s create node_exporter_targets.json
file with the following contents:
Then create scrape.yaml
file with the following contents:
Then start single-node VictoriaMetrics according to these docs:
Then open http://localhost:8428/targets
page in web browser and see that it contains the two targets defined in node_exporter_targets.json
above.
Now let’s add more targets to node_exporter_targets.json
:
Note that the added targets contains full urls instead of host and port.
This is an extension supported by VictoriaMetrics and vmagent - you can use both host:port
and full urls in scrape target lists.
Save the updated node_exporter_targets.json
, wait for 30 seconds and then refresh the http://localhost:8428/targets
page.
Now this page must contain all the targets defined in the updated node_exporter_targets.json
.
By default vmagent and single-node VictoriaMetrics
check for updates in files
specified at file_sd_configs
every 30 seconds. This interval can be changed via -promscrape.fileSDCheckInterval
command-line flag.
For example, the following command starts VictoriaMetrics, which checks for updates in file_sd_configs
every 5 seconds:
./victoria-metrics-prod -promscrape.config=scrape.yaml -promscrape.fileSDCheckInterval=5s
If the files
contents is broken during the check, then the previous list of scrape targets is kept.
It is possible specifying http
and/or https
urls in files
list. For example, the following config instructs
obtaining fresh list of targets at http://central-config-server/targets?type=node-exporter
url
additionally to node_exporter_targets.json
local file:
It is possible to specify directories with *
wildcards for distinct sets of targets at file_sd_configs
.
See these docs for details.
vmagent and single-node VictoriaMetrics can efficiently scrape tens of thousands of scrape targets. If you need scraping more targets, then see these docs.
Targets are scraped at http
or https
urls, which are formed according to these rules.
It is possible to modify scrape urls via relabeling if needed.
HTTP-based target discovery #
It may not so convenient maintaining a list of local files for file_sd_configs
.
In this case http_sd_configs
can help.
They allow specifying a list of http
or https
urls, which return targets, which need to be scraped.
For example, the following -promscrape.config
periodically fetches the list of targets from the specified url:
Kubernetes target discovery #
Kubernetes target discovery is non-trivial task in general. That’s why it is recommended using either victoria-metrics-k8s-stack Helm chart or VictoriaMetrics operator for Kubernetes for Kubernetes monitoring.
If you feel brave, let’s look at a few typical cases for Kubernetes monitoring.
Discovering and scraping node-exporter
targets in Kubernetes
#
The following -promscrape.config
instructs discovering and scraping all the node-exporter
targets inside Kubernetes cluster:
See kubernetes_sd_configs
docs for more details.
See relabeling docs for details on relabel_configs
.
Discovering and scraping kube-state-metrics
in Kubernetes
#
kube-state-metrics is a special metrics exporter,
which exposes state
metrics for all the Kubernetes objects such as container
, pod
, node
, etc.
It already sets namespace
, container
, pod
and node
labels for every exposed metric,
so these metrics shouldn’t be set in target relabeling.
The following -promscrape.config
instructs discovering and scraping kube-state-metrics target inside Kubernetes cluster:
See kubernetes_sd_configs
docs for more details.
See relabeling docs for details on relabel_configs
.
Discovering and scraping metrics from cadvisor
#
cadvisor exposes resource usage metrics for every container in Kubernetes.
The following -promscrape.config
can be used for collecting cadvisor
metrics in Kubernetes:
See kubernetes_sd_configs
docs for more details.
See relabeling docs for details on relabel_configs
.
See these docs for details on bearer_token_file
and tls_config
options.
Discovering and scraping metrics for a particular container in Kubernetes #
The following -promscrape.config
instructs discovering and scraping metrics for all the containers with the name my-super-app
.
It is expected that these containers expose only a single TCP port, which serves its metrics at /metrics
page
according to Prometheus text exposition format:
See kubernetes_sd_configs
docs for more details.
See relabeling docs for details on relabel_configs
.