Examples of HealthChecks


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

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

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

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
TOP
Copyright © 2018 www.massapi.com. 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.