Add docs with output of gateway actuator endpoint
This commit is contained in:
@@ -2787,6 +2787,50 @@ management.endpoints.web.exposure.include=gateway
|
||||
----
|
||||
====
|
||||
|
||||
This endpoint provides an overview of what is available on the child actuator endpoint and the available methods for each reference. The resulting response is similar to the following:
|
||||
|
||||
[source,json]
|
||||
----
|
||||
[
|
||||
{
|
||||
"href":"/actuator/gateway/",
|
||||
"methods":[ "GET" ]
|
||||
},
|
||||
{
|
||||
"href":"/actuator/gateway/routedefinitions",
|
||||
"methods":[ "GET" ]
|
||||
},
|
||||
{
|
||||
"href":"/actuator/gateway/globalfilters",
|
||||
"methods":[ "GET" ]
|
||||
},
|
||||
{
|
||||
"href":"/actuator/gateway/routefilters",
|
||||
"methods":[ "GET" ]
|
||||
},
|
||||
{
|
||||
"href":"/actuator/gateway/routes",
|
||||
"methods":[ "POST", "GET" ]
|
||||
},
|
||||
{
|
||||
"href":"/actuator/gateway/routepredicates",
|
||||
"methods":[ "GET" ]
|
||||
},
|
||||
{
|
||||
"href":"/actuator/gateway/refresh",
|
||||
"methods":[ "POST" ]
|
||||
},
|
||||
{
|
||||
"href":"/actuator/gateway/routes/route-id-1/combinedfilters",
|
||||
"methods":[ "GET" ]
|
||||
},
|
||||
{
|
||||
"href":"/actuator/gateway/routes/route-id-1",
|
||||
"methods":[ "POST", "DELETE", "GET" ]
|
||||
}
|
||||
]
|
||||
----
|
||||
|
||||
=== Verbose Actuator Format
|
||||
|
||||
A new, more verbose format has been added to Spring Cloud Gateway.
|
||||
|
||||
Reference in New Issue
Block a user