
com.wavefront.slug.chart.ChartSlugBuilders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slug-generator Show documentation
Show all versions of slug-generator Show documentation
A library to generate RISON slugs for Wavefront charts
The newest version!
/*
* Copyright 2019 VMware, Inc.
* SPDX-License-Identifier: Apache-2.0
*/
package com.wavefront.slug.chart;
import com.wavefront.slug.SlugVersion;
import lombok.experimental.UtilityClass;
/**
* Static factories for Chart slug builder ({@link ChartSlugBuilder}).
*
* @author Yutian Wu ([email protected])
*/
@UtilityClass
public final class ChartSlugBuilders {
public static ChartSlugBuilder slugBuilder() {
return new ChartSlugBuilderImpl(SlugVersion.V2);
}
@Deprecated
public static ChartSlugBuilder slugBuilderV1() {
return new ChartSlugBuilderImpl(SlugVersion.V1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy