docs/layouts/shortcodes/generated/trace_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 spans that should be included for the reporter named <name>. Filters are specified as a list, with each filter following this format:
<scope>[:<name>[,<name>]]
A span 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 spans on the JobManager,
"*.job" matches all job-related spans and
"*.job.*" matches all spans below the job-level (i.e., task/operator spans etc.).
* matches any sequence of characters.For example, "*Records*,*Bytes*" matches any span where the name contains "Records" or "Bytes".
| |
| | List<String> | The spans that should be excluded for the reporter named <name>. The format is identical to filter.includes
|