io.micrometer.graphite.GraphiteDimensionalNamingConvention Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micrometer-registry-graphite Show documentation
Show all versions of micrometer-registry-graphite Show documentation
Application monitoring instrumentation facade
/*
* Copyright 2020 VMware, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micrometer.graphite;
import io.micrometer.common.lang.Nullable;
import io.micrometer.core.instrument.Meter;
import io.micrometer.core.instrument.config.NamingConvention;
import java.text.Normalizer;
import java.util.regex.Pattern;
/**
* Dimensional {@link NamingConvention} for Graphite based on Graphite's Tag support
*
* @see Graphite Tag
* Support
* @author Jon Schneider
* @author Johnny Lim
* @author Andrew Fitzgerald
* @since 1.4.0
*/
public class GraphiteDimensionalNamingConvention implements NamingConvention {
/**
* A list that probably is blacklisted:
* https://github.com/graphite-project/graphite-web/blob/master/webapp/graphite/render/grammar.py#L48-L55.
* Empirically, we have found others.
*/
private static final Pattern PATTERN_NAME_BLACKLISTED_CHARS = Pattern.compile("[{}(),=\\[\\]/ ?:;]");
/**
* The list of invalid tag key and value characters can be found here:
* https://graphite.readthedocs.io/en/latest/tags.html#carbon
*/
private static final Pattern PATTERN_TAG_KEY_BLACKLISTED_CHARS = Pattern.compile("[;!^=]");
private static final Pattern PATTERN_TAG_VALUE_BLACKLISTED_CHARS = Pattern.compile("[;~]");
/**
* Graphite tag keys and values must have a length >= 1
* https://graphite.readthedocs.io/en/latest/tags.html#carbon
*/
private static final String UNSPECIFIED = "unspecified";
private final NamingConvention delegate;
public GraphiteDimensionalNamingConvention() {
this(NamingConvention.dot);
}
public GraphiteDimensionalNamingConvention(NamingConvention delegate) {
this.delegate = delegate;
}
@Override
public String name(String name, Meter.Type type, @Nullable String baseUnit) {
return sanitizeName(this.delegate.name(normalize(name), type, baseUnit));
}
@Override
public String tagKey(String key) {
if (key.isEmpty()) {
return UNSPECIFIED;
}
return sanitizeTagKey(this.delegate.tagKey(normalize(key)));
}
@Override
public String tagValue(String value) {
if (value.isEmpty()) {
return UNSPECIFIED;
}
return sanitizeTagValue(this.delegate.tagValue(normalize(value)));
}
/**
* Github Issue: https://github.com/graphite-project/graphite-web/issues/243 Unicode
* is not OK. Some special chars are not OK.
*/
private String normalize(String name) {
return Normalizer.normalize(name, Normalizer.Form.NFKD);
}
private String sanitizeName(String delegated) {
return PATTERN_NAME_BLACKLISTED_CHARS.matcher(delegated).replaceAll("_");
}
private String sanitizeTagKey(String delegated) {
return PATTERN_TAG_KEY_BLACKLISTED_CHARS.matcher(delegated).replaceAll("_");
}
private String sanitizeTagValue(String delegated) {
return PATTERN_TAG_VALUE_BLACKLISTED_CHARS.matcher(delegated).replaceAll("_");
}
}