Configuring the Monitoring of Profiling Data in the Source View
The root element of the profiling file i s <Profiling>. The element can contain individual processes of the project that should be explicitly covered or excluded from logging.
The <Profiling> element can have the following attribute:
| Attribute | Description |
|---|---|
active | Defines whether logging of processes is enabled or disabled. Possible values:
|
The <Profiling> element contains the <Processes> child element, which may contain the following attribute:
| Attribute | Description |
|---|---|
filterType | Defines whether the stored processes should be included or excluded from logging. Possible values:
|
The <Processes> element may contain <Process> child elements if one or more processes are to be explicitly included or excluded from logging.
The Process element contains the following attribute:
| Attribute | Description |
|---|---|
path | Required. Contains the path to the Technical Process to be included or excluded from the logging. Possible values: Repository path to a Technical Process (e.g., |
Example of .profiling file
In the following example, the Technical Processes Process_B.wrf and Process_C.wrf are excluded from logging.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Profiling>
<Processes filterType="exclude">
<Process path="Processes/Process_B.wrf"/>
<Process path="Processes/Process_C.wrf"/>
</Processes>
</Profiling>