Configurable jitter for initial healthcheck (#6892)

Signed-off-by: Nicolas Flacco <nflacco@lyft.com>

Mirrored from https://github.com/envoyproxy/envoy @ 19b3a2938730aab7ecc9ec433d383b756134eef9
pull/620/head
data-plane-api(CircleCI) 6 years ago
parent fb894125a4
commit 4a93c6d2d9
  1. 5
      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;

Loading…
Cancel
Save