ru.fix.aggregating.profiler.NoopLabelSticker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aggregating-profiler Show documentation
Show all versions of aggregating-profiler Show documentation
https://github.com/ru-fix/aggregating-profiler
package ru.fix.aggregating.profiler;
import java.util.Collections;
import java.util.Map;
/**
* Stub implementation of LabelSticker.
* It does not tag anything
*/
public class NoopLabelSticker implements LabelSticker {
@Override
public Map buildLabels(String identityName) {
return Collections.emptyMap();
}
}