get https://api.clustaar.io/bots//stats/steps_stats
Get the daily steps executions stats.
Response
Attribute | Type | Description |
---|---|---|
data[].type | string | always "step_executions_stats" |
data[].stepID | string | the step ID |
data[].stepName | string | the step name |
data[].executionsCount | int | the number of hit of the step |
data[].fallbacksCount | int | the number of hit of the step’s fallback |
data[].executionsPercent | float | rate of hit of the step on the total hit of steps for the day |
{
"data": [
{
"type": "step_executions_stats",
"stepID": "5b06d94cb76715002e6a12a6",
"stepName": "hello world",
"executionsCount": 42,
"fallbacksCount": 0,
"executionsPercent": 0.3962264151
},
{
"type": "step_executions_stats",
"stepID": "5c3f037a4525f0005fecd5e5",
"stepName": "JOKE (event triggered)",
"executionsCount": 34,
"fallbacksCount": 0,
"executionsPercent": 0.320754717
},
{
"type": "step_executions_stats",
"stepID": "5c3f0a474525f0005fecd609",
"stepName": "PRICING",
"executionsCount": 20,
"fallbacksCount": 0,
"executionsPercent": 0.1886792453
}
]
}