@@ -6,6 +6,7 @@ option go_package = "v2";
6
6
import "google/protobuf/duration.proto" ;
7
7
import "google/protobuf/wrappers.proto" ;
8
8
9
+ import "envoy/api/v2/route/route.proto" ;
9
10
import "envoy/type/percent.proto" ;
10
11
11
12
import "validate/validate.proto" ;
@@ -20,7 +21,7 @@ message HealthCheck {
20
21
21
22
// Specifies the incoming HTTP endpoint that should be considered the
22
23
// health check endpoint. For example */healthcheck*.
23
- string endpoint = 2 [(validate.rules ) .string.min_bytes = 1 ];
24
+ string endpoint = 2 [(validate.rules ) .string.min_bytes = 1 , deprecated = true ];
24
25
25
26
// If operating in pass through mode, the amount of time in milliseconds
26
27
// that the filter should cache the upstream response.
@@ -30,4 +31,12 @@ message HealthCheck {
30
31
// names and the minimum percentage of servers in each of those clusters that
31
32
// must be healthy in order for the filter to return a 200.
32
33
map <string , envoy.type.Percent > cluster_min_healthy_percentages = 4 ;
34
+
35
+ // [#not-implemented-hide:]
36
+ // Specifies a set of health check request headers to match on. The health check filter will
37
+ // check a request’s headers against all the specified headers. To specify the health check
38
+ // endpoint, set the ``:path`` header to match on. Note that if the
39
+ // :ref:`endpoint <envoy_api_field_config.filter.http.health_check.v2.HealthCheck.endpoint>`
40
+ // field is set, it will overwrite any ``:path`` header to match.
41
+ repeated envoy.api.v2.route.HeaderMatcher headers = 5 ;
33
42
}
0 commit comments