Skip to content
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
11 changes: 11 additions & 0 deletions docker/alloy-config.river
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,17 @@ prometheus.scrape "cipherbox_api" {
forward_to = [prometheus.remote_write.grafana_cloud.receiver]
}

// Scrape someguy delegated routing sidecar for DHT and HTTP routing metrics
prometheus.scrape "someguy" {
targets = [{
__address__ = "someguy:8190",
}]
metrics_path = "/debug/metrics/prometheus"
scrape_interval = "30s"

forward_to = [prometheus.remote_write.grafana_cloud.receiver]
}

// Scrape Kubo /debug/metrics/prometheus endpoint for IPFS node health
prometheus.scrape "kubo" {
targets = [{
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ services:
GOLOG_LOG_FMT: json
logging: *default-logging
healthcheck:
test: ['CMD-SHELL', 'wget -qO- http://localhost:8190/version || exit 1']
test: ['CMD-SHELL', 'curl -sf http://localhost:8190/version || exit 1']
Comment thread
FSM1 marked this conversation as resolved.
interval: 10s
timeout: 5s
retries: 10
Expand Down
3 changes: 3 additions & 0 deletions tests/e2e/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ node_modules/
/blob-report/
/playwright/.cache/
/.auth/
/fixtures/files/*
!/fixtures/files/.gitkeep
!/fixtures/files/test-image.png
4 changes: 0 additions & 4 deletions tests/e2e/test-results/.last-run.json

This file was deleted.

Loading