File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
apm-webapp/src/main/java/org/apache/skywalking/oap/server/webapp Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,9 @@ public static void main(String[] args) throws Exception {
6868 .builder ()
6969 .port (port , SessionProtocol .HTTP )
7070 .service ("/graphql" , new OapProxyService (oapServices ))
71+ .service ("/debugging/config/dump" , new OapProxyService (oapServices ))
72+ .service ("/status/config/ttl" , new OapProxyService (oapServices ))
73+ .service ("/status/cluster/nodes" , new OapProxyService (oapServices ))
7174 .service ("/internal/l7check" , HealthCheckService .of ())
7275 .service ("/zipkin/config.json" , zipkin )
7376 .serviceUnder ("/zipkin/api" , zipkin )
Original file line number Diff line number Diff line change @@ -76,4 +76,9 @@ private static WebClient newLoadBalancingClient(EndpointGroup oapGroup) {
7676 protected HttpResponse doPost (ServiceRequestContext ctx , HttpRequest req ) throws Exception {
7777 return loadBalancingClient .execute (req );
7878 }
79+
80+ @ Override
81+ protected HttpResponse doGet (ServiceRequestContext ctx , HttpRequest req ) throws Exception {
82+ return loadBalancingClient .execute (req );
83+ }
7984}
Original file line number Diff line number Diff line change 2929* Fix: correct the same labels for metrics.
3030* Refactor: use the Fetch API to instead of Axios.
3131* Support cold stage data for metrics, trace and log.
32+ * Add route to status API ` /debugging/config/dump ` in the UI.
3233
3334#### Documentation
3435
You can’t perform that action at this time.
0 commit comments