Re: Sending custom statsd tags

2019-10-31 Thread vino yang
Hi Prakhar, You need to customize StatsDReporter[1] in the Flink source. If you want to flexibly get configurable tags from the configuration file[2], you can refer to the implementation of DatadogHttpReporter#open[3] (for reference only how to get the tag). Best, Vino [1]:

Re: Sending custom statsd tags

2019-10-31 Thread Prakhar Mathur
Hi Chesnay, Thanks for the response, can you point me to some existing example for this? On Wed, Oct 30, 2019 at 5:30 PM Chesnay Schepler wrote: > Not possible, you'll have to extend the StatsDReporter yourself to add > arbitrary tags. > > On 30/10/2019 12:52, Prakhar Mathur wrote: > > Hi, > >

Re: Sending custom statsd tags

2019-10-30 Thread Chesnay Schepler
Not possible, you'll have to extend the StatsDReporter yourself to add arbitrary tags. On 30/10/2019 12:52, Prakhar Mathur wrote: Hi, We are running Flink 1.6.2. We are using flink-metrics-statsd jar in order to send metrics to telegraf. In order to send custom metrics, we are using

Sending custom statsd tags

2019-10-30 Thread Prakhar Mathur
Hi, We are running Flink 1.6.2. We are using flink-metrics-statsd jar in order to send metrics to telegraf. In order to send custom metrics, we are using MetricGroups. Currently, we are trying to send a few custom tags but unable to find any examples or documentation regarding the same. Regards