change log REST endpoint with v3 prefixed (#7062)

This commit is contained in:
Rei Shimizu 2021-06-03 16:56:49 +09:00 committed by GitHub
parent d5348c93de
commit 3c4f2af158
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -90,6 +90,6 @@ public class LogReportServiceRestHandler extends JettyHandler {
@Override
public String pathSpec() {
return "/logs";
return "/v3/logs";
}
}