123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- {
- "about": {
- "trial": true,
- "author": {
- "name": "EMQ",
- "email": "contact@emqx.io",
- "company": "EMQ Technologies Co., Ltd",
- "website": "https://www.emqx.io"
- },
- "helpUrl": {
- "en_US": "https://ekuiper.org/docs/en/latest/guide/sources/builtin/redis.html",
- "zh_CN": "https://ekuiper.org/docs/zh/latest/guide/sources/builtin/redis.html"
- },
- "description": {
- "en_US": "Read message from Redis",
- "zh_CN": "从 Redis 中读取消息"
- }
- },
- "libs": [],
- "dataSource": {
- "default": "0",
- "hint": {
- "en_US": "The Redis database to connect to, e.g. 0",
- "zh_CN": "将要连接的 Redis 数据库号,例如 0"
- },
- "label": {
- "en_US": "Data Source (Database Number)",
- "zh_CN": "数据源(数据库号)"
- }
- },
- "properties": {
- "default": [
- {
- "name": "addr",
- "default": "10.122.48.17:6379",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "The addr of the Redis,example: 10.122.48.17:6379",
- "zh_CN": "Redis的地址, 例如: 10.122.48.17:6379"
- },
- "label": {
- "en_US": "Addr",
- "zh_CN": "地址"
- }
- },
- {
- "name": "username",
- "default": "",
- "optional": true,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "The Redis user name",
- "zh_CN": "Redis 用户名"
- },
- "label": {
- "en_US": "Username",
- "zh_CN": "用户名"
- }
- },
- {
- "name": "password",
- "default": "",
- "optional": true,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "The Redis login password",
- "zh_CN": "Redis 登陆密码"
- },
- "label": {
- "en_US": "Password",
- "zh_CN": "密码"
- }
- },
- {
- "name": "dataType",
- "default": "string",
- "optional": false,
- "control": "select",
- "type": "string",
- "values": [
- "string",
- "list"
- ],
- "hint": {
- "en_US": "The Redis data type, could be string or list. The default is string.",
- "zh_CN": "Redis 数据的类型,可以为 string 或者 list, 默认是 string。"
- },
- "label": {
- "en_US": "data type",
- "zh_CN": "数据类型"
- }
- }
- ]
- },
- "node": {
- "category": "source",
- "icon": "iconPath",
- "label": {
- "en_US": "Redis",
- "zh_CN": "Redis"
- }
- }
- }
|