Nate Rook
Nate Rook
I got that impression from this blog post: https://www.robustperception.io/existential-issues-with-metrics There's a brief mention of it in the official docs: https://prometheus.io/docs/practices/instrumentation/#avoid-missing-metrics It's been useful to me when I've done it, personally.
I can't easily recreate the metric, because my module looks like this: ```javascript const metric = new promClient.Counter({ name: 'some_metric', labelNames: ['this_label_takes_values_from_some_known_enum'] }); for (const l of knownLabels) { //...