
com.wavefront.slug.dashboard.DashboardSlugBuilders 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.dashboard;
import com.wavefront.slug.SlugVersion;
import lombok.experimental.UtilityClass;
/**
* Static factories for Dashboard slug builder ({@link DashboardSlugBuilder}).
*
* @author Yutian Wu ([email protected])
*/
@UtilityClass
public final class DashboardSlugBuilders {
public static DashboardSlugBuilder slugBuilder() {
return new DashboardSlugBuilderImpl(SlugVersion.V2);
}
@Deprecated
public static DashboardSlugBuilder slugBuilderV1() {
return new DashboardSlugBuilderImpl(SlugVersion.V1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy