All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog2.telemetry.TelemetryMetaData Maven / Gradle / Ivy

package org.graylog2.telemetry;

import org.graylog2.plugin.PluginMetaData;
import org.graylog2.plugin.Version;

import java.net.URI;

public abstract class TelemetryMetaData implements PluginMetaData {
    public static final Version VERSION = new Version(1, 0, 1);

    @Override
    public String getAuthor() {
        return "Graylog, Inc.";
    }

    @Override
    public URI getURL() {
        return URI.create("https://www.graylog.org/");
    }

    @Override
    public Version getVersion() {
        return VERSION;
    }

    @Override
    public String getDescription() {
        return "A plugin for monitoring the state of your Graylog nodes and cluster.";
    }

    @Override
    public Version getRequiredVersion() {
        return new Version(1, 0, 0);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy