Skip to content

Commit

Permalink
chore(standalone): add monitoring configuration files (#16594)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed May 10, 2024
1 parent 91b7ee2 commit c52cb9c
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
10 changes: 10 additions & 0 deletions standalone/grafana.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[server]
http_addr = 0.0.0.0
http_port = 3001

[users]
default_theme = light

[auth.anonymous]
enabled = true
org_role = Admin
40 changes: 40 additions & 0 deletions standalone/prometheus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
global:
scrape_interval: 15s
evaluation_interval: 60s
external_labels:
rw_cluster: 20240506-185437


scrape_configs:
- job_name: prometheus
static_configs:
- targets: ["127.0.0.1:9500"]

- job_name: compute
static_configs:
- targets: ["127.0.0.1:1222"]

- job_name: meta
static_configs:
- targets: ["127.0.0.1:1250"]

- job_name: minio
metrics_path: /minio/v2/metrics/cluster
static_configs:
- targets: ["127.0.0.1:9301"]

- job_name: compactor
static_configs:
- targets: ["127.0.0.1:1260"]

- job_name: etcd
static_configs:
- targets: ["127.0.0.1:2379"]

- job_name: frontend
static_configs:
- targets: ["127.0.0.1:2222"]

- job_name: redpanda
static_configs:
- targets: []

0 comments on commit c52cb9c

Please sign in to comment.