Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(standalone): add monitoring configuration files #16594

Merged
merged 2 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: []
Loading