change log REST endpoint with v3 prefixed (#7062)
This commit is contained in:
parent
d5348c93de
commit
3c4f2af158
|
|
@ -45,7 +45,7 @@ Json log record example:
|
|||
|
||||
## HTTP API
|
||||
|
||||
Report `json` format logs via HTTP API, the endpoint is http://<oap-address>:12800/logs.
|
||||
Report `json` format logs via HTTP API, the endpoint is http://<oap-address>:12800/v3/logs.
|
||||
|
||||
Json log record example:
|
||||
|
||||
|
|
|
|||
|
|
@ -90,6 +90,6 @@ public class LogReportServiceRestHandler extends JettyHandler {
|
|||
|
||||
@Override
|
||||
public String pathSpec() {
|
||||
return "/logs";
|
||||
return "/v3/logs";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue