Normalizing Metric Identifies for Reporting Systems

2021-01-08 Thread Joseph Lorenzini
Hi all,   I am implementing a metric reporter for newrelic. I’d like it to support a job’s operator metrics that come with the flink framework out of the box. In order to ensure each metric is unique you can’t use the metric name, you need to use the metric identifier. However, I am

Re: Normalizing Metric Identifies for Reporting Systems

2021-01-08 Thread Chesnay Schepler
One thing you could do is take the first N characters and hash the remaining ones; I don't think there is a better solution at the moment. The size of job/task/operator names is a rather fundamental issue that makes a lot of things complicated (metrics, logging, UI), but we haven't made any