@emqx/shared-ui-i18n 0.0.12 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/enSymbolLabel.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +149 -89
- package/dist/index.umd.cjs +2 -2
- package/dist/zhSymbolLabel.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const enSymbolLabel: Record<string, string>;
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -238,6 +238,9 @@ FROM
|
|
|
238
238
|
ordering_key_template: "Ordering Key template",
|
|
239
239
|
payload_template: "Payload Template"
|
|
240
240
|
},
|
|
241
|
+
gcp_pubsub_consumer: {
|
|
242
|
+
topic: "GCP PubSub Topic"
|
|
243
|
+
},
|
|
241
244
|
syskeeper_forwarder: {
|
|
242
245
|
target_topic: "Topic",
|
|
243
246
|
target_qos: "QoS"
|
|
@@ -287,21 +290,22 @@ FROM
|
|
|
287
290
|
value: "Value",
|
|
288
291
|
data: "Write Data"
|
|
289
292
|
},
|
|
290
|
-
gcp_pubsub_consumer: {
|
|
291
|
-
payload_template: "Payload Template"
|
|
292
|
-
},
|
|
293
293
|
hstreamdb: {
|
|
294
|
-
stream: "
|
|
295
|
-
partition_key: "
|
|
294
|
+
stream: "Stream",
|
|
295
|
+
partition_key: "Partition Key",
|
|
296
296
|
grpc_flush_timeout: "gRPC Flush Interval",
|
|
297
297
|
aggregation_pool_size: "Aggregation Pool Size",
|
|
298
298
|
max_batches: "Max Batches",
|
|
299
299
|
writer_pool_size: "Writer Pool Size",
|
|
300
300
|
batch_interval: "Max Batch Interval",
|
|
301
|
-
record_template: "
|
|
301
|
+
record_template: "Record Template"
|
|
302
302
|
},
|
|
303
303
|
kafka_consumer: {
|
|
304
|
-
|
|
304
|
+
key_encoding_mode: "Key Encoding Mode",
|
|
305
|
+
value_encoding_mode: "Value Encoding Mode",
|
|
306
|
+
offset_reset_policy: "Offset Reset Policy",
|
|
307
|
+
offset_commit_interval_seconds: "Offset Commit Interval",
|
|
308
|
+
topic: "Kafka Topic"
|
|
305
309
|
},
|
|
306
310
|
rabbitmq: {
|
|
307
311
|
exchange: "Exchange",
|
|
@@ -312,6 +316,13 @@ FROM
|
|
|
312
316
|
payload_template: "Payload Template"
|
|
313
317
|
},
|
|
314
318
|
pulsar: {
|
|
319
|
+
pulsar_topic: "Pulsar Topic Name",
|
|
320
|
+
strategy: "Partition Strategy",
|
|
321
|
+
retention_period: "Retention Period",
|
|
322
|
+
compression: "Compression",
|
|
323
|
+
sync_timeout: "Sync Publish Timeout",
|
|
324
|
+
send_buffer: "Socket Send Buffer Size",
|
|
325
|
+
per_partition_limit: "Pulsar Per-partition Buffer Limit",
|
|
315
326
|
message_key: "Message Key",
|
|
316
327
|
message_value: "Message Value"
|
|
317
328
|
},
|
|
@@ -341,6 +352,9 @@ FROM
|
|
|
341
352
|
acl: "ACL",
|
|
342
353
|
content: "Object Content",
|
|
343
354
|
key: "Object Key"
|
|
355
|
+
},
|
|
356
|
+
dynamo: {
|
|
357
|
+
table: "Table "
|
|
344
358
|
}
|
|
345
359
|
}, a = {
|
|
346
360
|
common: {
|
|
@@ -412,6 +426,9 @@ FROM
|
|
|
412
426
|
ordering_key_template: "排序键模板",
|
|
413
427
|
payload_template: "HTTP 请求消息体模板"
|
|
414
428
|
},
|
|
429
|
+
gcp_pubsub_consumer: {
|
|
430
|
+
topic: "GCP PubSub 主题"
|
|
431
|
+
},
|
|
415
432
|
syskeeper_forwarder: {
|
|
416
433
|
target_topic: "主题",
|
|
417
434
|
target_qos: "QoS"
|
|
@@ -461,21 +478,22 @@ FROM
|
|
|
461
478
|
value: "值",
|
|
462
479
|
data: "写入数据"
|
|
463
480
|
},
|
|
464
|
-
gcp_pubsub_consumer: {
|
|
465
|
-
payload_template: "HTTP 请求消息体模板"
|
|
466
|
-
},
|
|
467
481
|
hstreamdb: {
|
|
468
|
-
stream: "
|
|
469
|
-
partition_key: "
|
|
482
|
+
stream: "Stream",
|
|
483
|
+
partition_key: "分区键",
|
|
470
484
|
grpc_flush_timeout: "gRPC 刷新间隔",
|
|
471
|
-
aggregation_pool_size: "聚合池大小",
|
|
485
|
+
aggregation_pool_size: "Record 聚合池大小",
|
|
472
486
|
max_batches: "最大批次",
|
|
473
487
|
writer_pool_size: "写入池大小",
|
|
474
488
|
batch_interval: "最大批处理间隔",
|
|
475
|
-
record_template: "
|
|
489
|
+
record_template: "Record 模板"
|
|
476
490
|
},
|
|
477
491
|
kafka_consumer: {
|
|
478
|
-
|
|
492
|
+
key_encoding_mode: "Key 编码模式",
|
|
493
|
+
value_encoding_mode: "Value 编码模式",
|
|
494
|
+
offset_reset_policy: "偏移重置策略",
|
|
495
|
+
offset_commit_interval_seconds: "偏移提交间隔",
|
|
496
|
+
topic: "Kafka 主题名称"
|
|
479
497
|
},
|
|
480
498
|
rabbitmq: {
|
|
481
499
|
exchange: "交换机",
|
|
@@ -486,6 +504,13 @@ FROM
|
|
|
486
504
|
payload_template: "有效载荷模板"
|
|
487
505
|
},
|
|
488
506
|
pulsar: {
|
|
507
|
+
pulsar_topic: "Pulsar 主题名称",
|
|
508
|
+
strategy: "分区选择策略",
|
|
509
|
+
retention_period: "消息保留时间",
|
|
510
|
+
compression: "压缩",
|
|
511
|
+
sync_timeout: "同步发布超时",
|
|
512
|
+
send_buffer: "Socket 发送缓存大小",
|
|
513
|
+
per_partition_limit: "Pulsar 分区缓存上限",
|
|
489
514
|
message_key: "消息的 Key",
|
|
490
515
|
message_value: "消息的 Value"
|
|
491
516
|
},
|
|
@@ -515,6 +540,9 @@ FROM
|
|
|
515
540
|
acl: "ACL",
|
|
516
541
|
content: "对象内容",
|
|
517
542
|
key: "对象键"
|
|
543
|
+
},
|
|
544
|
+
dynamo: {
|
|
545
|
+
table: "表"
|
|
518
546
|
}
|
|
519
547
|
}, r = {
|
|
520
548
|
common: {
|
|
@@ -540,13 +568,14 @@ FROM
|
|
|
540
568
|
max_buffer_bytes: "Max Buffer Queue Size",
|
|
541
569
|
inflight_window: "Inflight Window",
|
|
542
570
|
servers: "Servers",
|
|
543
|
-
enable_pipelining: "HTTP Pipelining"
|
|
571
|
+
enable_pipelining: "HTTP Pipelining",
|
|
572
|
+
url: "Server URL",
|
|
573
|
+
authentication: "Authentication"
|
|
544
574
|
},
|
|
545
575
|
kafka_producer: {
|
|
546
576
|
kerberos_principal: "Kerberos Principal",
|
|
547
|
-
kerberos_keytab_file: "Kerberos
|
|
548
|
-
mechanism: "Mechanism"
|
|
549
|
-
authentication: "Authentication"
|
|
577
|
+
kerberos_keytab_file: "Kerberos Keytab File",
|
|
578
|
+
mechanism: "Mechanism"
|
|
550
579
|
},
|
|
551
580
|
http: {
|
|
552
581
|
url: "URL",
|
|
@@ -560,7 +589,8 @@ FROM
|
|
|
560
589
|
batch_size: "Batch Size"
|
|
561
590
|
},
|
|
562
591
|
azure_event_hub_producer: {
|
|
563
|
-
bootstrap_hosts: "Bootstrap Hosts"
|
|
592
|
+
bootstrap_hosts: "Bootstrap Hosts",
|
|
593
|
+
password: "Connection String"
|
|
564
594
|
},
|
|
565
595
|
syskeeper_forwarder: {
|
|
566
596
|
ack_mode: "ACK Mode",
|
|
@@ -624,37 +654,21 @@ FROM
|
|
|
624
654
|
},
|
|
625
655
|
dynamo: {
|
|
626
656
|
url: "DynamoDB Endpoint",
|
|
627
|
-
table: "Table ",
|
|
628
657
|
aws_access_key_id: "AWS Access Key ID",
|
|
629
658
|
aws_secret_access_key: "AWS Secret Access Key"
|
|
630
659
|
},
|
|
631
660
|
gcp_pubsub_consumer: {
|
|
632
|
-
consumer_pubsub_topic: "GCP PubSub Topic",
|
|
633
|
-
consumer_mqtt_topic: "MQTT Topic",
|
|
634
|
-
consumer_qos: "QoS",
|
|
635
661
|
pipelining: "HTTP Pipelining",
|
|
636
662
|
service_account_json: "GCP Service Account Credentials",
|
|
637
|
-
topic_mapping: "Topic Mapping",
|
|
638
663
|
pull_max_messages: "Maximum Messages to Pull"
|
|
639
664
|
},
|
|
640
665
|
hstreamdb: {
|
|
641
|
-
|
|
642
|
-
grpc_timeout: "HStreamDB gRPC Timeout"
|
|
666
|
+
grpc_timeout: "gRPC Timeout"
|
|
643
667
|
},
|
|
644
668
|
kafka_consumer: {
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
consumer_topic_mapping: "Topic Mapping",
|
|
649
|
-
consumer_offset_reset_policy: "Offset Reset Policy",
|
|
650
|
-
consumer_mqtt_topic: "MQTT Topic",
|
|
651
|
-
min_metadata_refresh_interval: "Min Metadata Refresh Interval",
|
|
652
|
-
metadata_request_timeout: "Metadata Request Timeout",
|
|
653
|
-
consumer_max_batch_bytes: "Fetch Bytes",
|
|
654
|
-
consumer_offset_commit_interval_seconds: "Offset Commit Interval",
|
|
655
|
-
topic: "Kafka Topic",
|
|
656
|
-
mqtt_topic: "MQTT Topic",
|
|
657
|
-
qos: "QoS"
|
|
669
|
+
kerberos_principal: "Kerberos Principal",
|
|
670
|
+
kerberos_keytab_file: "Kerberos Keytab File",
|
|
671
|
+
mechanism: "Mechanism"
|
|
658
672
|
},
|
|
659
673
|
rocketmq: {
|
|
660
674
|
access_key: "AccessKey",
|
|
@@ -675,18 +689,7 @@ FROM
|
|
|
675
689
|
timeout: "Connection Timeout"
|
|
676
690
|
},
|
|
677
691
|
pulsar: {
|
|
678
|
-
|
|
679
|
-
strategy: "Partition Strategy",
|
|
680
|
-
compression: "Compression",
|
|
681
|
-
sync_timeout: "Sync Publish Timeout",
|
|
682
|
-
retention_period: "Retention Period",
|
|
683
|
-
send_buffer: "Socket Send Buffer Size",
|
|
684
|
-
max_batch_bytes: "Max Batch Bytes",
|
|
685
|
-
buffer_mode: "Buffer Mode",
|
|
686
|
-
buffer_per_partition_limit: "Per-partition Buffer Limit",
|
|
687
|
-
buffer_segment_bytes: "Segment File Bytes",
|
|
688
|
-
buffer_memory_overload_protection: "Memory Overload Protection",
|
|
689
|
-
authentication_jwt: "JWT"
|
|
692
|
+
jwt: "JWT"
|
|
690
693
|
},
|
|
691
694
|
kinesis: {
|
|
692
695
|
aws_access_key_id: "AWS Access Key ID",
|
|
@@ -729,13 +732,14 @@ FROM
|
|
|
729
732
|
max_buffer_bytes: "缓存队列最大长度",
|
|
730
733
|
inflight_window: "请求飞行队列窗口",
|
|
731
734
|
servers: "服务器列表",
|
|
732
|
-
enable_pipelining: "HTTP 流水线"
|
|
735
|
+
enable_pipelining: "HTTP 流水线",
|
|
736
|
+
url: "服务器地址",
|
|
737
|
+
authentication: "认证"
|
|
733
738
|
},
|
|
734
739
|
kafka_producer: {
|
|
735
740
|
kerberos_principal: "Kerberos Principal",
|
|
736
741
|
kerberos_keytab_file: "Kerberos Keytab 文件",
|
|
737
|
-
mechanism: "认证方法"
|
|
738
|
-
authentication: "认证"
|
|
742
|
+
mechanism: "认证方法"
|
|
739
743
|
},
|
|
740
744
|
http: {
|
|
741
745
|
url: "URL",
|
|
@@ -749,7 +753,8 @@ FROM
|
|
|
749
753
|
batch_size: "最大批量请求大小"
|
|
750
754
|
},
|
|
751
755
|
azure_event_hub_producer: {
|
|
752
|
-
bootstrap_hosts: "引导主机"
|
|
756
|
+
bootstrap_hosts: "引导主机",
|
|
757
|
+
password: "连接字符串"
|
|
753
758
|
},
|
|
754
759
|
syskeeper_forwarder: {
|
|
755
760
|
ack_mode: "ACK 模式",
|
|
@@ -813,37 +818,21 @@ FROM
|
|
|
813
818
|
},
|
|
814
819
|
dynamo: {
|
|
815
820
|
url: "DynamoDB 地址",
|
|
816
|
-
table: "表",
|
|
817
821
|
aws_access_key_id: "连接访问 ID",
|
|
818
822
|
aws_secret_access_key: "连接访问密钥"
|
|
819
823
|
},
|
|
820
824
|
gcp_pubsub_consumer: {
|
|
821
|
-
consumer_pubsub_topic: "GCP PubSub 主题",
|
|
822
|
-
consumer_mqtt_topic: "MQTT 主题",
|
|
823
|
-
consumer_qos: "QoS",
|
|
824
825
|
pipelining: "HTTP 流水线",
|
|
825
826
|
service_account_json: "GCP 服务账户凭证",
|
|
826
|
-
topic_mapping: "主题映射",
|
|
827
827
|
pull_max_messages: "拉取的最大消息数"
|
|
828
828
|
},
|
|
829
829
|
hstreamdb: {
|
|
830
|
-
|
|
831
|
-
grpc_timeout: "HStreamDB gRPC 超时"
|
|
830
|
+
grpc_timeout: "gRPC 超时"
|
|
832
831
|
},
|
|
833
832
|
kafka_consumer: {
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
consumer_topic_mapping: "主题映射关系",
|
|
838
|
-
consumer_offset_reset_policy: "偏移重置策略",
|
|
839
|
-
consumer_mqtt_topic: "MQTT 主题",
|
|
840
|
-
min_metadata_refresh_interval: "元数据刷新最小间隔",
|
|
841
|
-
metadata_request_timeout: "元数据请求超时",
|
|
842
|
-
consumer_max_batch_bytes: "拉取字节数",
|
|
843
|
-
consumer_offset_commit_interval_seconds: "偏移提交间隔",
|
|
844
|
-
topic: "Kafka 主题名称",
|
|
845
|
-
mqtt_topic: "MQTT 主题",
|
|
846
|
-
qos: "QoS"
|
|
833
|
+
kerberos_principal: "Kerberos Principal",
|
|
834
|
+
kerberos_keytab_file: "Kerberos Keytab 文件",
|
|
835
|
+
mechanism: "认证方法"
|
|
847
836
|
},
|
|
848
837
|
rocketmq: {
|
|
849
838
|
access_key: "AccessKey",
|
|
@@ -864,18 +853,7 @@ FROM
|
|
|
864
853
|
timeout: "连接超时时间"
|
|
865
854
|
},
|
|
866
855
|
pulsar: {
|
|
867
|
-
|
|
868
|
-
strategy: "分区选择策略",
|
|
869
|
-
compression: "压缩",
|
|
870
|
-
sync_timeout: "同步发布超时",
|
|
871
|
-
retention_period: "保留期",
|
|
872
|
-
send_buffer: "Socket 发送缓存大小",
|
|
873
|
-
max_batch_bytes: "最大批量字节数",
|
|
874
|
-
buffer_mode: "缓存模式",
|
|
875
|
-
buffer_per_partition_limit: "Pulsar 分区缓存上限",
|
|
876
|
-
buffer_segment_bytes: "缓存文件大小",
|
|
877
|
-
buffer_memory_overload_protection: "内存过载保护",
|
|
878
|
-
authentication_jwt: "JWT"
|
|
856
|
+
jwt: "JWT"
|
|
879
857
|
},
|
|
880
858
|
kinesis: {
|
|
881
859
|
aws_access_key_id: "AWS 访问密钥 ID",
|
|
@@ -961,12 +939,94 @@ HSET mqtt_acl:emqx_u 't/#' subscribe
|
|
|
961
939
|
# sample cmd
|
|
962
940
|
HGETALL mqtt_acl:\${username}`
|
|
963
941
|
}
|
|
942
|
+
}, i = {
|
|
943
|
+
async: "Async",
|
|
944
|
+
sync: "Sync",
|
|
945
|
+
get: "GET",
|
|
946
|
+
post: "POST",
|
|
947
|
+
delete: "DELETE",
|
|
948
|
+
put: "PUT",
|
|
949
|
+
producer: "Producer",
|
|
950
|
+
consumer: "Consumer",
|
|
951
|
+
ns: "nanosecond",
|
|
952
|
+
us: "microsecond",
|
|
953
|
+
ms: "millisecond",
|
|
954
|
+
s: "second",
|
|
955
|
+
none: "None",
|
|
956
|
+
base64: "Base64",
|
|
957
|
+
json: "JSON",
|
|
958
|
+
authentication_auth_gssapi_kerberos: "Kerberos",
|
|
959
|
+
authentication_auth_username_password: "Basic auth",
|
|
960
|
+
authentication_auth_basic: "Basic auth",
|
|
961
|
+
authentication_auth_token: "Token",
|
|
962
|
+
authentication_none: "None",
|
|
963
|
+
parameters_connector_single: "single",
|
|
964
|
+
parameters_connector_rs: "rs",
|
|
965
|
+
parameters_connector_sharded: "sharded",
|
|
966
|
+
parameters_redis_single_connector: "single",
|
|
967
|
+
parameters_redis_sentinel_connector: "rs",
|
|
968
|
+
parameters_redis_cluster_connector: "sharded",
|
|
969
|
+
parameters_connector_influxdb_api_v_1: "v1",
|
|
970
|
+
parameters_connector_influxdb_api_v_2: "v2",
|
|
971
|
+
parameters_action_update: "Update",
|
|
972
|
+
parameters_action_delete: "Delete",
|
|
973
|
+
parameters_action_create: "Create",
|
|
974
|
+
all_partitions: "All Partitions",
|
|
975
|
+
plain: "Plain",
|
|
976
|
+
scram_sha_256: "SHA256",
|
|
977
|
+
scram_sha_512: "SHA512",
|
|
978
|
+
m: "minute",
|
|
979
|
+
h: "hour",
|
|
980
|
+
d: "day",
|
|
981
|
+
no_compression: "No compression"
|
|
982
|
+
}, n = {
|
|
983
|
+
async: "异步",
|
|
984
|
+
sync: "同步",
|
|
985
|
+
get: "GET",
|
|
986
|
+
post: "POST",
|
|
987
|
+
delete: "DELETE",
|
|
988
|
+
put: "PUT",
|
|
989
|
+
producer: "生产者",
|
|
990
|
+
consumer: "消费者",
|
|
991
|
+
ns: "纳秒",
|
|
992
|
+
us: "微秒",
|
|
993
|
+
ms: "毫秒",
|
|
994
|
+
s: "秒",
|
|
995
|
+
none: "None",
|
|
996
|
+
base64: "Base64",
|
|
997
|
+
json: "JSON",
|
|
998
|
+
authentication_auth_gssapi_kerberos: "Kerberos",
|
|
999
|
+
authentication_auth_username_password: "基础认证",
|
|
1000
|
+
authentication_auth_basic: "基础认证",
|
|
1001
|
+
authentication_auth_token: "Token",
|
|
1002
|
+
authentication_none: "无",
|
|
1003
|
+
parameters_connector_single: "single",
|
|
1004
|
+
parameters_connector_rs: "rs",
|
|
1005
|
+
parameters_connector_sharded: "sharded",
|
|
1006
|
+
parameters_redis_single_connector: "single",
|
|
1007
|
+
parameters_redis_sentinel_connector: "sentinel",
|
|
1008
|
+
parameters_redis_cluster_connector: "cluster",
|
|
1009
|
+
parameters_connector_influxdb_api_v_1: "v1",
|
|
1010
|
+
parameters_connector_influxdb_api_v_2: "v2",
|
|
1011
|
+
parameters_action_update: "更新",
|
|
1012
|
+
parameters_action_delete: "删除",
|
|
1013
|
+
parameters_action_create: "创建",
|
|
1014
|
+
all_partitions: "所有分区",
|
|
1015
|
+
plain: "Plain",
|
|
1016
|
+
scram_sha_256: "SHA256",
|
|
1017
|
+
scram_sha_512: "SHA512",
|
|
1018
|
+
m: "分钟",
|
|
1019
|
+
h: "小时",
|
|
1020
|
+
d: "天",
|
|
1021
|
+
no_compression: "不压缩"
|
|
964
1022
|
};
|
|
965
1023
|
export {
|
|
966
1024
|
e as SQLTemplates,
|
|
967
1025
|
o as authHelpCodeMap,
|
|
968
1026
|
t as enActionsLabel,
|
|
969
1027
|
r as enConnectorsLabel,
|
|
1028
|
+
i as enSymbolLabel,
|
|
970
1029
|
a as zhActionsLabel,
|
|
971
|
-
s as zhConnectorsLabel
|
|
1030
|
+
s as zhConnectorsLabel,
|
|
1031
|
+
n as zhSymbolLabel
|
|
972
1032
|
};
|
package/dist/index.umd.cjs
CHANGED
|
@@ -25,7 +25,7 @@ FROM
|
|
|
25
25
|
"t/#"`,input:{x:8},outputs:{x:7}},{title:{zh:"数组处理 - 从 JSON 格式的 payload 中获取嵌套的值",en:"Array - Get nested values from JSON-formatted payload"},scene:{zh:"处理 JSON 格式的 payload,从嵌套格式中获取所需要的值。",en:"Process JSON-formatted payload and get the values needed from the nested format."},sql:`SELECT
|
|
26
26
|
payload.data[1].id as id
|
|
27
27
|
FROM
|
|
28
|
-
"t/#"`,input:{data:[{id:1,name:"steve"},{id:2,name:"bill"}]},outputs:{id:1}}],a={common:{health_check_interval:"Health Check Interval",query_mode:"Query Mode",max_retries:"Max Retries",worker_pool_size:"Buffer Pool Size",start_after_created:"Start After Created",start_timeout:"Start Timeout",request_ttl:"Request TTL",inflight_window:"Inflight Window",max_buffer_bytes:"Max Buffer Queue Size",sql:"SQL Template",batch_size:"Batch Size",topic:"Kafka Topic",key:"Message Key",value:"Message Value",compression:"Compression",partition_strategy:"Partition Strategy",kafka_headers:"Kafka Headers",kafka_ext_headers:"More Kafka Headers",kafka_ext_header_key:"Key",kafka_ext_header_value:"Value",kafka_header_value_encode_mode:"Kafka Header Value Encode Mode",max_batch_bytes:"Max Batch Bytes",required_acks:"Required Acks",partition_count_refresh_interval:"Partition Count Refresh Interval",max_inflight:"Max Inflight",mode:"Buffer Mode",per_partition_limit:"Per-partition Buffer Limit",segment_bytes:"Segment File Bytes",memory_overload_protection:"Memory Overload Protection",sync_query_timeout:"Synchronous Query Timeout",template:"Message Template",partitions_limit:"Partitions Limit"},kafka_producer:{timestamp:"Message Timestamp",kafka_ext_header_key:"Kafka Header Key",kafka_ext_header_value:"Kafka Header Value"},http:{body:"Body",headers:"Headers",method:"Method",path:"URL Path"},azure_event_hub_producer:{topic:"Event Hub Name",key:"Message Key",value:"Message Value",partition_strategy:"Partition Strategy",required_acks:"Required Acks",kafka_headers:"Azure Event Hubs Headers",kafka_ext_headers:"Extra Azure Event Hubs headers",kafka_header_value_encode_mode:"Azure Event Hubs headers value encode mode",partition_count_refresh_interval:"Partition Count Refresh Interval",max_inflight:"Max Inflight",mode:"Buffer Mode",per_partition_limit:"Per-partition Buffer Limit",segment_bytes:"Segment File Bytes",memory_overload_protection:"Memory Overload Protection",max_batch_bytes:"Max Batch Bytes",query_mode:"Query mode"},gcp_pubsub_producer:{attributes_template:"Attributes Template",pubsub_topic:"GCP PubSub Topic",ordering_key_template:"Ordering Key template",payload_template:"Payload Template"},syskeeper_forwarder:{target_topic:"Topic",target_qos:"QoS"},redis:{command_template:"Redis Command Template"},mongodb:{collection:"Collection",payload_template:"Payload template"},iotdb:{device_id:"Device ID",is_aligned:"Align Timeseries",data:"Write Data",timestamp:"Timestamp",measurement:"Measurement",data_type:"Data Type",value:"Value"},influxdb:{precision:"Time Precision",write_syntax:"Write Syntax"},mqtt:{topic:"Topic",qos:"QoS",retain:"Retain",payload:"Payload"},elasticsearch:{parameters:"Action",index:"Index Name",id:"Document ID",doc:"Document Template",routing:"Routing",overwrite:"Overwrite Document",doc_as_upsert:"Enable Upsert"},cassandra:{cql:"CQL Template"},opents:{timestamp:"Timestamp",metric:"Metric",tags:"Tags",value:"Value",data:"Write Data"},gcp_pubsub_consumer:{payload_template:"Payload Template"},hstreamdb:{stream:"HStreamDB Stream Name",partition_key:"HStreamDB Partition Key",grpc_flush_timeout:"gRPC Flush Interval",aggregation_pool_size:"Aggregation Pool Size",max_batches:"Max Batches",writer_pool_size:"Writer Pool Size",batch_interval:"Max Batch Interval",record_template:"HStream Record Template"},kafka_consumer:{payload_template:"MQTT Payload Template"},rabbitmq:{exchange:"Exchange",routing_key:"Routing Key",delivery_mode:"Message Delivery Mode",wait_for_publish_confirmations:"Wait for Publish Confirmations",publish_confirmation_timeout:"Publish Confirmation Timeout",payload_template:"Payload Template"},pulsar:{message_key:"Message Key",message_value:"Message Value"},kinesis:{payload_template:"Payload template",stream_name:"Amazon Kinesis Stream",partition_key:"Partition key"},greptimedb:{write_syntax:"Write Syntax",precision:"Time Precision"},tdengine:{database:"Database Name"},rocketmq:{topic:"RocketMQ Topic",refresh_interval:"Topic Route Refresh Interval",send_buffer:"Send Buffer Size",sync_timeout:"Sync Timeout"},clickhouse:{batch_value_separator:"Batch Value Separator"},s3:{bucket:"Bucket",acl:"ACL",content:"Object Content",key:"Object Key"}},r={common:{health_check_interval:"健康检查间隔",query_mode:"请求模式",max_retries:"最大重试次数",worker_pool_size:"缓存池大小",start_after_created:"创建后立即启动",start_timeout:"启动超时时间",request_ttl:"请求超期",inflight_window:"请求飞行队列窗口",max_buffer_bytes:"缓存队列最大长度",sql:"SQL 模板",batch_size:"最大批量请求大小",topic:"Kafka 主题名称",key:"消息的键",value:"消息的值",compression:"压缩",partition_strategy:"分区选择策略",kafka_headers:"Kafka Headers",kafka_ext_headers:"更多的 Kafka Headers",kafka_ext_header_key:"键",kafka_ext_header_value:"值",kafka_header_value_encode_mode:"Kafka Headers 值编码类型",max_batch_bytes:"最大批量字节数",required_acks:"Kafka 确认数量",partition_count_refresh_interval:"分区数量刷新间隔",max_inflight:"飞行窗口",mode:"缓存模式",per_partition_limit:"Kafka 分区缓存上限",segment_bytes:"缓存文件大小",memory_overload_protection:"内存过载保护",sync_query_timeout:"同步查询超时时间",template:"消息模板",partitions_limit:"分区限制"},kafka_producer:{timestamp:"消息的时间戳",kafka_ext_header_key:"Kafka Headers 键",kafka_ext_header_value:"Kafka Headers 值"},http:{body:"请求体",headers:"请求头",method:"请求方法",path:"URL 路径"},azure_event_hub_producer:{topic:"事件中心名称",key:"消息键",value:"消息值",partition_strategy:"分区策略",required_acks:"所需确认",kafka_headers:"Azure Event Hubs 头部",kafka_ext_headers:"额外的 Azure Event Hubs 头部信息",kafka_header_value_encode_mode:"Azure Event Hubs 头部值编码模式",partition_count_refresh_interval:"分区数刷新间隔",max_inflight:"最大传输数",mode:"缓冲区模式",per_partition_limit:"每个分区缓冲限制",segment_bytes:"段文件字节数",memory_overload_protection:"内存过载保护",max_batch_bytes:"最大批次字节数",query_mode:"查询模式"},gcp_pubsub_producer:{attributes_template:"属性模版",pubsub_topic:"GCP PubSub 主题",ordering_key_template:"排序键模板",payload_template:"HTTP 请求消息体模板"},syskeeper_forwarder:{target_topic:"主题",target_qos:"QoS"},redis:{command_template:"Redis 命令模板"},mongodb:{collection:"集合(Collection)",payload_template:"有效载荷模板"},iotdb:{device_id:"设备 ID",is_aligned:"对齐时间序列",data:"写入数据",timestamp:"时间戳",measurement:"字段",data_type:"数据类型",value:"值"},influxdb:{precision:"时间精度",write_syntax:"写语句"},mqtt:{topic:"主题",qos:"QoS",retain:"Retain",payload:"消息模版"},elasticsearch:{parameters:"操作",index:"索引名称",id:"文档 ID",doc:"文档模版",routing:"路由",overwrite:"是否覆盖文档",doc_as_upsert:"启用更新插入"},cassandra:{cql:"CQL 模板"},opents:{timestamp:"时间戳",metric:"度量",tags:"标签",value:"值",data:"写入数据"},gcp_pubsub_consumer:{payload_template:"HTTP 请求消息体模板"},hstreamdb:{stream:"HStreamDB 流名称",partition_key:"HStreamDB 分区键",grpc_flush_timeout:"gRPC 刷新间隔",aggregation_pool_size:"聚合池大小",max_batches:"最大批次",writer_pool_size:"写入池大小",batch_interval:"最大批处理间隔",record_template:"HStream Record 模板"},kafka_consumer:{payload_template:"MQTT Payload Template"},rabbitmq:{exchange:"交换机",routing_key:"路由键",delivery_mode:"消息传递模式",wait_for_publish_confirmations:"等待发布确认",publish_confirmation_timeout:"发布确认超时时间",payload_template:"有效载荷模板"},pulsar:{message_key:"消息的 Key",message_value:"消息的 Value"},kinesis:{payload_template:"载荷模板",stream_name:"Amazon Kinesis 流",partition_key:"分区键"},greptimedb:{write_syntax:"写语法",precision:"时间精度"},tdengine:{database:"数据库名字"},rocketmq:{topic:"RocketMQ 主题",refresh_interval:"主题路由更新间隔",send_buffer:"发送消息的缓冲区大小",sync_timeout:"同步调用超时时间"},clickhouse:{batch_value_separator:"分隔符"},s3:{bucket:"存储桶",acl:"ACL",content:"对象内容",key:"对象键"}},s={common:{connect_timeout:"Connect Timeout",bootstrap_hosts:"Bootstrap Hosts",min_metadata_refresh_interval:"Min Metadata Refresh Interval",metadata_request_timeout:"Metadata Request Timeout",tcp_keepalive:"TCP Keepalive",sndbuf:"Socket Send Buffer Size",recbuf:"Socket Receive Buffer Size",nodelay:"No Delay",username:"Username",password:"Password",pool_size:"Connection Pool Size",pool_type:"Pool Type",server:"Server Host",database:"Database Name",health_check_interval:"Health Check Interval",start_timeout:"Start Timeout",max_retries:"Max Retries",worker_pool_size:"Buffer Pool Size",request_ttl:"Request TTL",max_buffer_bytes:"Max Buffer Queue Size",inflight_window:"Inflight Window",servers:"Servers",enable_pipelining:"HTTP Pipelining"},kafka_producer:{kerberos_principal:"Kerberos Principal",kerberos_keytab_file:"Kerberos keytab file",mechanism:"Mechanism",authentication:"Authentication"},http:{url:"URL",headers:"Headers",enable_pipelining:"HTTP Pipelining"},gcp_pubsub_producer:{pipelining:"HTTP Pipelining",service_account_json:"GCP Service Account Credentials",query_mode:"Query Mode",batch_size:"Batch Size"},azure_event_hub_producer:{bootstrap_hosts:"Bootstrap Hosts"},syskeeper_forwarder:{ack_mode:"ACK Mode",ack_timeout:"ACK Timeout"},redis:{parameters:"Redis Mode",sentinel:"Sentinel Mode"},mongodb:{parameters:"MongoDB Mode",w_mode:"Write Mode",r_mode:"Read Mode",srv_record:"Srv Record",use_legacy_protocol:"Use Legacy Protocol",auth_source:"Auth Source",replica_set_name:"Replica Set Name",max_overflow:"Max Overflow Workers",overflow_ttl:"Overflow TTL",overflow_check_period:"Overflow Check Period",local_threshold_ms:"Local Threshold",connect_timeout_ms:"Connect Timeout",socket_timeout_ms:"Socket Timeout",server_selection_timeout_ms:"Server Selection Timeout",wait_queue_timeout_ms:"Wait Queue Timeout",heartbeat_frequency_ms:"Heartbeat period",min_heartbeat_frequency_ms:"Minimum Heartbeat Period"},influxdb:{parameters:"Version of InfluxDB",bucket:"Bucket",org:"Organization",token:"Token"},iotdb:{base_url:"IoTDB REST Service Base URL",iotdb_version:"IoTDB Version"},elasticsearch:{server:"Server"},mqtt:{server:"MQTT Broker",clientid_prefix:"ClientID Prefix",proto_ver:"MQTT Version",bridge_mode:"Bridge Mode",clean_start:"Clean start",keepalive:"Keepalive",retry_interval:"Message Retry Interval",max_inflight:"Max Inflight"},cassandra:{keyspace:"Keyspace"},opents:{summary:"Summary",details:"Details"},clickhouse:{url:"Server URL"},dynamo:{url:"DynamoDB Endpoint",table:"Table ",aws_access_key_id:"AWS Access Key ID",aws_secret_access_key:"AWS Secret Access Key"},gcp_pubsub_consumer:{consumer_pubsub_topic:"GCP PubSub Topic",consumer_mqtt_topic:"MQTT Topic",consumer_qos:"QoS",pipelining:"HTTP Pipelining",service_account_json:"GCP Service Account Credentials",topic_mapping:"Topic Mapping",pull_max_messages:"Maximum Messages to Pull"},hstreamdb:{url:"HStreamDB Server URL",grpc_timeout:"HStreamDB gRPC Timeout"},kafka_consumer:{bootstrap_hosts:"Bootstrap Hosts",consumer_key_encoding_mode:"Key Encoding Mode",consumer_value_encoding_mode:"Value Encoding Mode",consumer_topic_mapping:"Topic Mapping",consumer_offset_reset_policy:"Offset Reset Policy",consumer_mqtt_topic:"MQTT Topic",min_metadata_refresh_interval:"Min Metadata Refresh Interval",metadata_request_timeout:"Metadata Request Timeout",consumer_max_batch_bytes:"Fetch Bytes",consumer_offset_commit_interval_seconds:"Offset Commit Interval",topic:"Kafka Topic",mqtt_topic:"MQTT Topic",qos:"QoS"},rocketmq:{access_key:"AccessKey",secret_key:"SecretKey",security_token:"Security Token"},sqlserver:{driver:"SQL Server Driver Name"},oracle:{sid:"Oracle Database SID",service_name:"Oracle Database Service Name"},rabbitmq:{port:"Port",virtual_host:"Virtual Host",heartbeat:"Heartbeat",timeout:"Connection Timeout"},pulsar:{pulsar_topic:"Pulsar Topic Name",strategy:"Partition Strategy",compression:"Compression",sync_timeout:"Sync Publish Timeout",retention_period:"Retention Period",send_buffer:"Socket Send Buffer Size",max_batch_bytes:"Max Batch Bytes",buffer_mode:"Buffer Mode",buffer_per_partition_limit:"Per-partition Buffer Limit",buffer_segment_bytes:"Segment File Bytes",buffer_memory_overload_protection:"Memory Overload Protection",authentication_jwt:"JWT"},kinesis:{aws_access_key_id:"AWS Access Key ID",aws_secret_access_key:"AWS Secret Access Key",endpoint:"Amazon Kinesis Endpoint"},greptimedb:{dbname:"Database"},s3:{access_key_id:"Access Key ID",secret_access_key:"Secret Access Key",host:"Host",port:"Port",ipv6_probe:"IPv6 Probe",headers:"HTTP Headers",request_timeout:"Request Timeout"}},o={common:{connect_timeout:"连接超时",bootstrap_hosts:"主机列表",min_metadata_refresh_interval:"元数据刷新最小间隔",metadata_request_timeout:"元数据请求超时",tcp_keepalive:"TCP Keepalive",sndbuf:"Socket 发送缓存大小",recbuf:"Socket 收包缓存大小",nodelay:"是否关闭延迟发送",username:"用户名",password:"密码",pool_size:"连接池大小",pool_type:"连接池类型",server:"服务器地址",database:"数据库名字",health_check_interval:"健康检查间隔",start_timeout:"启动超时时间",max_retries:"最大重试次数",worker_pool_size:"缓存池大小",request_ttl:"请求超期",max_buffer_bytes:"缓存队列最大长度",inflight_window:"请求飞行队列窗口",servers:"服务器列表",enable_pipelining:"HTTP 流水线"},kafka_producer:{kerberos_principal:"Kerberos Principal",kerberos_keytab_file:"Kerberos Keytab 文件",mechanism:"认证方法",authentication:"认证"},http:{url:"URL",headers:"请求头",enable_pipelining:"HTTP 管道"},gcp_pubsub_producer:{pipelining:"HTTP 流水线",service_account_json:"GCP 服务账户凭证",query_mode:"请求模式",batch_size:"最大批量请求大小"},azure_event_hub_producer:{bootstrap_hosts:"引导主机"},syskeeper_forwarder:{ack_mode:"ACK 模式",ack_timeout:"ACK 超时"},redis:{parameters:"部署模式",sentinel:"哨兵模式"},mongodb:{parameters:"部署模式",w_mode:"写模式",r_mode:"读模式",srv_record:"SRV 记录",use_legacy_protocol:"使用旧协议",auth_source:"认证源",replica_set_name:"副本集名称",max_overflow:"最大溢出",overflow_ttl:"溢出 TTL",overflow_check_period:"溢出检查周期",local_threshold_ms:"本地阈值",connect_timeout_ms:"连接超时",socket_timeout_ms:"套接字操作超时",server_selection_timeout_ms:"服务器选择超时",wait_queue_timeout_ms:"等待队列超时",heartbeat_frequency_ms:"心跳期",min_heartbeat_frequency_ms:"最小心跳周期"},influxdb:{parameters:"InfluxDB 版本",bucket:"Bucket",org:"组织",token:"Token"},iotdb:{base_url:"IoTDB REST 服务基础 URL",iotdb_version:"IoTDB 版本"},elasticsearch:{server:"服务器地址"},mqtt:{server:"MQTT 服务地址",clientid_prefix:"客户端 ID 前缀",proto_ver:"MQTT 协议版本",bridge_mode:"桥接模式",clean_start:"清除会话",keepalive:"Keepalive",retry_interval:"消息重发间隔",max_inflight:"飞行窗口"},cassandra:{keyspace:"Keyspace"},opents:{summary:"摘要信息",details:"详细信息"},clickhouse:{url:"服务器 URL"},dynamo:{url:"DynamoDB 地址",table:"表",aws_access_key_id:"连接访问 ID",aws_secret_access_key:"连接访问密钥"},gcp_pubsub_consumer:{consumer_pubsub_topic:"GCP PubSub 主题",consumer_mqtt_topic:"MQTT 主题",consumer_qos:"QoS",pipelining:"HTTP 流水线",service_account_json:"GCP 服务账户凭证",topic_mapping:"主题映射",pull_max_messages:"拉取的最大消息数"},hstreamdb:{url:"HStreamDB 服务器 URL",grpc_timeout:"HStreamDB gRPC 超时"},kafka_consumer:{bootstrap_hosts:"主机列表",consumer_key_encoding_mode:"Key 编码模式",consumer_value_encoding_mode:"Value 编码模式",consumer_topic_mapping:"主题映射关系",consumer_offset_reset_policy:"偏移重置策略",consumer_mqtt_topic:"MQTT 主题",min_metadata_refresh_interval:"元数据刷新最小间隔",metadata_request_timeout:"元数据请求超时",consumer_max_batch_bytes:"拉取字节数",consumer_offset_commit_interval_seconds:"偏移提交间隔",topic:"Kafka 主题名称",mqtt_topic:"MQTT 主题",qos:"QoS"},rocketmq:{access_key:"AccessKey",secret_key:"SecretKey",security_token:"安全令牌"},sqlserver:{driver:"SQL Server Driver 名称"},oracle:{sid:"Oracle Database SID",service_name:"Oracle 数据库服务名称"},rabbitmq:{port:"端口",virtual_host:"虚拟主机",heartbeat:"心跳",timeout:"连接超时时间"},pulsar:{pulsar_topic:"Pulsar 主题名称",strategy:"分区选择策略",compression:"压缩",sync_timeout:"同步发布超时",retention_period:"保留期",send_buffer:"Socket 发送缓存大小",max_batch_bytes:"最大批量字节数",buffer_mode:"缓存模式",buffer_per_partition_limit:"Pulsar 分区缓存上限",buffer_segment_bytes:"缓存文件大小",buffer_memory_overload_protection:"内存过载保护",authentication_jwt:"JWT"},kinesis:{aws_access_key_id:"AWS 访问密钥 ID",aws_secret_access_key:"AWS 秘密访问密钥",endpoint:"Amazon Kinesis 端点"},greptimedb:{dbname:"数据库"},s3:{access_key_id:"访问密钥 ID",secret_access_key:"访问密钥",host:"地址",port:"端口",ipv6_probe:"IPv6 探针",headers:"请求头",request_timeout:"请求超时"}},i={authn:{mysql:"CREATE TABLE IF NOT EXISTS `mqtt_user` (\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT,\n `username` varchar(100) DEFAULT NULL,\n `password_hash` varchar(100) DEFAULT NULL,\n `salt` varchar(35) DEFAULT NULL,\n `is_superuser` tinyint(1) DEFAULT 0,\n `created` datetime DEFAULT NULL,\n PRIMARY KEY (`id`),\n UNIQUE KEY `mqtt_username` (`username`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;",postgresql:`CREATE TABLE mqtt_user (
|
|
28
|
+
"t/#"`,input:{data:[{id:1,name:"steve"},{id:2,name:"bill"}]},outputs:{id:1}}],a={common:{health_check_interval:"Health Check Interval",query_mode:"Query Mode",max_retries:"Max Retries",worker_pool_size:"Buffer Pool Size",start_after_created:"Start After Created",start_timeout:"Start Timeout",request_ttl:"Request TTL",inflight_window:"Inflight Window",max_buffer_bytes:"Max Buffer Queue Size",sql:"SQL Template",batch_size:"Batch Size",topic:"Kafka Topic",key:"Message Key",value:"Message Value",compression:"Compression",partition_strategy:"Partition Strategy",kafka_headers:"Kafka Headers",kafka_ext_headers:"More Kafka Headers",kafka_ext_header_key:"Key",kafka_ext_header_value:"Value",kafka_header_value_encode_mode:"Kafka Header Value Encode Mode",max_batch_bytes:"Max Batch Bytes",required_acks:"Required Acks",partition_count_refresh_interval:"Partition Count Refresh Interval",max_inflight:"Max Inflight",mode:"Buffer Mode",per_partition_limit:"Per-partition Buffer Limit",segment_bytes:"Segment File Bytes",memory_overload_protection:"Memory Overload Protection",sync_query_timeout:"Synchronous Query Timeout",template:"Message Template",partitions_limit:"Partitions Limit"},kafka_producer:{timestamp:"Message Timestamp",kafka_ext_header_key:"Kafka Header Key",kafka_ext_header_value:"Kafka Header Value"},http:{body:"Body",headers:"Headers",method:"Method",path:"URL Path"},azure_event_hub_producer:{topic:"Event Hub Name",key:"Message Key",value:"Message Value",partition_strategy:"Partition Strategy",required_acks:"Required Acks",kafka_headers:"Azure Event Hubs Headers",kafka_ext_headers:"Extra Azure Event Hubs headers",kafka_header_value_encode_mode:"Azure Event Hubs headers value encode mode",partition_count_refresh_interval:"Partition Count Refresh Interval",max_inflight:"Max Inflight",mode:"Buffer Mode",per_partition_limit:"Per-partition Buffer Limit",segment_bytes:"Segment File Bytes",memory_overload_protection:"Memory Overload Protection",max_batch_bytes:"Max Batch Bytes",query_mode:"Query mode"},gcp_pubsub_producer:{attributes_template:"Attributes Template",pubsub_topic:"GCP PubSub Topic",ordering_key_template:"Ordering Key template",payload_template:"Payload Template"},gcp_pubsub_consumer:{topic:"GCP PubSub Topic"},syskeeper_forwarder:{target_topic:"Topic",target_qos:"QoS"},redis:{command_template:"Redis Command Template"},mongodb:{collection:"Collection",payload_template:"Payload template"},iotdb:{device_id:"Device ID",is_aligned:"Align Timeseries",data:"Write Data",timestamp:"Timestamp",measurement:"Measurement",data_type:"Data Type",value:"Value"},influxdb:{precision:"Time Precision",write_syntax:"Write Syntax"},mqtt:{topic:"Topic",qos:"QoS",retain:"Retain",payload:"Payload"},elasticsearch:{parameters:"Action",index:"Index Name",id:"Document ID",doc:"Document Template",routing:"Routing",overwrite:"Overwrite Document",doc_as_upsert:"Enable Upsert"},cassandra:{cql:"CQL Template"},opents:{timestamp:"Timestamp",metric:"Metric",tags:"Tags",value:"Value",data:"Write Data"},hstreamdb:{stream:"Stream",partition_key:"Partition Key",grpc_flush_timeout:"gRPC Flush Interval",aggregation_pool_size:"Aggregation Pool Size",max_batches:"Max Batches",writer_pool_size:"Writer Pool Size",batch_interval:"Max Batch Interval",record_template:"Record Template"},kafka_consumer:{key_encoding_mode:"Key Encoding Mode",value_encoding_mode:"Value Encoding Mode",offset_reset_policy:"Offset Reset Policy",offset_commit_interval_seconds:"Offset Commit Interval",topic:"Kafka Topic"},rabbitmq:{exchange:"Exchange",routing_key:"Routing Key",delivery_mode:"Message Delivery Mode",wait_for_publish_confirmations:"Wait for Publish Confirmations",publish_confirmation_timeout:"Publish Confirmation Timeout",payload_template:"Payload Template"},pulsar:{pulsar_topic:"Pulsar Topic Name",strategy:"Partition Strategy",retention_period:"Retention Period",compression:"Compression",sync_timeout:"Sync Publish Timeout",send_buffer:"Socket Send Buffer Size",per_partition_limit:"Pulsar Per-partition Buffer Limit",message_key:"Message Key",message_value:"Message Value"},kinesis:{payload_template:"Payload template",stream_name:"Amazon Kinesis Stream",partition_key:"Partition key"},greptimedb:{write_syntax:"Write Syntax",precision:"Time Precision"},tdengine:{database:"Database Name"},rocketmq:{topic:"RocketMQ Topic",refresh_interval:"Topic Route Refresh Interval",send_buffer:"Send Buffer Size",sync_timeout:"Sync Timeout"},clickhouse:{batch_value_separator:"Batch Value Separator"},s3:{bucket:"Bucket",acl:"ACL",content:"Object Content",key:"Object Key"},dynamo:{table:"Table "}},r={common:{health_check_interval:"健康检查间隔",query_mode:"请求模式",max_retries:"最大重试次数",worker_pool_size:"缓存池大小",start_after_created:"创建后立即启动",start_timeout:"启动超时时间",request_ttl:"请求超期",inflight_window:"请求飞行队列窗口",max_buffer_bytes:"缓存队列最大长度",sql:"SQL 模板",batch_size:"最大批量请求大小",topic:"Kafka 主题名称",key:"消息的键",value:"消息的值",compression:"压缩",partition_strategy:"分区选择策略",kafka_headers:"Kafka Headers",kafka_ext_headers:"更多的 Kafka Headers",kafka_ext_header_key:"键",kafka_ext_header_value:"值",kafka_header_value_encode_mode:"Kafka Headers 值编码类型",max_batch_bytes:"最大批量字节数",required_acks:"Kafka 确认数量",partition_count_refresh_interval:"分区数量刷新间隔",max_inflight:"飞行窗口",mode:"缓存模式",per_partition_limit:"Kafka 分区缓存上限",segment_bytes:"缓存文件大小",memory_overload_protection:"内存过载保护",sync_query_timeout:"同步查询超时时间",template:"消息模板",partitions_limit:"分区限制"},kafka_producer:{timestamp:"消息的时间戳",kafka_ext_header_key:"Kafka Headers 键",kafka_ext_header_value:"Kafka Headers 值"},http:{body:"请求体",headers:"请求头",method:"请求方法",path:"URL 路径"},azure_event_hub_producer:{topic:"事件中心名称",key:"消息键",value:"消息值",partition_strategy:"分区策略",required_acks:"所需确认",kafka_headers:"Azure Event Hubs 头部",kafka_ext_headers:"额外的 Azure Event Hubs 头部信息",kafka_header_value_encode_mode:"Azure Event Hubs 头部值编码模式",partition_count_refresh_interval:"分区数刷新间隔",max_inflight:"最大传输数",mode:"缓冲区模式",per_partition_limit:"每个分区缓冲限制",segment_bytes:"段文件字节数",memory_overload_protection:"内存过载保护",max_batch_bytes:"最大批次字节数",query_mode:"查询模式"},gcp_pubsub_producer:{attributes_template:"属性模版",pubsub_topic:"GCP PubSub 主题",ordering_key_template:"排序键模板",payload_template:"HTTP 请求消息体模板"},gcp_pubsub_consumer:{topic:"GCP PubSub 主题"},syskeeper_forwarder:{target_topic:"主题",target_qos:"QoS"},redis:{command_template:"Redis 命令模板"},mongodb:{collection:"集合(Collection)",payload_template:"有效载荷模板"},iotdb:{device_id:"设备 ID",is_aligned:"对齐时间序列",data:"写入数据",timestamp:"时间戳",measurement:"字段",data_type:"数据类型",value:"值"},influxdb:{precision:"时间精度",write_syntax:"写语句"},mqtt:{topic:"主题",qos:"QoS",retain:"Retain",payload:"消息模版"},elasticsearch:{parameters:"操作",index:"索引名称",id:"文档 ID",doc:"文档模版",routing:"路由",overwrite:"是否覆盖文档",doc_as_upsert:"启用更新插入"},cassandra:{cql:"CQL 模板"},opents:{timestamp:"时间戳",metric:"度量",tags:"标签",value:"值",data:"写入数据"},hstreamdb:{stream:"Stream",partition_key:"分区键",grpc_flush_timeout:"gRPC 刷新间隔",aggregation_pool_size:"Record 聚合池大小",max_batches:"最大批次",writer_pool_size:"写入池大小",batch_interval:"最大批处理间隔",record_template:"Record 模板"},kafka_consumer:{key_encoding_mode:"Key 编码模式",value_encoding_mode:"Value 编码模式",offset_reset_policy:"偏移重置策略",offset_commit_interval_seconds:"偏移提交间隔",topic:"Kafka 主题名称"},rabbitmq:{exchange:"交换机",routing_key:"路由键",delivery_mode:"消息传递模式",wait_for_publish_confirmations:"等待发布确认",publish_confirmation_timeout:"发布确认超时时间",payload_template:"有效载荷模板"},pulsar:{pulsar_topic:"Pulsar 主题名称",strategy:"分区选择策略",retention_period:"消息保留时间",compression:"压缩",sync_timeout:"同步发布超时",send_buffer:"Socket 发送缓存大小",per_partition_limit:"Pulsar 分区缓存上限",message_key:"消息的 Key",message_value:"消息的 Value"},kinesis:{payload_template:"载荷模板",stream_name:"Amazon Kinesis 流",partition_key:"分区键"},greptimedb:{write_syntax:"写语法",precision:"时间精度"},tdengine:{database:"数据库名字"},rocketmq:{topic:"RocketMQ 主题",refresh_interval:"主题路由更新间隔",send_buffer:"发送消息的缓冲区大小",sync_timeout:"同步调用超时时间"},clickhouse:{batch_value_separator:"分隔符"},s3:{bucket:"存储桶",acl:"ACL",content:"对象内容",key:"对象键"},dynamo:{table:"表"}},s={common:{connect_timeout:"Connect Timeout",bootstrap_hosts:"Bootstrap Hosts",min_metadata_refresh_interval:"Min Metadata Refresh Interval",metadata_request_timeout:"Metadata Request Timeout",tcp_keepalive:"TCP Keepalive",sndbuf:"Socket Send Buffer Size",recbuf:"Socket Receive Buffer Size",nodelay:"No Delay",username:"Username",password:"Password",pool_size:"Connection Pool Size",pool_type:"Pool Type",server:"Server Host",database:"Database Name",health_check_interval:"Health Check Interval",start_timeout:"Start Timeout",max_retries:"Max Retries",worker_pool_size:"Buffer Pool Size",request_ttl:"Request TTL",max_buffer_bytes:"Max Buffer Queue Size",inflight_window:"Inflight Window",servers:"Servers",enable_pipelining:"HTTP Pipelining",url:"Server URL",authentication:"Authentication"},kafka_producer:{kerberos_principal:"Kerberos Principal",kerberos_keytab_file:"Kerberos Keytab File",mechanism:"Mechanism"},http:{url:"URL",headers:"Headers",enable_pipelining:"HTTP Pipelining"},gcp_pubsub_producer:{pipelining:"HTTP Pipelining",service_account_json:"GCP Service Account Credentials",query_mode:"Query Mode",batch_size:"Batch Size"},azure_event_hub_producer:{bootstrap_hosts:"Bootstrap Hosts",password:"Connection String"},syskeeper_forwarder:{ack_mode:"ACK Mode",ack_timeout:"ACK Timeout"},redis:{parameters:"Redis Mode",sentinel:"Sentinel Mode"},mongodb:{parameters:"MongoDB Mode",w_mode:"Write Mode",r_mode:"Read Mode",srv_record:"Srv Record",use_legacy_protocol:"Use Legacy Protocol",auth_source:"Auth Source",replica_set_name:"Replica Set Name",max_overflow:"Max Overflow Workers",overflow_ttl:"Overflow TTL",overflow_check_period:"Overflow Check Period",local_threshold_ms:"Local Threshold",connect_timeout_ms:"Connect Timeout",socket_timeout_ms:"Socket Timeout",server_selection_timeout_ms:"Server Selection Timeout",wait_queue_timeout_ms:"Wait Queue Timeout",heartbeat_frequency_ms:"Heartbeat period",min_heartbeat_frequency_ms:"Minimum Heartbeat Period"},influxdb:{parameters:"Version of InfluxDB",bucket:"Bucket",org:"Organization",token:"Token"},iotdb:{base_url:"IoTDB REST Service Base URL",iotdb_version:"IoTDB Version"},elasticsearch:{server:"Server"},mqtt:{server:"MQTT Broker",clientid_prefix:"ClientID Prefix",proto_ver:"MQTT Version",bridge_mode:"Bridge Mode",clean_start:"Clean start",keepalive:"Keepalive",retry_interval:"Message Retry Interval",max_inflight:"Max Inflight"},cassandra:{keyspace:"Keyspace"},opents:{summary:"Summary",details:"Details"},clickhouse:{url:"Server URL"},dynamo:{url:"DynamoDB Endpoint",aws_access_key_id:"AWS Access Key ID",aws_secret_access_key:"AWS Secret Access Key"},gcp_pubsub_consumer:{pipelining:"HTTP Pipelining",service_account_json:"GCP Service Account Credentials",pull_max_messages:"Maximum Messages to Pull"},hstreamdb:{grpc_timeout:"gRPC Timeout"},kafka_consumer:{kerberos_principal:"Kerberos Principal",kerberos_keytab_file:"Kerberos Keytab File",mechanism:"Mechanism"},rocketmq:{access_key:"AccessKey",secret_key:"SecretKey",security_token:"Security Token"},sqlserver:{driver:"SQL Server Driver Name"},oracle:{sid:"Oracle Database SID",service_name:"Oracle Database Service Name"},rabbitmq:{port:"Port",virtual_host:"Virtual Host",heartbeat:"Heartbeat",timeout:"Connection Timeout"},pulsar:{jwt:"JWT"},kinesis:{aws_access_key_id:"AWS Access Key ID",aws_secret_access_key:"AWS Secret Access Key",endpoint:"Amazon Kinesis Endpoint"},greptimedb:{dbname:"Database"},s3:{access_key_id:"Access Key ID",secret_access_key:"Secret Access Key",host:"Host",port:"Port",ipv6_probe:"IPv6 Probe",headers:"HTTP Headers",request_timeout:"Request Timeout"}},o={common:{connect_timeout:"连接超时",bootstrap_hosts:"主机列表",min_metadata_refresh_interval:"元数据刷新最小间隔",metadata_request_timeout:"元数据请求超时",tcp_keepalive:"TCP Keepalive",sndbuf:"Socket 发送缓存大小",recbuf:"Socket 收包缓存大小",nodelay:"是否关闭延迟发送",username:"用户名",password:"密码",pool_size:"连接池大小",pool_type:"连接池类型",server:"服务器地址",database:"数据库名字",health_check_interval:"健康检查间隔",start_timeout:"启动超时时间",max_retries:"最大重试次数",worker_pool_size:"缓存池大小",request_ttl:"请求超期",max_buffer_bytes:"缓存队列最大长度",inflight_window:"请求飞行队列窗口",servers:"服务器列表",enable_pipelining:"HTTP 流水线",url:"服务器地址",authentication:"认证"},kafka_producer:{kerberos_principal:"Kerberos Principal",kerberos_keytab_file:"Kerberos Keytab 文件",mechanism:"认证方法"},http:{url:"URL",headers:"请求头",enable_pipelining:"HTTP 管道"},gcp_pubsub_producer:{pipelining:"HTTP 流水线",service_account_json:"GCP 服务账户凭证",query_mode:"请求模式",batch_size:"最大批量请求大小"},azure_event_hub_producer:{bootstrap_hosts:"引导主机",password:"连接字符串"},syskeeper_forwarder:{ack_mode:"ACK 模式",ack_timeout:"ACK 超时"},redis:{parameters:"部署模式",sentinel:"哨兵模式"},mongodb:{parameters:"部署模式",w_mode:"写模式",r_mode:"读模式",srv_record:"SRV 记录",use_legacy_protocol:"使用旧协议",auth_source:"认证源",replica_set_name:"副本集名称",max_overflow:"最大溢出",overflow_ttl:"溢出 TTL",overflow_check_period:"溢出检查周期",local_threshold_ms:"本地阈值",connect_timeout_ms:"连接超时",socket_timeout_ms:"套接字操作超时",server_selection_timeout_ms:"服务器选择超时",wait_queue_timeout_ms:"等待队列超时",heartbeat_frequency_ms:"心跳期",min_heartbeat_frequency_ms:"最小心跳周期"},influxdb:{parameters:"InfluxDB 版本",bucket:"Bucket",org:"组织",token:"Token"},iotdb:{base_url:"IoTDB REST 服务基础 URL",iotdb_version:"IoTDB 版本"},elasticsearch:{server:"服务器地址"},mqtt:{server:"MQTT 服务地址",clientid_prefix:"客户端 ID 前缀",proto_ver:"MQTT 协议版本",bridge_mode:"桥接模式",clean_start:"清除会话",keepalive:"Keepalive",retry_interval:"消息重发间隔",max_inflight:"飞行窗口"},cassandra:{keyspace:"Keyspace"},opents:{summary:"摘要信息",details:"详细信息"},clickhouse:{url:"服务器 URL"},dynamo:{url:"DynamoDB 地址",aws_access_key_id:"连接访问 ID",aws_secret_access_key:"连接访问密钥"},gcp_pubsub_consumer:{pipelining:"HTTP 流水线",service_account_json:"GCP 服务账户凭证",pull_max_messages:"拉取的最大消息数"},hstreamdb:{grpc_timeout:"gRPC 超时"},kafka_consumer:{kerberos_principal:"Kerberos Principal",kerberos_keytab_file:"Kerberos Keytab 文件",mechanism:"认证方法"},rocketmq:{access_key:"AccessKey",secret_key:"SecretKey",security_token:"安全令牌"},sqlserver:{driver:"SQL Server Driver 名称"},oracle:{sid:"Oracle Database SID",service_name:"Oracle 数据库服务名称"},rabbitmq:{port:"端口",virtual_host:"虚拟主机",heartbeat:"心跳",timeout:"连接超时时间"},pulsar:{jwt:"JWT"},kinesis:{aws_access_key_id:"AWS 访问密钥 ID",aws_secret_access_key:"AWS 秘密访问密钥",endpoint:"Amazon Kinesis 端点"},greptimedb:{dbname:"数据库"},s3:{access_key_id:"访问密钥 ID",secret_access_key:"访问密钥",host:"地址",port:"端口",ipv6_probe:"IPv6 探针",headers:"请求头",request_timeout:"请求超时"}},i={authn:{mysql:"CREATE TABLE IF NOT EXISTS `mqtt_user` (\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT,\n `username` varchar(100) DEFAULT NULL,\n `password_hash` varchar(100) DEFAULT NULL,\n `salt` varchar(35) DEFAULT NULL,\n `is_superuser` tinyint(1) DEFAULT 0,\n `created` datetime DEFAULT NULL,\n PRIMARY KEY (`id`),\n UNIQUE KEY `mqtt_username` (`username`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;",postgresql:`CREATE TABLE mqtt_user (
|
|
29
29
|
id SERIAL primary key,
|
|
30
30
|
is_superuser boolean,
|
|
31
31
|
username character varying(100),
|
|
@@ -79,4 +79,4 @@ db.mqtt_acl.findOne({"username": "emqx_user"})`,redis:`# sample data
|
|
|
79
79
|
HSET mqtt_acl:emqx_u 't/#' subscribe
|
|
80
80
|
|
|
81
81
|
# sample cmd
|
|
82
|
-
HGETALL mqtt_acl:\${username}`}};e.SQLTemplates=t,e.authHelpCodeMap=i,e.enActionsLabel=a,e.enConnectorsLabel=s,e.zhActionsLabel=r,e.zhConnectorsLabel=o,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})});
|
|
82
|
+
HGETALL mqtt_acl:\${username}`}},n={async:"Async",sync:"Sync",get:"GET",post:"POST",delete:"DELETE",put:"PUT",producer:"Producer",consumer:"Consumer",ns:"nanosecond",us:"microsecond",ms:"millisecond",s:"second",none:"None",base64:"Base64",json:"JSON",authentication_auth_gssapi_kerberos:"Kerberos",authentication_auth_username_password:"Basic auth",authentication_auth_basic:"Basic auth",authentication_auth_token:"Token",authentication_none:"None",parameters_connector_single:"single",parameters_connector_rs:"rs",parameters_connector_sharded:"sharded",parameters_redis_single_connector:"single",parameters_redis_sentinel_connector:"rs",parameters_redis_cluster_connector:"sharded",parameters_connector_influxdb_api_v_1:"v1",parameters_connector_influxdb_api_v_2:"v2",parameters_action_update:"Update",parameters_action_delete:"Delete",parameters_action_create:"Create",all_partitions:"All Partitions",plain:"Plain",scram_sha_256:"SHA256",scram_sha_512:"SHA512",m:"minute",h:"hour",d:"day",no_compression:"No compression"},_={async:"异步",sync:"同步",get:"GET",post:"POST",delete:"DELETE",put:"PUT",producer:"生产者",consumer:"消费者",ns:"纳秒",us:"微秒",ms:"毫秒",s:"秒",none:"None",base64:"Base64",json:"JSON",authentication_auth_gssapi_kerberos:"Kerberos",authentication_auth_username_password:"基础认证",authentication_auth_basic:"基础认证",authentication_auth_token:"Token",authentication_none:"无",parameters_connector_single:"single",parameters_connector_rs:"rs",parameters_connector_sharded:"sharded",parameters_redis_single_connector:"single",parameters_redis_sentinel_connector:"sentinel",parameters_redis_cluster_connector:"cluster",parameters_connector_influxdb_api_v_1:"v1",parameters_connector_influxdb_api_v_2:"v2",parameters_action_update:"更新",parameters_action_delete:"删除",parameters_action_create:"创建",all_partitions:"所有分区",plain:"Plain",scram_sha_256:"SHA256",scram_sha_512:"SHA512",m:"分钟",h:"小时",d:"天",no_compression:"不压缩"};e.SQLTemplates=t,e.authHelpCodeMap=i,e.enActionsLabel=a,e.enConnectorsLabel=s,e.enSymbolLabel=n,e.zhActionsLabel=r,e.zhConnectorsLabel=o,e.zhSymbolLabel=_,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const zhSymbolLabel: Record<string, string>;
|