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

org.graylog2.telemetry.server.TelemetryServerPlugin Maven / Gradle / Ivy

package org.graylog2.telemetry.server;

import com.google.auto.service.AutoService;
import org.graylog2.plugin.Plugin;
import org.graylog2.plugin.PluginMetaData;
import org.graylog2.plugin.PluginModule;

import java.util.Collection;
import java.util.Collections;

@AutoService(Plugin.class)
public class TelemetryServerPlugin implements Plugin {
    @Override
    public PluginMetaData metadata() {
        return new TelemetryServerMetaData();
    }

    @Override
    public Collection modules() {
        return Collections.singleton(new TelemetryServerModule());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy