docs/layouts/shortcodes/generated/event_reporters_section.html
| Key | Default | Type | Description |
|---|---|---|---|
| (none) | String | The reporter factory class to use for the reporter named <name>. | |
| "." | String | The delimiter used to assemble the metric identifier for the reporter named <name>. | |
| "." | String | The set of variables that should be excluded for the reporter named <name>. Only applicable to tag-based reporters. | |
| | Map | The map of additional variables that should be included for the reporter named <name>. | |
| (none) | String | Configures the parameter <parameter> for the reporter named <name>. | |
| "*:*:*" | List<String> | The events that should be included for the reporter named <name>. Filters are specified as a list, with each filter following this format:
<scope>[:<name>[,<name>]]
An event matches a filter if the scope pattern and at least one of the name patterns match.
* matches any sequence of characters and . separates scope components.For example:
"jobmanager.job" matches any job-related events on the JobManager,
"*.job" matches all job-related events and
"*.job.*" matches all events below the job-level (i.e., task/operator events etc.).
* matches any sequence of characters.For example, "*Records*,*Bytes*" matches any event where the name contains "Records" or "Bytes".
| |
| | List<String> | The events that should be excluded for the reporter named <name>. The format is identical to filter.includes
|