Re: user defined metrics showed in Flink UI but not datadog

2020-12-08 Thread Chesnay Schepler
https://issues.apache.org/jira/browse/FLINK-20533 There is no workaround in the current Flink releases, but you could compile the reporter based on the PR that I opened. On 12/8/2020 10:38 PM, Fanbin Bu wrote: thank you Chesnay. I did verified that count works with datadog. Please link here t

Re: user defined metrics showed in Flink UI but not datadog

2020-12-08 Thread Fanbin Bu
thank you Chesnay. I did verified that count works with datadog. Please link here the ticket once you create it. Meanwhile, is there any workaround for now? Fanbin On Tue, Dec 8, 2020 at 2:56 AM Chesnay Schepler wrote: > It appears that the datadog reporter does not report histograms. I'll file

Re: user defined metrics showed in Flink UI but not datadog

2020-12-08 Thread Chesnay Schepler
It appears that the datadog reporter does not report histograms. I'll file an issue to fix that. On 12/8/2020 4:42 AM, Fanbin Bu wrote: Hi, I followed [1] to define my own metric as: val dropwizardHistogram = new com.codahale.metrics.Histogram(new SlidingWindowReservoir(500)) histogram = ge

user defined metrics showed in Flink UI but not datadog

2020-12-07 Thread Fanbin Bu
Hi, I followed [1] to define my own metric as: val dropwizardHistogram = new com.codahale.metrics.Histogram(new SlidingWindowReservoir(500)) histogram = getRuntimeContext .getMetricGroup .histogram("*feature_latency*", new DropwizardHistogramWrapper(dropwizardHistogram)) and it is su