> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mezmo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Prometheus Remote Write

> Send metrics to a Mezmo Pipeline using the Prometheus Remote Write source, with a unique endpoint URL and Bearer Token authentication.

## Description

You can send your metrics to a Mezmo Pipeline to be received as Prometheus Remote Write data.

## Configuration

The Mezmo Prometheus Remote Write source provides a unique endpoint URL that uses **Bearer Token** authentication. You can obtain the unique endpoint and Bearer Token from the Mezmo pipeline app when you create a new Prometheus Remote Write source.

### Configuration Options

| Option         | Description                                              |
| -------------- | -------------------------------------------------------- |
| `url`          | unique URL for your `remote_write` source                |
| `bearer_token` | token used in sending data to your `remote_write` source |

### Prometheus Configuration File

To configure a Prometheus instance add a section like this to its configuration file:

```yaml theme={null}
     - url: https://pipeline.mezmo.com/v1/<YOUR ROUTE ID>
       bearer_token: <YOUR_PIPELINE_INGEST_KEY>

```

### Kubernetes Operator

If you are running Prometheus within Kubernetes using the Kubernetes operator you can configure the instance with these commands, templating in the Bearer Token, the endpoint provided by the Mezmo Web App, and the Prometheus crd name:

```bash theme={null}
kubectl -n monitoring create secret generic mz-prom-rw-token --from-literal=value=<TOKEN FROM APP>

```

```bash theme={null}
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

```
