Sources
Prometheus Remote Write
Send metrics to a Mezmo Pipeline using the Prometheus Remote Write source, with a unique endpoint URL and Bearer Token authentication.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Send metrics to a Mezmo Pipeline using the Prometheus Remote Write source, with a unique endpoint URL and Bearer Token authentication.
| Option | Description |
|---|---|
url | unique URL for your remote_write source |
bearer_token | token used in sending data to your remote_write source |
- url: https://pipeline.mezmo.com/v1/<YOUR ROUTE ID>
bearer_token: <YOUR_PIPELINE_INGEST_KEY>
kubectl -n monitoring create secret generic mz-prom-rw-token --from-literal=value=<TOKEN FROM APP>
cat <<'EOF' | kubectl patch prometheus -n <PROMETHEUS NAMESPACE> <YOUR PROMETHEUS CRD INSTANCE> -f -
spec:
remoteWrite:
- authorization:
credentials:
key: value
name: mz-prom-rw-token
url: <ENDPOINT FROM APP>
EOF
Was this page helpful?
