
com.wavefront.slug.SlugVersion 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;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* Enums represents all the supported slug versions.
*/
@Getter
@AllArgsConstructor
public enum SlugVersion {
@Deprecated
V1("_v01"),
V2("_v02");
private final String versionStr;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy