TypeScript
const options = {method: 'GET'}; fetch('https://api.example.com/v1/regions/global/workflows/metrics', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "success": true, "data": { "totalRuns": 123, "successRate": 123, "averageDuration": 123, "activeRuns": 123, "failureRate": 123, "period": "<string>" } }
Retrieve aggregate performance metrics for workflows
Metrics aggregation period
1h
24h
7d
30d
Workflow metrics
true
Aggregate workflow performance metrics
Show child attributes
Was this page helpful?