Daily steps executions statistics

Get the daily steps executions stats.

Response

AttributeTypeDescription
data[].typestringalways "timed_step_executions_stats"
data[].datestringdate of object. "2018-10-02"
data[].stepIDstringthe step ID
data[].stepNamestringthe step name
data[].executionsCountintthe number of hit of the step
data[].fallbacksCountintthe number of hit of the step’s fallback
data[].executionsPercentfloatrate 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"
        }
    ]
}
Language