123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- {
- "about": {
- "trial": true,
- "author": {
- "name": "EMQ",
- "email": "contact@emqx.io",
- "company": "EMQ Technologies Co., Ltd",
- "website": "https://www.emqx.io"
- },
- "helpUrl": {
- "en_US": "https://github.com/emqx/kuiper/blob/master/docs/en/plugins/sinks/taos.md",
- "zh_CN": "https://github.com/emqx/kuiper/blob/master/docs/zh/plugins/sinks/taos.md"
- },
- "description": {
- "en_US": "This a sink plugin for TDengine, it can be used for saving the analysis data into TDengine.",
- "zh_CN": "本插件为 TDengine 的持久化插件,可以用于将分析数据存入 TDengine 中"
- }
- },
- "libs": [
- "github.com/taosdata/driver-go@master"
- ],
- "properties": [{
- "name": "ip",
- "default": "127.0.0.1",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "IP address of Taosdb",
- "zh_CN": "Taosdb IP 地址"
- },
- "label": {
- "en_US": "Database address",
- "zh_CN": "数据库地址"
- }
- }, {
- "name": "port",
- "default": 0,
- "optional": false,
- "control": "text",
- "type": "int",
- "hint": {
- "en_US": "Database port",
- "zh_CN": "数据库端口号"
- },
- "label": {
- "en_US": "Port",
- "zh_CN": "端口号"
- }
- }, {
- "name": "user",
- "default": "root",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "Username",
- "zh_CN": "用户名"
- },
- "label": {
- "en_US": "Username",
- "zh_CN": "用户名"
- }
- }, {
- "name": "password",
- "default": "taosdata",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "Password of Taosdb",
- "zh_CN": "数据库密码"
- },
- "label": {
- "en_US": "Password",
- "zh_CN": "密码"
- }
- }, {
- "name": "database",
- "default": "db",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "Database name",
- "zh_CN": "库名称"
- },
- "label": {
- "en_US": "Database name",
- "zh_CN": "库名称"
- }
- }, {
- "name": "table",
- "default": "t",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "Table name",
- "zh_CN": "表名"
- },
- "label": {
- "en_US": "Table name",
- "zh_CN": "表名"
- }
- }, {
- "name": "fields",
- "default": [],
- "optional": false,
- "control": "list",
- "type": "list_string",
- "hint": {
- "en_US": "Field of table",
- "zh_CN": "表字段"
- },
- "label": {
- "en_US": "Table field",
- "zh_CN": "表字段"
- }
- }]
- }
|