dlmarion commented on code in PR #6429:
URL: https://github.com/apache/accumulo/pull/6429#discussion_r3431137773
##########
server/monitor/src/main/java/org/apache/accumulo/monitor/next/Endpoints.java:
##########
@@ -185,6 +186,30 @@ public TableData
getServerProcessView(@MatrixParam("table") TableDataFactory.Tab
return view;
}
+ @GET
+ @Path("servers/detail")
Review Comment:
If the type, resource group, and address parameters are required, then you
could use them as path params to make the URL:
```
servers/detail/TYPE/GROUP/ADDRESS
```
If the URL format is not correct, then it won't match any endpoint and the
REST server should throw an error.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]