var camelCase … // LintMetricUnits detects issues with metric unit names. func LintMetricUnits(mf *dto.MetricFamily) []error { … } // LintMetricTypeInName detects when metric types are included in the metric name. func LintMetricTypeInName(mf *dto.MetricFamily) []error { … } // LintReservedChars detects colons in metric names. func LintReservedChars(mf *dto.MetricFamily) []error { … } // LintCamelCase detects metric names and label names written in camelCase. func LintCamelCase(mf *dto.MetricFamily) []error { … } // LintUnitAbbreviations detects abbreviated units in the metric name. func LintUnitAbbreviations(mf *dto.MetricFamily) []error { … }