Skip to content

Commit

Permalink
Merge pull request #3 from sunhailin-Leo/feat/update_docs
Browse files Browse the repository at this point in the history
add transform.md
  • Loading branch information
sunhailin-Leo authored Dec 2, 2024
2 parents cffcec0 + a863b52 commit 292206d
Show file tree
Hide file tree
Showing 33 changed files with 662 additions and 91 deletions.
42 changes: 23 additions & 19 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,27 @@
* [配置文件简介](zh/config)
* Connector
* [Source](zh/source)
* [Kafka](zh/source/Kafka)
* [Prometheus](zh/source/Prometheus)
* [Pulsar](zh/source/Pulsar)
* [RabbitMQ](zh/source/RabbitMQ)
* [Redis](zh/source/Redis)
* [RocketMQ](zh/source/RocketMQ)
* [Transform](zh/transform)
* [Kafka](zh/source/kafka)
* [Prometheus](zh/source/prometheus)
* [Pulsar](zh/source/pulsar)
* [RabbitMQ](zh/source/rabbitmq)
* [Redis](zh/source/redis)
* [RocketMQ](zh/source/rocketmq)
* Transform
* [转换常见选项](zh/transform/common_options)
* [类型转换](zh/transform/converter)
* [jsonPath 转换](zh/transform/jsonpath)
* [字段过滤](zh/transform/filter)
* [Sink](zh/sink)
* [ClickHouse](zh/sink/Clickhouse)
* [HTTP](zh/sink/HTTP)
* [Kafka](zh/sink/Kafka)
* [Redis](zh/sink/Redis)
* [LocalFile](zh/sink/LocalFile)
* [PostgresSQL](zh/sink/PostgresSQL)
* [RocketMQ](zh/sink/RocketMQ)
* [RabbitMQ](zh/sink/RabbitMQ)
* [Oracle](zh/sink/Oracle)
* [MySQL](zh/sink/MySQL)
* [Pulsar](zh/sink/Pulsar)
* [Elasticsearch](zh/sink/Elasticsearch)
* [ClickHouse](zh/sink/clickhouse)
* [HTTP](zh/sink/http)
* [Kafka](zh/sink/kafka)
* [Redis](zh/sink/redis)
* [LocalFile](zh/sink/local_file)
* [PostgresSQL](zh/sink/postgressql)
* [RocketMQ](zh/sink/rocketmq)
* [RabbitMQ](zh/sink/rabbitmq)
* [Oracle](zh/sink/oracle)
* [MySQL](zh/sink/mysql)
* [Pulsar](zh/sink/pulsar)
* [Elasticsearch](zh/sink/elasticsearch)
6 changes: 5 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/sidebar.min.css" />
</head>
<body>
<div id="app"></div>
Expand Down Expand Up @@ -35,11 +36,14 @@
return html + footer
})
}
]
],
sidebarDisplayLevel: 1, // set sidebar display level
}
</script>
<!-- Docsify v4 -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- plugins -->
<script src="https://cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/docsify-sidebar-collapse.min.js"></script>

</body>
</html>
42 changes: 23 additions & 19 deletions docs/zh/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,27 @@
* [配置文件简介](config)
* Connector
* [Source](source)
* [Kafka](source/Kafka)
* [Prometheus](source/Prometheus)
* [Pulsar](source/Pulsar)
* [RabbitMQ](source/RabbitMQ)
* [Redis](source/Redis)
* [RocketMQ](source/RocketMQ)
* [Transform](transform)
* [Kafka](source/kafka)
* [Prometheus](source/prometheus)
* [Pulsar](source/pulsar)
* [RabbitMQ](source/rabbitmq)
* [Redis](source/redis)
* [RocketMQ](source/rocketmq)
* Transform
* [转换常见选项](transform/common_options)
* [字段类型转换](transform/converter)
* [jsonPath 转换](transform/jsonpath)
* [字段过滤](transform/filter)
* [Sink](sink)
* [ClickHouse](sink/Clickhouse)
* [HTTP](sink/HTTP)
* [Kafka](sink/Kafka)
* [Redis](sink/Redis)
* [LocalFile](sink/LocalFile)
* [PostgresSQL](sink/PostgresSQL)
* [RocketMQ](sink/RocketMQ)
* [RabbitMQ](sink/RabbitMQ)
* [Oracle](sink/Oracle)
* [MySQL](sink/MySQL)
* [Pulsar](sink/Pulsar)
* [Elasticsearch](sink/Elasticsearch)
* [ClickHouse](sink/clickhouse)
* [HTTP](sink/http)
* [Kafka](sink/kafka)
* [Redis](sink/redis)
* [LocalFile](sink/local_file)
* [PostgresSQL](sink/postgressql)
* [RocketMQ](sink/rocketmq)
* [RabbitMQ](sink/rabbitmq)
* [Oracle](sink/oracle)
* [MySQL](sink/mysql)
* [Pulsar](sink/pulsar)
* [Elasticsearch](sink/elasticsearch)
24 changes: 12 additions & 12 deletions docs/zh/sink.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,38 +11,38 @@ Type:表示 Sink 的类型,例如数据库、消息队列、文件存储等
SinkName:标识 Sink 的名称,用于区分不同的 Sink 实例,便于管理和监控。

## Sink 类型支持
* [ClickHouse](./sink/Clickhouse.md)
* [ClickHouse](./sink/clickhouse)
* 用于将数据写入 ClickHouse 数据库,适合高效的数据分析。

* [HTTP](./sink/HTTP.md)
* [HTTP](./sink/http)
* 通过 HTTP 请求发送数据到指定的 REST API 端点。

