[
https://issues.apache.org/jira/browse/FLINK-4246?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15389686#comment-15389686
]
ASF GitHub Bot commented on FLINK-4246:
---------------------------------------
Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/2285#discussion_r71898375
--- Diff: docs/apis/metrics.md ---
@@ -229,21 +229,25 @@ or by assigning unique names to jobs and operators.
Metrics can be exposed to an external system by configuring one or several
reporters in `conf/flink-conf.yaml`.
-- `metrics.reporters`: The list of named reporters, i.e. "foo,bar".
+- `metrics.reporters`: The list of named reporters.
- `metrics.reporter.<name>.<config>`: Generic setting `<config>` for the
reporter named `<name>`.
- `metrics.reporter.<name>.class`: The reporter class to use for the
reporter named `<name>`.
- `metrics.reporter.<name>.interval`: The reporter interval to use for the
reporter named `<name>`.
-All reporters must at least have the `class` config, some allow specifying
a reporting `interval`. Below,
+All reporters must at least have the `class` property, some allow
specifying a reporting `interval`. Below,
we will list more settings specific to each reporter.
-Example reporter configuration for using the built-in JMX reporter:
+Example reporter configuration that specifies multiple reporters:
```
-metrics.reporters: my_jmx_reporter
+metrics.reporters: my_jmx_reporter,my_other_reporter
metrics.reporter.my_jmx_reporter.class:
org.apache.flink.metrics.reporter.JMXReporter
-metrics.reporter.my_jmx_reporter.port: 9020-940
+metrics.reporter.my_jmx_reporter.port: 9020-9040
+
+metrics.reporter.my_jmx_reporter.class:
org.apache.flink.metrics.graphite.GraphiteReporter
--- End diff --
should be named my_other_reporter
> Allow Specifying Multiple Metrics Reporters
> -------------------------------------------
>
> Key: FLINK-4246
> URL: https://issues.apache.org/jira/browse/FLINK-4246
> Project: Flink
> Issue Type: Improvement
> Components: Metrics
> Affects Versions: 1.1.0
> Reporter: Aljoscha Krettek
> Assignee: Aljoscha Krettek
> Fix For: 1.1.0
>
>
> We should allow specifying multiple reporters. A rough sketch of how the
> configuration should look like is this:
> {code}
> metrics.reporters = foo,bar
> metrics.reporter.foo.class = JMXReporter.class
> metrics.reporter.foo.port = 42-117
> metrics.reporter.bar.class = GangliaReporter.class
> metrics.reporter.bar.port = 512
> metrics.reporter.bar.whatever = 2
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)