VictoriaMetrics/docs/operator/resources/vmstaticscrape.md
Github Actions 015f0b0424
Automatic update operator docs from VictoriaMetrics/operator@64879fb (#6831)
Automated changes by
[create-pull-request](https://github.com/peter-evans/create-pull-request)
GitHub action

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: f41gh7 <nik@victoriametrics.com>
2024-08-16 16:32:25 +02:00

1.6 KiB

weight title menu aliases
14 VMStaticScrape
docs
identifier parent weight
operator-cr-vmstaticscrape operator-cr 14
/operator/resources/vmstaticscrape/
/operator/resources/vmstaticscrape/index.html

The VMStaticScrape CRD provides mechanism for scraping metrics from static targets, configured by CRD targets.

VMStaticScrape object generates part of VMAgent configuration with static "service discovery". It has various options for scraping configuration of target (with basic auth,tls access, by specific port name etc.).

By specifying configuration at CRD, operator generates config for VMAgent and syncs it. It's useful for external targets management, when service-discovery is not available. VMAgent staticScrapeSelector must match VMStaticScrape labels.

More information about selectors you can find in this doc.

Specification

You can see the full actual specification of the VMStaticScrape resource in the API docs -> VMStaticScrape.

Also, you can check out the examples section.

Examples

apiVersion: operator.victoriametrics.com/v1beta1
kind: VMStaticScrape
metadata:
  name: vmstaticscrape-sample
spec:
  jobName: static
  targetEndpoints:
    - targets: ["192.168.0.1:9100", "196.168.0.50:9100"]
      labels:
        env: dev
        project: operator