diff --git a/spring-cloud-gateway.html b/spring-cloud-gateway.html index b7f29a78..6bbcf544 100644 --- a/spring-cloud-gateway.html +++ b/spring-cloud-gateway.html @@ -1667,7 +1667,7 @@ using something like Spring

Retry GatewayFilter Factory

-

The Retry GatewayFilter Factory takes retries, statuses, methods, and series as parameters.

+

The Retry GatewayFilter Factory support following set of parameters:

+
+
+

The following defaults are configured for Retry filter if enabled:

+
+
+
    +
  • +

    retries — 3 times

    +
  • +
  • +

    series — 5XX series

    +
  • +
  • +

    methods — GET method

    +
  • +
  • +

    exceptions — IOException and TimeoutException

    +
  • +
  • +

    backoff — disabled

    +
@@ -1700,7 +1730,12 @@ using something like Spring - name: Retry args: retries: 3 - statuses: BAD_GATEWAY + statuses: BAD_GATEWAY + backoff: + firstBackoff: 10ms + maxBackoff: 50ms + factor: 2 + basedOnPreviousValue: false
@@ -2071,7 +2106,7 @@ If you are using SockJS as a fallback ov
-

These metrics are then available to be scraped from /actuator/metrics/gateway.requests and can be easily integated with Prometheus to create a Grafana dashboard.

+

These metrics are then available to be scraped from /actuator/metrics/gateway.requests and can be easily integrated with Prometheus to create a Grafana dashboard.

@@ -2080,7 +2115,7 @@ If you are using SockJS as a fallback ov
-To enable the pometheus endpoint add micrometer-registry-prometheus as a project dependency. +To enable the prometheus endpoint add micrometer-registry-prometheus as a project dependency.