Package com.alexecollins.docker.orchestration.model

Examples of com.alexecollins.docker.orchestration.model.HealthChecks


    }
    return running;
  }

  private void healthCheck(Id id) {
    final HealthChecks healthChecks = repo.conf(id).getHealthChecks();
    for (Ping ping : healthChecks.getPings()) {
      LOGGER.info("pinging " + ping.getUrl());
      if (!Pinger.ping(ping.getUrl(), ping.getTimeout())) {
        throw new OrchestrationException("timeout waiting for " + ping.getUrl() + " for " + ping.getTimeout());
      }
    }
View Full Code Here


    }
    return running;
  }

  private void healthCheck(Id id) {
    final HealthChecks healthChecks = repo.conf(id).getHealthChecks();
    for (Ping ping : healthChecks.getPings()) {
      LOGGER.info("pinging " + ping.getUrl());
      if (!Pinger.ping(ping.getUrl(), ping.getTimeout())) {
        throw new OrchestrationException("timeout waiting for " + ping.getUrl() + " for " + ping.getTimeout());
      }
    }
View Full Code Here

    }
    return running;
  }

  private void healthCheck(Id id) {
    final HealthChecks healthChecks = repo.conf(id).getHealthChecks();
    for (Ping ping : healthChecks.getPings()) {
      LOGGER.info("pinging " + ping.getUrl());
      if (!Pinger.ping(ping.getUrl(), ping.getTimeout())) {
        throw new OrchestrationException("timeout waiting for " + ping.getUrl() + " for " + ping.getTimeout());
      }
    }
View Full Code Here

    }
    return running;
  }

  private void healthCheck(Id id) {
    final HealthChecks healthChecks = repo.conf(id).getHealthChecks();
    for (Ping ping : healthChecks.getPings()) {
      LOGGER.info("pinging " + ping.getUrl());
      if (!Pinger.ping(ping.getUrl(), ping.getTimeout())) {
        throw new OrchestrationException("timeout waiting for " + ping.getUrl() + " for " + ping.getTimeout());
      }
    }
View Full Code Here

TOP

Related Classes of com.alexecollins.docker.orchestration.model.HealthChecks

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.