Skip to content

Commit

Permalink
chore: add prometheus scraping for workbench
Browse files Browse the repository at this point in the history
  • Loading branch information
rorlic committed Sep 3, 2024
1 parent 153fa2c commit f037b24
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions load-testing/prometheus/prometheus.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
global:
scrape_interval: 1m
scrape_interval: 5s

scrape_configs:
- job_name: 'ldes-server'
scrape_interval: 15s
scrape_interval: 5s
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['ldes-server:8080']
- job_name: 'ldio-workbench'
scrape_interval: 5s
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['ldio-workbench:8080']

0 comments on commit f037b24

Please sign in to comment.