Key Default Type Description
events.reporter.<name>.factory.class
(none) String The reporter factory class to use for the reporter named <name>.
events.reporter.<name>.scope.delimiter
"." String The delimiter used to assemble the metric identifier for the reporter named <name>.
events.reporter.<name>.scope.variables.excludes
"." String The set of variables that should be excluded for the reporter named <name>. Only applicable to tag-based reporters.
events.reporter.<name>.scope.variables.additional
Map The map of additional variables that should be included for the reporter named <name>.
events.reporter.<name>.<parameter>
(none) String Configures the parameter <parameter> for the reporter named <name>.
events.reporter.<name>.filter.includes
"*:*:*" 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.
  • scope: Filters based on the logical scope.
    Specified as a pattern where * 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.).

  • name: Filters based on the event name.
    Specified as a comma-separated list of patterns where * matches any sequence of characters.

    For example, "*Records*,*Bytes*" matches any event where the name contains "Records" or "Bytes".
events.reporter.<name>.filter.excludes
List<String> The events that should be excluded for the reporter named <name>. The format is identical to filter.includes