org.elasticsearch.restjmx.RestJmxModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of insight-elasticsearch Show documentation
Show all versions of insight-elasticsearch Show documentation
Fuse Insight :: Elastic Search
package org.elasticsearch.restjmx;
import org.elasticsearch.common.inject.AbstractModule;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.http.HttpServerManagement;
public class RestJmxModule extends AbstractModule {
private final Settings settings;
public RestJmxModule(Settings settings) {
this.settings = settings;
}
@Override
protected void configure() {
bind(RestJmxManagement.class).asEagerSingleton();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy