Connectors

Vercel Drains

Bring Vercel logs into RawTree using Vercel Drains.

How it works

Vercel Drains forward observability data from your projects to a custom HTTPS endpoint using POST requests. RawTree can receive those events directly through the table ingest API. No connector or middleware is required: Vercel can send events directly to the RawTree HTTP API.

Features

  • Direct ingest from Vercel to RawTree
  • No connector, agent, or proxy required
  • Works with Vercel custom HTTPS drains
  • Supports real-time event ingestion
  • Compatible with RawTree’s HTTP ingest API
  • Query Vercel events immediately after they arrive

Quick Start

In Vercel, create a new Drain and choose a custom HTTPS endpoint. Then use the RawTree API url directly, containing your table name (no manual table creation needed).

https://api.rawtree.com/v1/tables/<your_table_name>

Add these headers:

Content-Type: application/json
Authorization: Bearer <your_api_key>

Query your data

Use the RawTree CLI, query API or the web UI to query your data as it gets ingested.

SELECT *
FROM <your_table_name>
ORDER BY timestamp DESC
LIMIT 100