Why do you need to append default.default if a normal string is provided as the metric name? MetricRegistry/name seems to accept normal string fine without list of strings
Because metrics need to have a group (or at least it was required way back when this project was started). If you want to provide your own group name, pass in a pair of group name and metric name.
Trying to understand
metric-name
functionhttps://github.com/sjl/metrics-clojure/blob/master/metrics-clojure-core/src/metrics/core.clj#L19
Why do you need to append
default.default
if a normal string is provided as the metric name? MetricRegistry/name seems to accept normal string fine without list of strings