 merged.eplcoverage. A single file containing the combined EPL code coverage information from all the input files. This can be used as input to another invocation of the epl_coverage tool.
merged.eplcoverage. A single file containing the combined EPL code coverage information from all the input files. This can be used as input to another invocation of the epl_coverage tool. coverage_summary.csv. A summary of the percentage of lines and instructions covered in each source file in the standard comma-separated values text format (in the operating system's local character encoding). This file may be useful for reviewing coverage information in a spreadsheet, or as input for an automated tool that records coverage information as part of a continuous integration build/test system. The file starts with a header line beginning with the hash (#) character which identifies the columns used in the rest of the file. It is recommended that any tool that reads this file should use the header line to identify the contents of each column; this is helpful in case columns are added or reordered in a later release.
coverage_summary.csv. A summary of the percentage of lines and instructions covered in each source file in the standard comma-separated values text format (in the operating system's local character encoding). This file may be useful for reviewing coverage information in a spreadsheet, or as input for an automated tool that records coverage information as part of a continuous integration build/test system. The file starts with a header line beginning with the hash (#) character which identifies the columns used in the rest of the file. It is recommended that any tool that reads this file should use the header line to identify the contents of each column; this is helpful in case columns are added or reordered in a later release. epl_coverage.xml. An XML representation of the combined code coverage information for all the input files. This file is written in a widely-used coverage file format that can be read by many third-party tools (the file format that was popularized by Cobertura, which is a code coverage utility for Java; see also 
    https://cobertura.github.io/cobertura/).
epl_coverage.xml. An XML representation of the combined code coverage information for all the input files. This file is written in a widely-used coverage file format that can be read by many third-party tools (the file format that was popularized by Cobertura, which is a code coverage utility for Java; see also 
    https://cobertura.github.io/cobertura/). index.html (and associated .css and .html files). An HTML summary of coverage information, including annotated copies of the source files showing which executable lines are covered.
index.html (and associated .css and .html files). An HTML summary of coverage information, including annotated copies of the source files showing which executable lines are covered. forward slashes (/) to indicate directory separators (on all platforms),
forward slashes (/) to indicate directory separators (on all platforms), a single asterisk (*) to indicate any number of non-directory separator characters,
a single asterisk (*) to indicate any number of non-directory separator characters, two asterisks (**) to indicate any number of characters potentially including directory separators, and
two asterisks (**) to indicate any number of characters potentially including directory separators, and a question mark (?) to indicate a single character.
a question mark (?) to indicate a single character.| Option | Description | 
| -h | --help | Displays usage information. | 
| -V | --version | Displays version information for the epl_coverage tool. | 
| -o dir | --output dir | Specifies the directory into which the tool writes the output files. If not specified, the current directory is used. | 
| -i pattern | --include pattern | Filtering option which specifies the EPL source files to include (defaults to **). This option can be specified multiple times. | 
| -x pattern | --exclude pattern | Filtering option which specifies the EPL source files to exclude (for example, **/foo/Bar*.mon). This option can be specified multiple times. | 
| -s dir | --source dir | HTML report option which specifies the search directories for locating any source files that were injected without specifying an absolute path. This option can be specified multiple times. If supplied, this option is also used by the XML report for normalizing/fixing up paths to source files, allowing them to be located by third-party tools. | 
| --title str | HTML report option which specifies the title to write into the HTML file. |