Add route to status API `/debugging/config/dump` in the UI (#13266)
This commit is contained in:
parent
37fbcce9bc
commit
fd82275a3d
|
|
@ -68,6 +68,9 @@ public class ApplicationStartUp {
|
|||
.builder()
|
||||
.port(port, SessionProtocol.HTTP)
|
||||
.service("/graphql", new OapProxyService(oapServices))
|
||||
.service("/debugging/config/dump", new OapProxyService(oapServices))
|
||||
.service("/status/config/ttl", new OapProxyService(oapServices))
|
||||
.service("/status/cluster/nodes", new OapProxyService(oapServices))
|
||||
.service("/internal/l7check", HealthCheckService.of())
|
||||
.service("/zipkin/config.json", zipkin)
|
||||
.serviceUnder("/zipkin/api", zipkin)
|
||||
|
|
|
|||
|
|
@ -76,4 +76,9 @@ public final class OapProxyService extends AbstractHttpService {
|
|||
protected HttpResponse doPost(ServiceRequestContext ctx, HttpRequest req) throws Exception {
|
||||
return loadBalancingClient.execute(req);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected HttpResponse doGet(ServiceRequestContext ctx, HttpRequest req) throws Exception {
|
||||
return loadBalancingClient.execute(req);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
* Fix: correct the same labels for metrics.
|
||||
* Refactor: use the Fetch API to instead of Axios.
|
||||
* Support cold stage data for metrics, trace and log.
|
||||
* Add route to status API `/debugging/config/dump` in the UI.
|
||||
|
||||
#### Documentation
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue