To filter for process executions in debug mode, the DebugMode
filter can be set.
The following elements can be specified in the input:
Element | Description |
---|
DebugMode
| (optional) Filter for process executions in debug mode. If the filter is not set, all processes are output. Possible values: |
Example
CODE
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Query>
<ProcessFilter>
<DebugMode>false</DebugMode>
</ProcessFilter>
</Query>
|
Output
CODE
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ProcessExecutions totalSize="0">
<Paginate offset="0" limit="0" />
<ProcessExecution
id="0a3c406f-8130-4f3a-b232-821f7f20c389"
rootId="4289097f-6101-4b18-9f1f-b4beee43249c">
<HostName>SOFTPROJECT</HostName>
<ParentProcess>
<ProcessInstanceId>3c468ad9-3c13-4520-b44c-50f58e49cbe3
</ProcessInstanceId>
<ActionId>0</ActionId>
</ParentProcess>
<Process>string</Process>
<TotalTime>0</TotalTime>
<DebugMode>false</DebugMode>
</ProcessExecution>
</ProcessExecutions>
|