123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- {
- "about": {
- "trial": false,
- "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/sinks/builtin/neuron.html",
- "zh_CN": "https://github.com/lf-edge/ekuiper/blob/master/docs/zh_CN/rules/sinks/builtin/"
- },
- "description": {
- "en_US": "The action is used to publish the result into the local neuron instance.",
- "zh_CN": "该操作用于发送消息到本地的 neuron 中。"
- }
- },
- "properties": [
- {
- "name": "url",
- "default": "tcp://127.0.0.1:7081",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "The nng url to connect to neuron.",
- "zh_CN": "连接 Neuron 的 nng url"
- },
- "label": {
- "en_US": "URL",
- "zh_CN": "路径"
- }
- },
- {
- "name": "nodeName",
- "optional": true,
- "control": "text",
- "default": "",
- "type": "string",
- "hint": {
- "en_US": "The neuron node name",
- "zh_CN": "Neuron 节点名称"
- },
- "label": {
- "en_US": "Node Name",
- "zh_CN": "节点名称"
- }
- },
- {
- "name": "groupName",
- "optional": true,
- "control": "text",
- "default": "",
- "type": "string",
- "hint": {
- "en_US": "The neuron group name",
- "zh_CN": "Neuron 分组名称"
- },
- "label": {
- "en_US": "Group Name",
- "zh_CN": "分组名称"
- }
- },
- {
- "name": "tags",
- "default": [],
- "optional": true,
- "control": "list",
- "type": "list_string",
- "hint": {
- "en_US": "Tags of neuron to be sent",
- "zh_CN": "要写入的Neuron标签"
- },
- "label": {
- "en_US": "Tags",
- "zh_CN": "标签字段"
- }
- },
- {
- "name": "raw",
- "optional": true,
- "control": "radio",
- "default": false,
- "type": "bool",
- "hint": {
- "en_US": "Whether to send the raw string",
- "zh_CN": "是否发送原始字符串"
- },
- "label": {
- "en_US": "Raw",
- "zh_CN": "原始字符串"
- }
- }
- ],
- "node": {
- "category": "sink",
- "icon": "iconPath",
- "label": {
- "en": "Neuron",
- "zh": "Neuron"
- }
- }
- }
|