You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2021/02/25 15:33:38 UTC

[GitHub] [incubator-dolphinscheduler-website] hailin0 opened a new pull request #299: Add skywalking agent deployment docs

hailin0 opened a new pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299


   Add skywalking agent deployment docs


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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler-website] dailidong commented on pull request #299: Add skywalking agent deployment docs

Posted by GitBox <gi...@apache.org>.
dailidong commented on pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299#issuecomment-787079053


   good job, I will merge this PR when 1.3.6 released


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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler-website] hailin0 commented on a change in pull request #299: Add skywalking agent deployment docs

Posted by GitBox <gi...@apache.org>.
hailin0 commented on a change in pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299#discussion_r586448178



##########
File path: docs/zh-cn/1.3.5/user_doc/skywalking-agent-deployment.md
##########
@@ -0,0 +1,59 @@
+
+dolphinscheduler-skywalking
+=============================
+
+dolphinscheduler-skywalking 模块为 Dolphinscheduler 项目提供了 [Skywalking](https://skywalking.apache.org/) 监控代理。
+
+本文档介绍了如何通过此模块接入 Skywalking 8.4+。
+
+# 安装
+
+以下配置用于启用 Skywalking agent。
+
+### 通过配置环境变量 (使用 Docker 部署时)
+
+```shell
+
+docker run -d --name dolphinscheduler \
+    -e SKYWALKING_ENABLE=true \
+    -e SW_AGENT_COLLECTOR_BACKEND_SERVICES="your.skywalking-oap-server.com:11800" \
+    -e SW_GRPC_LOG_SERVER_HOST="your.skywalking-log-reporter.com" \
+    -e SW_GRPC_LOG_SERVER_PORT="11800"
+    ...
+    apache/dolphinscheduler:latest all
+
+```
+
+### 通过配置 install_config.conf (使用 Dolphinscheduler install.sh 部署时)
+
+添加以下配置到 `${workDir}/conf/config/install_config.conf`.
+
+```properties
+
+# skywalking config
+# note: enable skywalking tracking plugin
+enableSkywalking="true"
+# note: configure skywalking backend service address
+skywalkingServers="your.skywalking-oap-server.com:11800"

Review comment:
       
   ```text
   skywalkingServers  ==>  collector.backend_service
   skywalkingLogReporterHost  ==>  plugin.toolkit.log.grpc.reporter.server_host
   skywalkingLogReporterPort  ==>  plugin.toolkit.log.grpc.reporter.server_port
   ```
   
   The configuration items are from [skywalking docs](https://github.com/apache/skywalking/tree/master/docs/en/setup/service-agent/java-agent).
   
   




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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler-website] hailin0 edited a comment on pull request #299: Add skywalking agent deployment docs

Posted by GitBox <gi...@apache.org>.
hailin0 edited a comment on pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299#issuecomment-785990543


   @dailidong @CalvinKirs 
   
   Please check.


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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler-website] hailin0 commented on pull request #299: Add skywalking agent deployment docs

Posted by GitBox <gi...@apache.org>.
hailin0 commented on pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299#issuecomment-790658950


   > There is no preview here? ...
   
   ![image](https://user-images.githubusercontent.com/14371345/109978718-1ee71280-7d39-11eb-914e-c2e63e4e13bf.png)
   ![image](https://user-images.githubusercontent.com/14371345/109978839-3d4d0e00-7d39-11eb-9622-f9f8a0ae700a.png)
   


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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler-website] hailin0 commented on pull request #299: Add skywalking agent deployment docs

Posted by GitBox <gi...@apache.org>.
hailin0 commented on pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299#issuecomment-785990543


   @dailidong @CalvinKirs 


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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler-website] hailin0 commented on a change in pull request #299: Add skywalking agent deployment docs

Posted by GitBox <gi...@apache.org>.
hailin0 commented on a change in pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299#discussion_r586534855



##########
File path: docs/zh-cn/1.3.5/user_doc/skywalking-agent-deployment.md
##########
@@ -0,0 +1,59 @@
+
+dolphinscheduler-skywalking
+=============================
+
+dolphinscheduler-skywalking 模块为 Dolphinscheduler 项目提供了 [Skywalking](https://skywalking.apache.org/) 监控代理。
+
+本文档介绍了如何通过此模块接入 Skywalking 8.4+。
+
+# 安装
+
+以下配置用于启用 Skywalking agent。
+
+### 通过配置环境变量 (使用 Docker 部署时)
+
+```shell
+
+docker run -d --name dolphinscheduler \
+    -e SKYWALKING_ENABLE=true \
+    -e SW_AGENT_COLLECTOR_BACKEND_SERVICES="your.skywalking-oap-server.com:11800" \
+    -e SW_GRPC_LOG_SERVER_HOST="your.skywalking-log-reporter.com" \
+    -e SW_GRPC_LOG_SERVER_PORT="11800"
+    ...
+    apache/dolphinscheduler:latest all
+
+```
+
+### 通过配置 install_config.conf (使用 Dolphinscheduler install.sh 部署时)
+
+添加以下配置到 `${workDir}/conf/config/install_config.conf`.
+
+```properties
+
+# skywalking config
+# note: enable skywalking tracking plugin
+enableSkywalking="true"
+# note: configure skywalking backend service address
+skywalkingServers="your.skywalking-oap-server.com:11800"
+# note: configure skywalking log reporter host
+skywalkingLogReporterHost="your.skywalking-log-reporter.com"
+# note: configure skywalking log reporter port
+skywalkingLogReporterPort="11800"
+
+```
+
+# 使用
+
+### 导入图表
+
+#### 导入图表模板到 Skywalking server
+
+导入 `${dolphinscheduler.home}/skywalking-agent/dashboard/dolphinscheduler.yml` 文件到 `${skywalking-oap-server.home}/config/ui-initialized-templates/` 目录下,并重启 Skywalking oap-server.

Review comment:
       好的,补充了




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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler-website] wu-sheng commented on a change in pull request #299: Add skywalking agent deployment docs

Posted by GitBox <gi...@apache.org>.
wu-sheng commented on a change in pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299#discussion_r586083766



##########
File path: docs/zh-cn/1.3.5/user_doc/skywalking-agent-deployment.md
##########
@@ -0,0 +1,59 @@
+
+dolphinscheduler-skywalking
+=============================
+
+dolphinscheduler-skywalking 模块为 Dolphinscheduler 项目提供了 [Skywalking](https://skywalking.apache.org/) 监控代理。
+
+本文档介绍了如何通过此模块接入 Skywalking 8.4+。
+
+# 安装
+
+以下配置用于启用 Skywalking agent。
+
+### 通过配置环境变量 (使用 Docker 部署时)
+
+```shell
+
+docker run -d --name dolphinscheduler \
+    -e SKYWALKING_ENABLE=true \
+    -e SW_AGENT_COLLECTOR_BACKEND_SERVICES="your.skywalking-oap-server.com:11800" \
+    -e SW_GRPC_LOG_SERVER_HOST="your.skywalking-log-reporter.com" \
+    -e SW_GRPC_LOG_SERVER_PORT="11800"
+    ...
+    apache/dolphinscheduler:latest all
+
+```
+
+### 通过配置 install_config.conf (使用 Dolphinscheduler install.sh 部署时)
+
+添加以下配置到 `${workDir}/conf/config/install_config.conf`.
+
+```properties
+
+# skywalking config
+# note: enable skywalking tracking plugin
+enableSkywalking="true"
+# note: configure skywalking backend service address
+skywalkingServers="your.skywalking-oap-server.com:11800"
+# note: configure skywalking log reporter host
+skywalkingLogReporterHost="your.skywalking-log-reporter.com"
+# note: configure skywalking log reporter port
+skywalkingLogReporterPort="11800"
+
+```
+
+# 使用
+
+### 导入图表
+
+#### 导入图表模板到 Skywalking server
+
+导入 `${dolphinscheduler.home}/skywalking-agent/dashboard/dolphinscheduler.yml` 文件到 `${skywalking-oap-server.home}/config/ui-initialized-templates/` 目录下,并重启 Skywalking oap-server.

Review comment:
       如果已经在使用SkyWalking,应该还需要清空浏览器缓存?




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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler-website] lgcareer commented on a change in pull request #299: Add skywalking agent deployment docs

Posted by GitBox <gi...@apache.org>.
lgcareer commented on a change in pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299#discussion_r585288029



##########
File path: docs/zh-cn/1.3.5/user_doc/skywalking-agent-deployment.md
##########
@@ -0,0 +1,59 @@
+
+dolphinscheduler-skywalking
+=============================
+
+dolphinscheduler-skywalking 模块为 Dolphinscheduler 项目提供了 [Skywalking](https://skywalking.apache.org/) 监控代理。
+
+本文档介绍了如何通过此模块接入 Skywalking 8.4+。
+
+# 安装
+
+以下配置用于启用 Skywalking agent。
+
+### 通过配置环境变量 (使用 Docker 部署时)
+
+```shell
+
+docker run -d --name dolphinscheduler \
+    -e SKYWALKING_ENABLE=true \
+    -e SW_AGENT_COLLECTOR_BACKEND_SERVICES="your.skywalking-oap-server.com:11800" \
+    -e SW_GRPC_LOG_SERVER_HOST="your.skywalking-log-reporter.com" \
+    -e SW_GRPC_LOG_SERVER_PORT="11800"
+    ...
+    apache/dolphinscheduler:latest all
+
+```
+
+### 通过配置 install_config.conf (使用 Dolphinscheduler install.sh 部署时)
+
+添加以下配置到 `${workDir}/conf/config/install_config.conf`.
+
+```properties
+
+# skywalking config
+# note: enable skywalking tracking plugin
+enableSkywalking="true"
+# note: configure skywalking backend service address
+skywalkingServers="your.skywalking-oap-server.com:11800"

Review comment:
       Good job!Hi,what is different form skywalkingServers and skywalkingLogReporterHost?If they are the same host ,is it ok?




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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler-website] wu-sheng commented on pull request #299: Add skywalking agent deployment docs

Posted by GitBox <gi...@apache.org>.
wu-sheng commented on pull request #299:
URL: https://github.com/apache/incubator-dolphinscheduler-website/pull/299#issuecomment-789394526


   There is no preview here? ...


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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org