Products — Overview

Analytics

Ventryx Analytics gives you a complete picture of how your platform is being used — API traffic, workflow performance, team activity, and business-level usage trends — in real time and over time.

What's measured

Metric categoryExamples
API trafficRequest volume, latency (p50/p95/p99), error rate, top endpoints
Workflow performanceRun counts, success rate, mean duration, step-level breakdown
Usage by keyRequests per API key, scope usage, rate limit hits
Team activityActive users, actions per member, login frequency
EventsEvent throughput, type distribution, processing latency
BillingUsage vs. plan limits, projected overage, cost per workflow

Analytics API

All analytics data is available via the API for embedding into your own dashboards or data pipelines:

Query API traffic summary
GET /v1/analytics/requests?from=2026-04-01&to=2026-04-03&group_by=endpoint
Response
{
  "data": [
    { "endpoint": "POST /v1/events", "count": 84200, "error_rate": 0.002, "p99_ms": 38 },
    { "endpoint": "GET /v1/workflows", "count": 12400, "error_rate": 0.001, "p99_ms": 22 }
  ],
  "meta": { "from": "2026-04-01", "to": "2026-04-03" }
}

Exporting data

Export analytics snapshots as CSV or JSON from the dashboard, or set up a continuous export to BigQuery, Snowflake, or an S3 bucket using Data Pipelines.

Retention

PlanReal-time windowHistorical retention
StarterLast 24h30 days
ProLast 7 days1 year
EnterpriseLast 30 daysCustom (up to 7 years)