Endpoint and authentication
Use the ingestion endpoint for your Bronto region:
Every request requires these headers:
Minimal configuration
Tail a log file and forward to Bronto./etc/vector/vector.yaml
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Configure the Vector observability data pipeline to collect, transform, and forward host, container, and application logs to Bronto over HTTP.
| Region | Host |
|---|---|
| EU | https://ingestion.eu.bronto.io:443 |
| US | https://ingestion.us.bronto.io:443 |
| Header | Required | Description |
|---|---|---|
x-bronto-api-key | Required | Your Bronto API key. |
x-bronto-dataset | Required | The dataset to route logs to. |
x-bronto-collection | Required | The collection to group datasets under. |
x-bronto-tags | Optional | Key-value tag pairs (e.g. env=prod,team=platform). See Partitions. |
sources:
app_logs:
type: file
include:
- /path/to/your/logs
sinks:
bronto:
type: "http"
inputs: ["app_logs"]
uri: "https://ingestion.<REGION>.bronto.io:443/"
compression: "gzip"
encoding:
codec: "json"
framing:
method: "newline_delimited"
method: "post"
request:
headers:
x-bronto-api-key: <YOUR_API_KEY>
x-bronto-dataset: <YOUR_DATASET_NAME>
x-bronto-collection: <YOUR_COLLECTION_NAME>
