Hi, running Flink 1.8
I'm declaring my metric as such.
invalidList = getRuntimeContext()
.getMetricGroup()
.addGroup("MyMetrics")
.meter("invalidList", new DropwizardMeterWrapper(new
com.codahale.metrics.Meter()));
Then in my code I call.
invalidList.markEvent();
On the task nodes I enabled the Influx Telegraf StatsD server. And I
enabled the task node with.
metrics.reporter.stsd.class: org.apache.flink.metrics.statsd.StatsDReporter
metrics.reporter.stsd.host: localhost
metrics.reporter.stsd.port: 8125
The metrics are being pushed to Elasticsearch. So far I only see the
Status_JVM_* metrics.
Do the task specific metrics come from the Job nodes? I have not enabled
reporting on the Job nodes yet.