Browse resources

Run your instance

Usage and costs

What knotel costs on Cloudflare, how it's metered, and where the limits are.

knotel runs on your Cloudflare bill, with no per-seat or per-event pricing of its own. For a small team it usually costs only the Workers Paid plan.

What Cloudflare charges

The Workers Paid plan is $5/month per account and includes monthly amounts shared by all your Workers. Above them:

ProductItemIncluded per monthAbove that
WorkersRequests10M$0.3 per million
WorkersCPU time30M ms$0.02 per million ms
PipelinesReceiving spansUnlimitedFree
PipelinesWriting spans to Iceberg50 GB$0.06 per GB
R2 SQLData scanned10 GB$0.0025 per GB, minimum 10 MB per query
R2Storage10 GB$0.015 per GB-month
D1Rows read25B$0.001 per million
D1Rows written50M$1 per million
D1Storage5 GB$0.75 per GB-month
KVReads10M$0.5 per million
KVWrites and deletes1M each$5 per million

Prices were checked on 2026-09-16. Cloudflare's pricing pages are the source of truth.

The Usage page

knotel meters itself as it runs and shows the month on the Usage page: Worker requests, spans ingested and filtered, data written to the span store, R2 SQL queries, D1 rows read and written (from D1's own counters, including index updates), KV operations and hot-cache size, priced against the allowances above, with a projection to month end and a breakdown per project.

What it can't see
CPU time isn't measurable from inside a Worker. Two lines are estimates: Parquet compression makes the real Pipelines figure smaller than the bytes received, and R2 SQL is billed on data scanned, which its API doesn't report back, so each query is counted at its 10 MB minimum. Your other Workers also share the same allowances.

A worked estimate

For 200,000 spans a month:

  • Requests: the SDKs batch spans (up to 50 per request from browsers, one request per Worker invocation), so ingest is well under 200,000 requests, against 10 million included.
  • Span storage: roughly 0.4 GB of JSON received, which compresses further as Parquet: inside the 50 GB Pipelines allowance and the 10 GB R2 free tier for the first months.
  • R2 SQL: a dashboard load beyond the hot window is a handful of queries; thousands of them a month still sit inside the 10 GB scanned allowance.
  • D1: only the hot window, so about 0.1 GB and a couple of million rows written a month, against 5 GB and 50 million.

Total: about $5 a month. Costs grow with retained history (R2 storage) and with how much you query it (R2 SQL), both of which are cheap per unit.

Scaling limits

  • The Iceberg table has no fixed size limit; R2 storage is billed per GB-month.
  • The D1 hot cache is capped at 10 GB. If a busy instance approaches it, lower HOT_WINDOW_DAYS, shorten one project's retention, or filter noisy spans.
  • A Pipelines stream accepts up to 5 MB/s and 5 MB per request. Beyond that, ask Cloudflare to raise the limit.