123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- {
- "author": {
- "name": "Yuedong Ma",
- "email": "mayuedong@emqx.io",
- "company": "EMQ Technologies Co., Ltd",
- "website": "https://www.emqx.io"
- },
- "libs": [
- "github.com/taosdata/driver-go@master"
- ],
- "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"
- },
- "properties": [{
- "name": "port",
- "default": 0,
- "optional": false,
- "control": "text",
- "type": "int",
- "hint": {
- "en_US": "Port of Taosdb",
- "zh_CN": "Taosdb 端口号"
- },
- "label": {
- "en_US": "DB port",
- "zh_CN": "数据库端口"
- }
- }, {
- "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": "DB IP address",
- "zh_CN": "数据库IP 地址"
- }
- }, {
- "name": "user",
- "default": "root",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "User of Taosdb",
- "zh_CN": "Taosdb 用户名"
- },
- "label": {
- "en_US": "DB user",
- "zh_CN": "数据库用户名"
- }
- }, {
- "name": "password",
- "default": "",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "Password of Taosdb",
- "zh_CN": "数据库密码"
- },
- "label": {
- "en_US": "DB password",
- "zh_CN": "数据库密码"
- }
- }, {
- "name": "database",
- "default": "",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "name of database",
- "zh_CN": "库名称"
- },
- "label": {
- "en_US": "Database name",
- "zh_CN": "库名称"
- }
- }, {
- "name": "table",
- "default": "",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "Name of table",
- "zh_CN": "表名"
- },
- "label": {
- "en_US": "Name of table",
- "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": "表字段"
- }
- }]
- }
|