This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new c7f49fe3743 docs: remove query_detail open API documentation (#3731)
c7f49fe3743 is described below
commit c7f49fe3743579202cb05792ce426ad308cdf922
Author: morrySnow <[email protected]>
AuthorDate: Sat May 23 02:28:51 2026 +0800
docs: remove query_detail open API documentation (#3731)
## Summary
Remove all documentation for the `query_detail` (QueryDetailAction) open
API endpoint across all versions and locales.
## Changes
- Deleted 16 markdown files from:
- `docs/` (current)
- `versioned_docs/` (versions 1.2, 2.0, 2.1, 3.x, 4.x)
- `i18n/zh-CN/` (all versions + current)
- `ja-source/` (versions 2.1, 3.x, 4.x + current)
- Removed sidebar entries from `sidebars.ts` and all
`versioned_sidebars/*.json` files
Co-authored-by: Copilot <[email protected]>
---
.../open-api/fe-http/query-detail-action.md | 98 ----------------------
.../open-api/fe-http/query-detail-action.md | 96 ---------------------
.../http-actions/fe/query-detail-action.md | 97 ---------------------
.../admin-manual/fe/query-detail-action.md | 95 ---------------------
.../open-api/fe-http/query-detail-action.md | 96 ---------------------
.../open-api/fe-http/query-detail-action.md | 96 ---------------------
.../open-api/fe-http/query-detail-action.md | 96 ---------------------
.../open-api/fe-http/query-detail-action.md | 96 ---------------------
.../open-api/fe-http/query-detail-action.md | 96 ---------------------
.../open-api/fe-http/query-detail-action.md | 96 ---------------------
.../open-api/fe-http/query-detail-action.md | 96 ---------------------
sidebars.ts | 1 -
.../http-actions/fe/query-detail-action.md | 97 ---------------------
.../admin-manual/fe/query-detail-action.md | 97 ---------------------
.../open-api/fe-http/query-detail-action.md | 98 ----------------------
.../open-api/fe-http/query-detail-action.md | 98 ----------------------
.../open-api/fe-http/query-detail-action.md | 98 ----------------------
versioned_sidebars/version-1.2-sidebars.json | 1 -
versioned_sidebars/version-2.0-sidebars.json | 1 -
versioned_sidebars/version-2.1-sidebars.json | 1 -
versioned_sidebars/version-3.x-sidebars.json | 1 -
versioned_sidebars/version-4.x-sidebars.json | 1 -
22 files changed, 1552 deletions(-)
diff --git a/docs/admin-manual/open-api/fe-http/query-detail-action.md
b/docs/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index 001661ec89d..00000000000
--- a/docs/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,98 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "en",
- "description": "Used to obtain information about all queries after a
specified time point"
-}
----
-
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-Used to obtain information about all queries after a specified time point
-
-## Path parameters
-
-None
-
-## Query parameters
-
-* `event_time`
-
- At the specified time point (Unix timestamp, in milliseconds), obtain
query information after that time point.
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. Get query details after the specified time point.
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/open-api/fe-http/query-detail-action.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index f24b9a1bbd2..00000000000
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,96 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "zh-CN",
- "description": "用于获取指定时间点之后的所有查询的信息"
-}
----
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-用于获取指定时间点之后的所有查询的信息
-
-## Path parameters
-
-无
-
-## Query parameters
-
-* `event_time`
-
- 指定的时间点(Unix 时间戳,单位毫秒),获取该时间点之后的查询信息。
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. 获取指定时间点之后的查询详情。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/http-actions/fe/query-detail-action.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/http-actions/fe/query-detail-action.md
deleted file mode 100644
index 9c5d5d817d3..00000000000
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/http-actions/fe/query-detail-action.md
+++ /dev/null
@@ -1,97 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "zh-CN"
-}
----
-
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-用于获取指定时间点之后的所有查询的信息
-
-## Path parameters
-
-无
-
-## Query parameters
-
-* `event_time`
-
- 指定的时间点(Unix 时间戳,单位毫秒),获取该时间点之后的查询信息。
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. 获取指定时间点之后的查询详情。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/fe/query-detail-action.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/fe/query-detail-action.md
deleted file mode 100644
index b5c4f491f01..00000000000
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/fe/query-detail-action.md
+++ /dev/null
@@ -1,95 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "zh-CN"
-}
----
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-用于获取指定时间点之后的所有查询的信息
-
-## Path parameters
-
-无
-
-## Query parameters
-
-* `event_time`
-
- 指定的时间点(Unix 时间戳,单位毫秒),获取该时间点之后的查询信息。
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. 获取指定时间点之后的查询详情。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/open-api/fe-http/query-detail-action.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index f24b9a1bbd2..00000000000
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,96 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "zh-CN",
- "description": "用于获取指定时间点之后的所有查询的信息"
-}
----
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-用于获取指定时间点之后的所有查询的信息
-
-## Path parameters
-
-无
-
-## Query parameters
-
-* `event_time`
-
- 指定的时间点(Unix 时间戳,单位毫秒),获取该时间点之后的查询信息。
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. 获取指定时间点之后的查询详情。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/admin-manual/open-api/fe-http/query-detail-action.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index f24b9a1bbd2..00000000000
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,96 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "zh-CN",
- "description": "用于获取指定时间点之后的所有查询的信息"
-}
----
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-用于获取指定时间点之后的所有查询的信息
-
-## Path parameters
-
-无
-
-## Query parameters
-
-* `event_time`
-
- 指定的时间点(Unix 时间戳,单位毫秒),获取该时间点之后的查询信息。
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. 获取指定时间点之后的查询详情。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/admin-manual/open-api/fe-http/query-detail-action.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index f24b9a1bbd2..00000000000
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,96 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "zh-CN",
- "description": "用于获取指定时间点之后的所有查询的信息"
-}
----
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-用于获取指定时间点之后的所有查询的信息
-
-## Path parameters
-
-无
-
-## Query parameters
-
-* `event_time`
-
- 指定的时间点(Unix 时间戳,单位毫秒),获取该时间点之后的查询信息。
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. 获取指定时间点之后的查询详情。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/ja-source/docusaurus-plugin-content-docs/current/admin-manual/open-api/fe-http/query-detail-action.md
b/ja-source/docusaurus-plugin-content-docs/current/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index 0eaa9a23b8c..00000000000
---
a/ja-source/docusaurus-plugin-content-docs/current/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,96 +0,0 @@
----
-{
- "title": "クエリ詳細アクション",
- "language": "ja",
- "description": "指定された時点以降のすべてのクエリに関する情報を取得するために使用される"
-}
----
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## 詳細
-
-指定した時点以降のすべてのクエリに関する情報を取得するために使用されます
-
-## Path parameters
-
-なし
-
-## Query parameters
-
-* `event_time`
-
- 指定した時点(Unixタイムスタンプ、ミリ秒)で、その時点以降のクエリ情報を取得します。
-
-## Request body
-
-なし
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-## 例
-
-1. 指定した時点以降のクエリ詳細を取得する。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
diff --git
a/ja-source/docusaurus-plugin-content-docs/version-2.1/admin-manual/open-api/fe-http/query-detail-action.md
b/ja-source/docusaurus-plugin-content-docs/version-2.1/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index d8deef51efa..00000000000
---
a/ja-source/docusaurus-plugin-content-docs/version-2.1/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,96 +0,0 @@
----
-{
- "title": "クエリ詳細アクション",
- "language": "ja",
- "description": "指定された時点以降のすべてのクエリに関する情報を取得するために使用される"
-}
----
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## 詳細
-
-指定した時点以降のすべてのクエリに関する情報を取得するために使用されます
-
-## Path parameters
-
-なし
-
-## Query parameters
-
-* `event_time`
-
- 指定した時点(Unix タイムスタンプ、ミリ秒単位)で、その時点以降のクエリ情報を取得します。
-
-## Request body
-
-なし
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-## Examples
-
-1. 指定された時点以降のクエリ詳細を取得する。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
diff --git
a/ja-source/docusaurus-plugin-content-docs/version-3.x/admin-manual/open-api/fe-http/query-detail-action.md
b/ja-source/docusaurus-plugin-content-docs/version-3.x/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index 4f42df82499..00000000000
---
a/ja-source/docusaurus-plugin-content-docs/version-3.x/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,96 +0,0 @@
----
-{
- "title": "クエリ詳細アクション",
- "language": "ja",
- "description": "指定された時点以降のすべてのクエリに関する情報を取得するために使用される"
-}
----
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## 詳細
-
-指定した時点以降のすべてのクエリに関する情報を取得するために使用されます
-
-## Path parameters
-
-なし
-
-## Query parameters
-
-* `event_time`
-
- 指定した時点(Unixタイムスタンプ、ミリ秒単位)で、その時点以降のクエリ情報を取得します。
-
-## Request body
-
-なし
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-## 例
-
-1. 指定された時点以降のクエリ詳細を取得する。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
diff --git
a/ja-source/docusaurus-plugin-content-docs/version-4.x/admin-manual/open-api/fe-http/query-detail-action.md
b/ja-source/docusaurus-plugin-content-docs/version-4.x/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index 15c36d16925..00000000000
---
a/ja-source/docusaurus-plugin-content-docs/version-4.x/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,96 +0,0 @@
----
-{
- "title": "クエリ詳細アクション",
- "language": "ja",
- "description": "指定された時点以降のすべてのクエリに関する情報を取得するために使用される"
-}
----
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## 詳細
-
-指定した時点以降のすべてのクエリに関する情報を取得するために使用されます
-
-## Path parameters
-
-なし
-
-## Query parameters
-
-* `event_time`
-
- 指定した時点(Unix タイムスタンプ、ミリ秒単位)で、その時点以降のクエリ情報を取得します。
-
-## Request body
-
-なし
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-## 例
-
-1. 指定された時点以降のクエリ詳細を取得する。
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
diff --git a/sidebars.ts b/sidebars.ts
index 898044eed9b..3b01b405893 100644
--- a/sidebars.ts
+++ b/sidebars.ts
@@ -1016,7 +1016,6 @@ const sidebars: SidebarsConfig = {
'admin-manual/open-api/fe-http/meta-replay-state-action',
'admin-manual/open-api/fe-http/metrics-action',
'admin-manual/open-api/fe-http/profile-action',
-
'admin-manual/open-api/fe-http/query-detail-action',
'admin-manual/open-api/fe-http/query-schema-action',
'admin-manual/open-api/fe-http/query-stats-action',
'admin-manual/open-api/fe-http/row-count-action',
diff --git
a/versioned_docs/version-1.2/admin-manual/http-actions/fe/query-detail-action.md
b/versioned_docs/version-1.2/admin-manual/http-actions/fe/query-detail-action.md
deleted file mode 100644
index c7f24265989..00000000000
---
a/versioned_docs/version-1.2/admin-manual/http-actions/fe/query-detail-action.md
+++ /dev/null
@@ -1,97 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "en"
-}
----
-
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-Used to obtain information about all queries after a specified time point
-
-## Path parameters
-
-None
-
-## Query parameters
-
-* `event_time`
-
- At the specified time point (Unix timestamp, in milliseconds), obtain
query information after that time point.
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. Get query details after the specified time point.
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git a/versioned_docs/version-2.0/admin-manual/fe/query-detail-action.md
b/versioned_docs/version-2.0/admin-manual/fe/query-detail-action.md
deleted file mode 100644
index c7f24265989..00000000000
--- a/versioned_docs/version-2.0/admin-manual/fe/query-detail-action.md
+++ /dev/null
@@ -1,97 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "en"
-}
----
-
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-Used to obtain information about all queries after a specified time point
-
-## Path parameters
-
-None
-
-## Query parameters
-
-* `event_time`
-
- At the specified time point (Unix timestamp, in milliseconds), obtain
query information after that time point.
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. Get query details after the specified time point.
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/versioned_docs/version-2.1/admin-manual/open-api/fe-http/query-detail-action.md
b/versioned_docs/version-2.1/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index 001661ec89d..00000000000
---
a/versioned_docs/version-2.1/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,98 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "en",
- "description": "Used to obtain information about all queries after a
specified time point"
-}
----
-
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-Used to obtain information about all queries after a specified time point
-
-## Path parameters
-
-None
-
-## Query parameters
-
-* `event_time`
-
- At the specified time point (Unix timestamp, in milliseconds), obtain
query information after that time point.
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. Get query details after the specified time point.
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/versioned_docs/version-3.x/admin-manual/open-api/fe-http/query-detail-action.md
b/versioned_docs/version-3.x/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index 001661ec89d..00000000000
---
a/versioned_docs/version-3.x/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,98 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "en",
- "description": "Used to obtain information about all queries after a
specified time point"
-}
----
-
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-Used to obtain information about all queries after a specified time point
-
-## Path parameters
-
-None
-
-## Query parameters
-
-* `event_time`
-
- At the specified time point (Unix timestamp, in milliseconds), obtain
query information after that time point.
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. Get query details after the specified time point.
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git
a/versioned_docs/version-4.x/admin-manual/open-api/fe-http/query-detail-action.md
b/versioned_docs/version-4.x/admin-manual/open-api/fe-http/query-detail-action.md
deleted file mode 100644
index 001661ec89d..00000000000
---
a/versioned_docs/version-4.x/admin-manual/open-api/fe-http/query-detail-action.md
+++ /dev/null
@@ -1,98 +0,0 @@
----
-{
- "title": "Query Detail Action",
- "language": "en",
- "description": "Used to obtain information about all queries after a
specified time point"
-}
----
-
-# Query Detail Action
-
-## Request
-
-`GET /api/query_detail`
-
-## Description
-
-Used to obtain information about all queries after a specified time point
-
-## Path parameters
-
-None
-
-## Query parameters
-
-* `event_time`
-
- At the specified time point (Unix timestamp, in milliseconds), obtain
query information after that time point.
-
-## Request body
-
-无
-
-## Response
-
-```
-{
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
-}
-```
-
-## Examples
-
-1. Get query details after the specified time point.
-
- ```
- GET /api/query_detail?event_time=1596462079958
-
- Response:
- {
- "msg": "success",
- "code": 0,
- "data": {
- "query_details": [{
- "eventTime": 1596462699216,
- "queryId": "f732084bc8e74f39-8313581c9c3c0b58",
- "startTime": 1596462698969,
- "endTime": 1596462699216,
- "latency": 247,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select * from tbl1"
- }, {
- "eventTime": 1596463013929,
- "queryId": "ed2d0d80855d47a5-8b518a0f1472f60c",
- "startTime": 1596463013913,
- "endTime": 1596463013929,
- "latency": 16,
- "state": "FINISHED",
- "database": "db1",
- "sql": "select k1 from tbl1"
- }]
- },
- "count": 0
- }
- ```
\ No newline at end of file
diff --git a/versioned_sidebars/version-1.2-sidebars.json
b/versioned_sidebars/version-1.2-sidebars.json
index f6fcb364fcc..a52fd57a412 100644
--- a/versioned_sidebars/version-1.2-sidebars.json
+++ b/versioned_sidebars/version-1.2-sidebars.json
@@ -1133,7 +1133,6 @@
"admin-manual/http-actions/fe/meta-replay-state-action",
"admin-manual/http-actions/fe/metrics-action",
"admin-manual/http-actions/fe/profile-action",
-
"admin-manual/http-actions/fe/query-detail-action",
"admin-manual/http-actions/fe/query-schema-action",
"admin-manual/http-actions/fe/row-count-action",
"admin-manual/http-actions/fe/set-config-action",
diff --git a/versioned_sidebars/version-2.0-sidebars.json
b/versioned_sidebars/version-2.0-sidebars.json
index 573917074a0..4380314d44d 100644
--- a/versioned_sidebars/version-2.0-sidebars.json
+++ b/versioned_sidebars/version-2.0-sidebars.json
@@ -416,7 +416,6 @@
"admin-manual/fe/meta-replay-state-action",
"admin-manual/fe/metrics-action",
"admin-manual/fe/profile-action",
- "admin-manual/fe/query-detail-action",
"admin-manual/fe/query-schema-action",
"admin-manual/fe/query-stats-action",
"admin-manual/fe/row-count-action",
diff --git a/versioned_sidebars/version-2.1-sidebars.json
b/versioned_sidebars/version-2.1-sidebars.json
index 7d04b15a165..27d5d68906c 100644
--- a/versioned_sidebars/version-2.1-sidebars.json
+++ b/versioned_sidebars/version-2.1-sidebars.json
@@ -776,7 +776,6 @@
"admin-manual/open-api/fe-http/meta-replay-state-action",
"admin-manual/open-api/fe-http/metrics-action",
"admin-manual/open-api/fe-http/profile-action",
-
"admin-manual/open-api/fe-http/query-detail-action",
"admin-manual/open-api/fe-http/query-schema-action",
"admin-manual/open-api/fe-http/query-stats-action",
"admin-manual/open-api/fe-http/row-count-action",
diff --git a/versioned_sidebars/version-3.x-sidebars.json
b/versioned_sidebars/version-3.x-sidebars.json
index 49a1ec48683..8da08fcc4ce 100644
--- a/versioned_sidebars/version-3.x-sidebars.json
+++ b/versioned_sidebars/version-3.x-sidebars.json
@@ -893,7 +893,6 @@
"admin-manual/open-api/fe-http/meta-replay-state-action",
"admin-manual/open-api/fe-http/metrics-action",
"admin-manual/open-api/fe-http/profile-action",
-
"admin-manual/open-api/fe-http/query-detail-action",
"admin-manual/open-api/fe-http/query-schema-action",
"admin-manual/open-api/fe-http/query-stats-action",
"admin-manual/open-api/fe-http/row-count-action",
diff --git a/versioned_sidebars/version-4.x-sidebars.json
b/versioned_sidebars/version-4.x-sidebars.json
index d4ead026e49..d76bf04d246 100644
--- a/versioned_sidebars/version-4.x-sidebars.json
+++ b/versioned_sidebars/version-4.x-sidebars.json
@@ -1179,7 +1179,6 @@
"admin-manual/open-api/fe-http/meta-replay-state-action",
"admin-manual/open-api/fe-http/metrics-action",
"admin-manual/open-api/fe-http/profile-action",
- "admin-manual/open-api/fe-http/query-detail-action",
"admin-manual/open-api/fe-http/query-schema-action",
"admin-manual/open-api/fe-http/query-stats-action",
"admin-manual/open-api/fe-http/row-count-action",
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]