@Override
  public void stop() {

    LOGGER.info("Stopping Elastic reporter engine...");
    client.shutdownClient();
    LOGGER.info("Stopping Elastic reporter engine... DONE");
  }
Пример #2
0
 @PreDestroy
 public void shutdown() {
   if (null != elasticSearchClient) elasticSearchClient.shutdownClient();
 }
Пример #3
0
 @Override
 public void stop() throws LifecycleException {
   super.stop();
   jestClient.shutdownClient();
 }