zhongjiajie commented on code in PR #10592:
URL: https://github.com/apache/dolphinscheduler/pull/10592#discussion_r905847504


##########
docs/docs/en/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# Health Check
+
+## Background
+
+Health check are designed to provide a unique way to check the health of the 
dolphinscheduler service. It includes the health status of modules, such as DB, 
cache, network, etc.
+
+## Endpoint
+
+### API-Server
+```shell

Review Comment:
   ```suggestion
   
   ```shell
   ```



##########
docs/docs/en/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# Health Check
+
+## Background
+
+Health check are designed to provide a unique way to check the health of the 
dolphinscheduler service. It includes the health status of modules, such as DB, 
cache, network, etc.
+
+## Endpoint
+
+### API-Server
+```shell
+curl --request GET 'http://localhost:12345/dolphinscheduler/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Master-Server
+```shell
+curl --request GET 'http://localhost:5679/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Worker-Server
+```shell

Review Comment:
   ```suggestion
   
   ```shell
   ```



##########
docs/docs/en/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# Health Check
+
+## Background
+
+Health check are designed to provide a unique way to check the health of the 
dolphinscheduler service. It includes the health status of modules, such as DB, 
cache, network, etc.
+
+## Endpoint
+
+### API-Server
+```shell
+curl --request GET 'http://localhost:12345/dolphinscheduler/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Master-Server
+```shell
+curl --request GET 'http://localhost:5679/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Worker-Server
+```shell
+curl --request GET 'http://localhost:1235/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Alert-Server
+```shell
+curl --request GET 'http://localhost:50053/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+

Review Comment:
   ```suggestion
   
   ```



##########
docs/docs/en/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# Health Check
+
+## Background
+
+Health check are designed to provide a unique way to check the health of the 
dolphinscheduler service. It includes the health status of modules, such as DB, 
cache, network, etc.
+
+## Endpoint
+
+### API-Server
+```shell
+curl --request GET 'http://localhost:12345/dolphinscheduler/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Master-Server
+```shell

Review Comment:
   ```suggestion
   
   ```shell
   ```



##########
docs/docs/zh/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# 健康检查
+
+## 背景
+
+运行状况检查旨在提供一种独特的方法来检查 Dolphinscheduler 服务的运行状况。它包括模块的运行状况,例如 DB、缓存、网络等等。
+
+## Endpoint
+
+### API-Server
+```shell

Review Comment:
   ```suggestion
   
   ```shell
   ```



##########
docs/docs/zh/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# 健康检查
+
+## 背景
+
+运行状况检查旨在提供一种独特的方法来检查 Dolphinscheduler 服务的运行状况。它包括模块的运行状况,例如 DB、缓存、网络等等。
+
+## Endpoint
+
+### API-Server
+```shell
+curl --request GET 'http://localhost:12345/dolphinscheduler/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Master-Server
+```shell

Review Comment:
   ```suggestion
   
   ```shell
   ```



##########
docs/docs/zh/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# 健康检查
+
+## 背景
+
+运行状况检查旨在提供一种独特的方法来检查 Dolphinscheduler 服务的运行状况。它包括模块的运行状况,例如 DB、缓存、网络等等。
+
+## Endpoint
+
+### API-Server
+```shell
+curl --request GET 'http://localhost:12345/dolphinscheduler/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Master-Server
+```shell
+curl --request GET 'http://localhost:5679/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Worker-Server
+```shell

Review Comment:
   ```suggestion
   
   ```shell
   ```



##########
docs/docs/en/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# Health Check
+
+## Background
+
+Health check are designed to provide a unique way to check the health of the 
dolphinscheduler service. It includes the health status of modules, such as DB, 
cache, network, etc.
+
+## Endpoint
+
+### API-Server
+```shell
+curl --request GET 'http://localhost:12345/dolphinscheduler/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Master-Server
+```shell
+curl --request GET 'http://localhost:5679/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Worker-Server
+```shell
+curl --request GET 'http://localhost:1235/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Alert-Server
+```shell

Review Comment:
   ```suggestion
   
   ```shell
   ```



##########
docs/docs/zh/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# 健康检查
+
+## 背景
+
+运行状况检查旨在提供一种独特的方法来检查 Dolphinscheduler 服务的运行状况。它包括模块的运行状况,例如 DB、缓存、网络等等。
+
+## Endpoint
+
+### API-Server
+```shell
+curl --request GET 'http://localhost:12345/dolphinscheduler/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Master-Server
+```shell
+curl --request GET 'http://localhost:5679/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Worker-Server
+```shell
+curl --request GET 'http://localhost:1235/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Alert-Server
+```shell

Review Comment:
   ```suggestion
   
   ```shell
   ```



##########
docs/docs/zh/guide/healthcheck.md:
##########
@@ -0,0 +1,37 @@
+# 健康检查
+
+## 背景
+
+运行状况检查旨在提供一种独特的方法来检查 Dolphinscheduler 服务的运行状况。它包括模块的运行状况,例如 DB、缓存、网络等等。
+
+## Endpoint
+
+### API-Server
+```shell
+curl --request GET 'http://localhost:12345/dolphinscheduler/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Master-Server
+```shell
+curl --request GET 'http://localhost:5679/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Worker-Server
+```shell
+curl --request GET 'http://localhost:1235/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+### Alert-Server
+```shell
+curl --request GET 'http://localhost:50053/actuator/health'
+
+{"status":"UP","components":{"db":{"status":"UP","details":{"database":"H2","validationQuery":"isValid()"}}}}
+```
+
+

Review Comment:
   ```suggestion
   
   ```



-- 
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]

Reply via email to