Skip to content

Commit bbc4559

Browse files
committed
Moving documentation over from #3163
1 parent c8ada1b commit bbc4559

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

docs/modules/ROOT/pages/spring-cloud-gateway/actuator-api.adoc

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,50 @@ management.endpoint.gateway.enabled=true # default value
1212
management.endpoints.web.exposure.include=gateway
1313
----
1414

15+
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:
16+
17+
[source,json]
18+
----
19+
[
20+
{
21+
"href":"/actuator/gateway/",
22+
"methods":[ "GET" ]
23+
},
24+
{
25+
"href":"/actuator/gateway/routedefinitions",
26+
"methods":[ "GET" ]
27+
},
28+
{
29+
"href":"/actuator/gateway/globalfilters",
30+
"methods":[ "GET" ]
31+
},
32+
{
33+
"href":"/actuator/gateway/routefilters",
34+
"methods":[ "GET" ]
35+
},
36+
{
37+
"href":"/actuator/gateway/routes",
38+
"methods":[ "POST", "GET" ]
39+
},
40+
{
41+
"href":"/actuator/gateway/routepredicates",
42+
"methods":[ "GET" ]
43+
},
44+
{
45+
"href":"/actuator/gateway/refresh",
46+
"methods":[ "POST" ]
47+
},
48+
{
49+
"href":"/actuator/gateway/routes/route-id-1/combinedfilters",
50+
"methods":[ "GET" ]
51+
},
52+
{
53+
"href":"/actuator/gateway/routes/route-id-1",
54+
"methods":[ "POST", "DELETE", "GET" ]
55+
}
56+
]
57+
----
58+
1559
[[verbose-actuator-format]]
1660
== Verbose Actuator Format
1761

0 commit comments

Comments
 (0)