get https://api.clustaar.io/bots//stats/daily_steps_stats
Get the daily steps executions stats.
Response
Attribute | Type | Description |
---|---|---|
data[].type | string | always "timed_step_executions_stats" |
data[].date | string | date of object. "2018-10-02" |
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": "timed_step_executions_stats",
"stepID": "5b06d94cb76715002e6a12a6",
"stepName": "hello world",
"executionsCount": 2,
"fallbacksCount": 0,
"executionsPercent": 0.6666666667,
"date": "2019-01-24"
},
{
"type": "timed_step_executions_stats",
"stepID": "5b06d94cb76715002e6a12a6",
"storyName": "hello world",
"executionsCount": 1,
"fallbacksCount": 0,
"executionsPercent": 1,
"date": "2019-01-27"
}
]
}