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

com.hubspot.singularity.logwatcher.impl.SingularityLogWatcherImplModule Maven / Gradle / Ivy

There is a newer version: 0.11.0
Show newest version
package com.hubspot.singularity.logwatcher.impl;

import com.google.inject.AbstractModule;
import com.google.inject.Scopes;
import com.hubspot.singularity.logwatcher.LogForwarder;
import com.hubspot.singularity.logwatcher.SimpleStore;

public class SingularityLogWatcherImplModule extends AbstractModule {

  @Override
  protected void configure() {
    bind(SimpleStore.class).to(FileBasedSimpleStore.class).in(Scopes.SINGLETON);
    bind(LogForwarder.class).to(FluentdLogForwarder.class).in(Scopes.SINGLETON);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy