Update README with working m3db.vultrlabs.dev endpoint

This commit is contained in:
2026-04-01 02:44:07 +00:00
parent 5f4cd46bc3
commit 5eb58d1864

View File

@@ -77,7 +77,7 @@ kubectl -n m3db get svc m3coordinator-lb
```bash ```bash
./test-metrics.sh <BASE_URL> ./test-metrics.sh <BASE_URL>
# Example: # Example:
./test-metrics.sh https://m3db.vultrlabs.dev:7201 ./test-metrics.sh http://m3db.vultrlabs.dev:7201
``` ```
This script verifies: This script verifies:
@@ -91,7 +91,7 @@ This script verifies:
pip install requests python-snappy pip install requests python-snappy
python3 test-metrics.py <BASE_URL> python3 test-metrics.py <BASE_URL>
# Example: # Example:
python3 test-metrics.py https://m3db.vultrlabs.dev:7201 python3 test-metrics.py http://m3db.vultrlabs.dev:7201
``` ```
Writes a test metric via Prometheus remote_write and reads it back. Writes a test metric via Prometheus remote_write and reads it back.
@@ -120,7 +120,7 @@ remote_read:
```yaml ```yaml
# prometheus.yml # prometheus.yml
remote_write: remote_write:
- url: "http://<LB-IP>:7201/api/v1/prom/remote/write" - url: "http://m3db.vultrlabs.dev:7201/api/v1/prom/remote/write"
queue_config: queue_config:
capacity: 10000 capacity: 10000
max_shards: 30 max_shards: 30
@@ -128,7 +128,7 @@ remote_write:
batch_send_deadline: 5s batch_send_deadline: 5s
remote_read: remote_read:
- url: "http://<LB-IP>:7201/api/v1/prom/remote/read" - url: "http://m3db.vultrlabs.dev:7201/api/v1/prom/remote/read"
read_recent: true read_recent: true
``` ```
@@ -142,7 +142,7 @@ kubectl -n m3db get svc m3coordinator-lb
Add a **Prometheus** datasource in Grafana pointing to: Add a **Prometheus** datasource in Grafana pointing to:
- **In-cluster:** `http://m3coordinator.m3db.svc.cluster.local:7201` - **In-cluster:** `http://m3coordinator.m3db.svc.cluster.local:7201`
- **External:** `http://<LB-IP>:7201` - **External:** `http://m3db.vultrlabs.dev:7201`
All existing PromQL dashboards will work without modification. All existing PromQL dashboards will work without modification.