* [Kafka](./sink/Kafka.md)
* [Kafka](./sink/kafka)
* 发布数据到 Kafka 消息队列,支持高吞吐量的数据流处理。

* [Redis](./sink/Redis.md)
* [Redis](./sink/redis)
* 将数据存储到 Redis,适合快速的数据访问和缓存。

* [LocalFile](./sink/LocalFile.md)
* [LocalFile](./sink/local_file)
* 将数据写入本地文件系统,便于日志记录和备份。

* [PostgresSQL](./sink/PostgresSQL.md)
* [PostgresSQL](./sink/postgressql)
* 将数据存储到 PostgresSQL 数据库,支持复杂查询和事务处理。

* [RocketMQ](./sink/RocketMQ.md)
* [RocketMQ](./sink/rocketmq)
* 发布数据到 RocketMQ 队列,适用于高可用的分布式消息传递。

* [RabbitMQ](./sink/RabbitMQ.md)
* [RabbitMQ](./sink/rabbitmq)
* 将数据发布到 RabbitMQ 队列,适合消息驱动的架构。

* [Oracle](./sink/Oracle.md)
* [Oracle](./sink/oracle)
* 将数据写入 Oracle 数据库,适用于企业级应用。

* [MySQL](./sink/MySQL.md)
* [MySQL](./sink/mysql)
* 将数据存储到 MySQL 数据库,适合关系型数据存储。

* [Pulsar](./sink/Pulsar.md)
* [Pulsar](./sink/pulsar)
* 发布数据到 Apache Pulsar,支持多租户和高吞吐量。

* [Elasticsearch](./sink/Elasticsearch.md)
* [Elasticsearch](./sink/elasticsearch)
* 将数据写入 Elasticsearch,适合实时搜索和分析。
42 changes: 23 additions & 19 deletions docs/zh/sink/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,27 @@
* [配置文件简介](../config)
* Connector
* [Source](../source)
* [Kafka](../source/Kafka)
* [Prometheus](../source/Prometheus)
* [Pulsar](../source/Pulsar)
* [RabbitMQ](../source/RabbitMQ)
* [Redis](../source/Redis)
* [RocketMQ](../source/RocketMQ)
* [Transform](../transform)
* [Kafka](../source/kafka)
* [Prometheus](../source/prometheus)
* [Pulsar](../source/pulsar)
* [RabbitMQ](../source/rabbitmq)
* [Redis](../source/redis)
* [RocketMQ](../source/rocketmq)
* Transform
* [转换常见选项](../transform/common_options)
* [类型转换](../transform/converter)
* [jsonPath 转换](../transform/jsonpath)
* [字段过滤](../transform/filter)
* [Sink](../sink)
* [ClickHouse](Clickhouse)
* [HTTP](HTTP)
* [Kafka](Kafka)
* [Redis](Redis)
* [LocalFile](LocalFile)
* [PostgresSQL](PostgresSQL)
* [RocketMQ](RocketMQ)
* [RabbitMQ](RabbitMQ)
* [Oracle](Oracle)
* [MySQL](MySQL)
* [Pulsar](Pulsar)
* [Elasticsearch](Elasticsearch)
* [ClickHouse](clickhouse)
* [HTTP](http)
* [Kafka](kafka)
* [Redis](redis)
* [LocalFile](local_file)
* [PostgresSQL](postgressql)
* [RocketMQ](rocketmq)
* [RabbitMQ](rabbitmq)
* [Oracle](oracle)
* [MySQL](mysql)
* [Pulsar](pulsar)
* [Elasticsearch](elasticsearch)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
42 changes: 23 additions & 19 deletions docs/zh/source/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,27 @@
* [配置文件简介](../config)
* Connector
* [Source](../source)
* [Kafka](Kafka)
* [Prometheus](Prometheus)
* [Pulsar](Pulsar)
* [RabbitMQ](RabbitMQ)
* [Redis](Redis)
* [RocketMQ](RocketMQ)
* [Transform](../transform)
* [Kafka](kafka)
* [Prometheus](prometheus)
* [Pulsar](pulsar)
* [RabbitMQ](rabbitmq)
* [Redis](redis)
* [RocketMQ](rocketmq)
* Transform
* [转换常见选项](../transform/common_options)
* [字段类型转换](../transform/converter)
* [jsonPath 转换](../transform/jsonpath)
* [字段过滤](../transform/filter)
* [Sink](../sink)
* [ClickHouse](../sink/Clickhouse)
* [HTTP](../sink/HTTP)
* [Kafka](../sink/Kafka)
* [Redis](../sink/Redis)
* [LocalFile](../sink/LocalFile)
* [PostgresSQL](../sink/PostgresSQL)
* [RocketMQ](../sink/RocketMQ)
* [RabbitMQ](../sink/RabbitMQ)
* [Oracle](../sink/Oracle)
* [MySQL](../sink/MySQL)
* [Pulsar](../sink/Pulsar)
* [Elasticsearch](../sink/Elasticsearch)
* [ClickHouse](../sink/clickhouse)
* [HTTP](../sink/http)
* [Kafka](../sink/kafka)
* [Redis](../sink/redis)
* [LocalFile](../sink/local_file)
* [PostgresSQL](../sink/postgressql)
* [RocketMQ](../sink/rocketmq)
* [RabbitMQ](../sink/rabbitmq)
* [Oracle](../sink/oracle)
* [MySQL](../sink/mysql)
* [Pulsar](../sink/pulsar)
* [Elasticsearch](../sink/elasticsearch)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 292206d

Please sign in to comment.