flowChartRun element

Type: flowChartRunInfo
Namespace: (default namespace)
XML Schema: ns0.xsd

Contains information about a flow chart run. A flow chart run is the time it takes for any execution flow to cross a pre-defined starting point in a flow chart until any execution flow crosses a pre-defined ending point in the same flow chart.

By default, the start of a run occurs when a flow chart first begins executing, and the end of a run occurs when a flow chart is completely finished and deleted from the engine.

In other words, by default, a run constitutes the lifetime of a flow chart.

However, for finer-grained reporting, set an explicit start and end of a run.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <flowChartRun> <runId>...</runId> <flowChartName>...</flowChartName> <startOfRun>...</startOfRun> <enterOfRun>...</enterOfRun> <endOfRun>...</endOfRun> <runTime>...</runTime> <averageRunTime>...</averageRunTime> <averageRunTimeFormatted>...</averageRunTimeFormatted> <finishedPrematurely>...</finishedPrematurely> <actions> <action> <actionName>...</actionName> <flowChartName>...</flowChartName> <startTime>...</startTime> <startTimeFormatted>...</startTimeFormatted> <endTime>...</endTime> <endTimeFormatted>...</endTimeFormatted> <runTime>...</runTime> <runTimeFormatted>...</runTimeFormatted> <averageRunTime>...</averageRunTime> <averageRunTimeFormatted>...</averageRunTimeFormatted> <waitTime>...</waitTime> <waitTimeFormatted>...</waitTimeFormatted> <averageWaitTime>...</averageWaitTime> <averageWaitTimeFormatted>...</averageWaitTimeFormatted> <finishedPrematurely>...</finishedPrematurely> <lastActionHistoryPk>...</lastActionHistoryPk> </action> <action> <!--...--> </action> <!--...more "action" elements...--> </actions> <startOfRunFormatted>...</startOfRunFormatted> <enterOfRunFormatted>...</enterOfRunFormatted> <endOfRunFormatted>...</endOfRunFormatted> <runTimeFormatted>...</runTimeFormatted> </flowChartRun>

Example JSON

{ "runId" : ..., "flowChartName" : "...", "startOfRun" : "...", "enterOfRun" : "...", "endOfRun" : "...", "runTime" : ..., "averageRunTime" : ..., "averageRunTimeFormatted" : "...", "finishedPrematurely" : false, "actions" : [ { "actionName" : "...", "flowChartName" : "...", "startTime" : ..., "startTimeFormatted" : "...", "endTime" : ..., "endTimeFormatted" : "...", "runTime" : ..., "runTimeFormatted" : "...", "averageRunTime" : ..., "averageRunTimeFormatted" : "...", "waitTime" : ..., "waitTimeFormatted" : "...", "averageWaitTime" : ..., "averageWaitTimeFormatted" : "...", "finishedPrematurely" : false, "lastActionHistoryPk" : ... }, ... ], "startOfRunFormatted" : "...", "enterOfRunFormatted" : "...", "endOfRunFormatted" : "...", "runTimeFormatted" : "..." }