| <table class="configuration table table-bordered"> |
| <thead> |
| <tr> |
| <th class="text-left" style="width: 20%">Key</th> |
| <th class="text-left" style="width: 15%">Default</th> |
| <th class="text-left" style="width: 10%">Type</th> |
| <th class="text-left" style="width: 55%">Description</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr> |
| <td><h5>events.reporter.<name>.<parameter></h5></td> |
| <td style="word-wrap: break-word;">(none)</td> |
| <td>String</td> |
| <td>Configures the parameter <parameter> for the reporter named <name>.</td> |
| </tr> |
| <tr> |
| <td><h5>events.reporter.<name>.factory.class</h5></td> |
| <td style="word-wrap: break-word;">(none)</td> |
| <td>String</td> |
| <td>The reporter factory class to use for the reporter named <name>.</td> |
| </tr> |
| <tr> |
| <td><h5>events.reporter.<name>.filter.excludes</h5></td> |
| <td style="word-wrap: break-word;"></td> |
| <td>List<String></td> |
| <td>The events that should be excluded for the reporter named <name>. The format is identical to <code class="highlighter-rouge">filter.includes</code><br /></td> |
| </tr> |
| <tr> |
| <td><h5>events.reporter.<name>.filter.includes</h5></td> |
| <td style="word-wrap: break-word;">"*:*:*"</td> |
| <td>List<String></td> |
| <td>The events that should be included for the reporter named <name>. Filters are specified as a list, with each filter following this format:<br /><code class="highlighter-rouge"><scope>[:<name>[,<name>]]</code><br />An event matches a filter if the scope pattern and at least one of the name patterns match.<br /><ul><li>scope: Filters based on the logical scope.<br />Specified as a pattern where <code class="highlighter-rouge">*</code> matches any sequence of characters and <code class="highlighter-rouge">.</code> separates scope components.<br /><br />For example:<br /> "<code class="highlighter-rouge">jobmanager.job</code>" matches any job-related events on the JobManager,<br /> "<code class="highlighter-rouge">*.job</code>" matches all job-related events and<br /> "<code class="highlighter-rouge">*.job.*</code>" matches all events below the job-level (i.e., task/operator events etc.).<br /><br /></li><li>name: Filters based on the event name.<br />Specified as a comma-separated list of patterns where <code class="highlighter-rouge">*</code> matches any sequence of characters.<br /><br />For example, "<code class="highlighter-rouge">*Records*,*Bytes*</code>" matches any event where the name contains <code class="highlighter-rouge">"Records" or "Bytes"</code>.</li></ul></td> |
| </tr> |
| <tr> |
| <td><h5>events.reporter.<name>.scope.delimiter</h5></td> |
| <td style="word-wrap: break-word;">"."</td> |
| <td>String</td> |
| <td>The delimiter used to assemble the metric identifier for the reporter named <name>.</td> |
| </tr> |
| <tr> |
| <td><h5>events.reporter.<name>.scope.variables.additional</h5></td> |
| <td style="word-wrap: break-word;"></td> |
| <td>Map</td> |
| <td>The map of additional variables that should be included for the reporter named <name>.</td> |
| </tr> |
| <tr> |
| <td><h5>events.reporter.<name>.scope.variables.excludes</h5></td> |
| <td style="word-wrap: break-word;">"."</td> |
| <td>String</td> |
| <td>The set of variables that should be excluded for the reporter named <name>. Only applicable to tag-based reporters.</td> |
| </tr> |
| <tr> |
| <td><h5>events.reporters</h5></td> |
| <td style="word-wrap: break-word;">(none)</td> |
| <td>String</td> |
| <td>An optional list of event reporter names. If configured, only reporters whose name matches any of the names in the list will be started. Otherwise, all reporters that could be found in the configuration will be started.</td> |
| </tr> |
| </tbody> |
| </table> |