use of io.mantisrx.server.core.master.MasterMonitor in project mantis by Netflix.
the class MasterClientWrapper method initializeMasterMonitor.
private MasterMonitor initializeMasterMonitor() {
CoreConfiguration config = configurationFactory.getConfig();
CuratorService curatorService = new CuratorService(config, null);
MasterMonitor masterMonitor = curatorService.getMasterMonitor();
startInitialMasterDescriptionGetter(curatorService, masterMonitor);
return masterMonitor;
}
Aggregations