fe71cb07ae78

latestOpenAPI 3.0.3Apache-2.0raw.githubusercontent.com2026-08-11231735.9 KB
Traffic Analytics

Get app status-class time series

Per-bucket 2xx/3xx/4xx/5xx request counts for one app, zero-filled to a fixed length: 24 hourly buckets for range=24h, 7 or 30 daily buckets for range=7d/range=30d.

get/api/app/{uuid}/traffic/series

Path parameters

uuidstring required

Coolify app UUID (or host, for Caddy — see README.md)

Query parameters

range'24h' | '7d' | '30d'

Time window and bucket granularity for a series. 24h yields 24 hourly buckets; 7d/30d yield 7/30 daily buckets. Defaults to 24h.

Response

Status-class time series for the app

bucketinteger

Unix-millis start of the bucket

s2xxinteger
s3xxinteger
s4xxinteger
s5xxinteger

Example response

[
  {
    "bucket": 1723334400000,
    "s2xx": 42,
    "s3xx": 3,
    "s4xx": 1
  }
]