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:
[email protected]


Reply via email to