# Functions
GetGoMetrics wraps an existing monitoring.Registry with `name` into a GoMetricsRegistry for using the registry with go-metrics.Registry.
ModifyName changes a metric its name using the provided function.
NameIn checks a metrics name matching any of the set names.
NameReplace replaces substrings in a metrics names with `new`.
NewGoMetrics creates and registers a new GoMetricsRegistry with the parent registry.
Rename renames a metric to `to`, if the names matches `from` If the name matches, it will be automatically white-listed.
ReportIf sets variable report mode for all metrics satisfying the predicate.
ReportNames enables reporting for all metrics matching any of the given names.
Whitelist sets a list of metric names to be accepted.
WhitelistIf will accept a metric if the metrics name matches the given predicate.
# Variables
GoMetricsRegistry MetricFilter used to convert all metrics not being accepted by the filters to be replace with a Noop-metric.
ToLowerName converts all metric names to lower-case.
ToUpperName converts all metric name to upper-case.
# Structs
GoMetricsRegistry wraps a monitoring.Registry for filtering and registering go-metrics based metrics with the monitoring package.
# Type aliases
MetricFilter type used to defined and combine filters.