I am trying to run LGTM but I want to add 1 extra scraper so that it scraps my MicroMeter Metrics from Quarkus. In my Standalone Prometheus Docker Compose i was doing the following
global:
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: 'quarkus-micrometer'
metrics_path: '/q/metrics'
scrape_interval: 15s
static_configs:
- targets: ['host.docker.internal:8080']
How can I add this to the LGTM stack so it starts scraping my http://localhost:8080/q/metrics api like it does in standalone Docker Compose? I didn't see any easy way but maybe I am missing it?
I am trying to run LGTM but I want to add 1 extra scraper so that it scraps my MicroMeter Metrics from Quarkus. In my Standalone Prometheus Docker Compose i was doing the following
and the
prometheus.yml
i was using...How can I add this to the LGTM stack so it starts scraping my
http://localhost:8080/q/metrics
api like it does in standalone Docker Compose? I didn't see any easy way but maybe I am missing it?