bingquanzhao commented on code in PR #3171:
URL: https://github.com/apache/doris-website/pull/3171#discussion_r2606008328


##########
i18n/zh-CN/docusaurus-plugin-content-docs/current/ecosystem/observability/loongcollector.md:
##########
@@ -0,0 +1,364 @@
+---
+{
+    "title": "LoongCollector Doris Flusher",
+    "language": "zh-CN"
+}
+---
+
+# LoongCollector Doris Flusher 
+
+## 介绍
+
+LoongCollector 是一个开源高性能日志采集与处理框架,来源于阿里云,支持自定义输出插件将数据写入存储系统,LoongCollector 
Doris Flusher 是输出到 Doris 的插件。
+
+Doris Flusher 调用 Doris Stream Load HTTP 接口将数据实时写入 Doris,提供多线程并发,失败重试,自定义 
Stream Load 格式和参数,输出写入速度等能力。
+
+使用 Doris Flusher 主要有三个步骤:
+1. 安装 LoongCollector
+2. 配置 Doris 输出地址和其他参数
+3. 启动 LoongCollector 将数据实时写入 Doris
+
+## 编译安装
+
+```shell
+# Clone the repository
+git clone https://github.com/alibaba/loongcollector.git
+cd loongcollector
+git submodule update --init
+
+# Build LoongCollector
+make all
+cd output
+```
+
+## 参数配置
+
+LoongCollector Doris Flusher Plugin 的配置如下:
+
+配置 | 说明
+--- | ---
+`Addresses` | Stream Load HTTP 地址,格式是字符串数组,可以有一个或者多个元素,每个元素是 
host:port。例如:["http://fe1:8030";, "http://fe2:8030";]

Review Comment:
   The framework interface is defined and cannot be modified.
   
   > Address is better, or keep it the same as logstash/filebeat
   
   



##########
i18n/zh-CN/docusaurus-plugin-content-docs/current/ecosystem/observability/loongcollector.md:
##########
@@ -0,0 +1,364 @@
+---
+{
+    "title": "LoongCollector Doris Flusher",
+    "language": "zh-CN"
+}
+---
+
+# LoongCollector Doris Flusher 
+
+## 介绍
+
+LoongCollector 是一个开源高性能日志采集与处理框架,来源于阿里云,支持自定义输出插件将数据写入存储系统,LoongCollector 
Doris Flusher 是输出到 Doris 的插件。
+
+Doris Flusher 调用 Doris Stream Load HTTP 接口将数据实时写入 Doris,提供多线程并发,失败重试,自定义 
Stream Load 格式和参数,输出写入速度等能力。
+
+使用 Doris Flusher 主要有三个步骤:
+1. 安装 LoongCollector
+2. 配置 Doris 输出地址和其他参数
+3. 启动 LoongCollector 将数据实时写入 Doris
+
+## 编译安装
+
+```shell
+# Clone the repository
+git clone https://github.com/alibaba/loongcollector.git
+cd loongcollector
+git submodule update --init
+
+# Build LoongCollector
+make all
+cd output
+```
+
+## 参数配置
+
+LoongCollector Doris Flusher Plugin 的配置如下:
+
+配置 | 说明
+--- | ---
+`Addresses` | Stream Load HTTP 地址,格式是字符串数组,可以有一个或者多个元素,每个元素是 
host:port。例如:["http://fe1:8030";, "http://fe2:8030";]
+`Database` | 要写入的 Doris 库名
+`Table` | 要写入的 Doris 表名
+`Authentication.PlainText.Username` | Doris 用户名,该用户需要有 Doris 对应库表的导入权限
+`Authentication.PlainText.Password` | Doris 用户的密码
+`LoadProperties` | Doris Stream Load 的 header 参数,语法格式为 map,例如:`LoadProperties: 
{"format": "json", "read_json_by_line": "true"}`

Review Comment:
   > Can you keep it the same as logstash/filebeat
   
   The framework interface is defined and cannot be modified.



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to