From 4a93c6d2d91783b772666c796390aabf88464173 Mon Sep 17 00:00:00 2001 From: "data-plane-api(CircleCI)" Date: Mon, 13 May 2019 20:37:24 +0000 Subject: [PATCH] Configurable jitter for initial healthcheck (#6892) Signed-off-by: Nicolas Flacco Mirrored from https://github.com/envoyproxy/envoy @ 19b3a2938730aab7ecc9ec433d383b756134eef9 --- envoy/api/v2/core/health_check.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/envoy/api/v2/core/health_check.proto b/envoy/api/v2/core/health_check.proto index 9cae8778..edbcef7b 100644 --- a/envoy/api/v2/core/health_check.proto +++ b/envoy/api/v2/core/health_check.proto @@ -44,6 +44,11 @@ message HealthCheck { (gogoproto.stdduration) = true ]; + // An optional jitter amount in milliseconds. If specified, Envoy will start health + // checking after for a random time in ms between 0 and initial_jitter. This only + // applies to the first health check. + google.protobuf.Duration initial_jitter = 20; + // An optional jitter amount in milliseconds. If specified, during every // interval Envoy will add interval_jitter to the wait time. google.protobuf.Duration interval_jitter = 3;