-
Notifications
You must be signed in to change notification settings - Fork 3
/
directory.json
1433 lines (1433 loc) · 35.5 KB
/
directory.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"cn": [
{
"title": "产品概览",
"children": [
{
"title": "EMQ X 消息服务器简介",
"path": "./"
},
{
"title": "EMQ X 消息服务器功能列表",
"path": "introduction/checklist"
}
]
},
{
"title": "开始使用",
"children": [
{
"title": "安装",
"path": "getting-started/install-ee"
},
{
"title": "启动 EMQ X",
"path": "getting-started/start"
},
{
"title": "基本命令",
"path": "getting-started/command-line"
},
{
"title": "分布式集群",
"path": "getting-started/cluster"
},
{
"title": "目录结构",
"path": "getting-started/directory"
},
{
"title": "配置说明",
"path": "getting-started/config"
},
{
"title": "日志与追踪",
"path": "getting-started/log"
},
{
"title": "Dashboard",
"path": "getting-started/dashboard-ee"
}
]
},
{
"title": "用户指南",
"children": [
{
"title": "认证鉴权",
"path": "advanced/auth"
},
{
"title": "发布订阅 ACL",
"path": "advanced/acl"
},
{
"title": "规则引擎",
"path": "rule/rule-engine"
},
{
"title": "数据存储",
"path": "backend/backend"
},
{
"title": "消息桥接",
"path": "bridge/bridge"
},
{
"title": "共享订阅",
"path": "advanced/shared-subscriptions"
},
{
"title": "$SYS 系统主题",
"path": "advanced/system-topic"
},
{
"title": "黑名单",
"path": "advanced/blacklist"
},
{
"title": "WebHook",
"path": "advanced/webhook"
},
{
"title": "分布集群",
"path": "advanced/cluster"
},
{
"title": "钩子",
"path": "advanced/hooks"
},
{
"title": "指标监控",
"path": "advanced/metrics-and-stats"
},
{
"title": "速率限制",
"path": "advanced/rate-limit"
},
{
"title": "飞行窗口与消息队列",
"path": "advanced/inflight-window-and-message-queue"
},
{
"title": "消息重传",
"path": "advanced/retransmission"
},
{
"title": "告警",
"path": "advanced/alarms"
},
{
"title": "数据导入导出",
"path": "advanced/data-import-and-export"
}
]
},
{
"title": "模块管理",
"children": [
{
"title": "模块介绍",
"path": "modules/modules"
},
{
"title": "内置访问控制",
"path": "modules/internal_acl"
},
{
"title": "MySQL 认证/访问控制",
"path": "modules/mysql_authentication"
},
{
"title": "PostgreSQL 认证/访问控制",
"path": "modules/pgsql_authentication"
},
{
"title": "Redis 认证/访问控制",
"path": "modules/redis_authentication"
},
{
"title": "HTTP 认证/访问控制",
"path": "modules/http_authentication"
},
{
"title": "内置数据库 认证/访问控制",
"path": "modules/mnesia_authentication"
},
{
"title": "MongoDB 认证/访问控制",
"path": "modules/mongo_authentication"
},
{
"title": "PKSFile 认证",
"path": "modules/psk_authentication"
},
{
"title": "LDAP 认证/访问控制",
"path": "modules/ldap_authentication"
},
{
"title": "JWT 认证",
"path": "modules/jwt_authentication"
},
{
"title": "LwM2M 网关",
"path": "modules/lwm2m_protocol"
},
{
"title": "MQTT-SN 网关",
"path": "modules/mqtt_sn_protocol"
},
{
"title": "TCP 网关",
"path": "modules/tcp_protocol"
},
{
"title": "JT/T808 网关",
"path": "modules/jt808_protocol"
},
{
"title": "GB/T32960 网关",
"path": "modules/gbt32960_protocol"
},
{
"title": "CoAP 网关",
"path": "modules/coap_protocol"
},
{
"title": "Stomp 网关",
"path": "modules/stomp_protocol"
},
{
"title": "Kafka 消费组",
"path": "modules/kafka_consumer"
},
{
"title": "Pulsar 消费组",
"path": "modules/pulsar_consumer"
},
{
"title": "MQTT Subscriber",
"path": "modules/mqtt_subscriber"
},
{
"title": "多语言扩展协议接入",
"path": "modules/exproto"
},
{
"title": "多语言扩展钩子",
"path": "modules/exhook"
},
{
"title": "Recon",
"path": "modules/recon"
},
{
"title": "EMQ X Prometheus Agent",
"path": "modules/prometheus"
},
{
"title": "热配置",
"path": "modules/hot_confs"
},
{
"title": "主题指标统计",
"path": "modules/topic_metrics"
},
{
"title": "MQTT 增强认证",
"path": "modules/auth_sasl"
},
{
"title": "上下线通知",
"path": "modules/presence"
},
{
"title": "MQTT 代理订阅",
"path": "modules/subscription"
},
{
"title": "主题重写",
"path": "modules/topic_rewrite"
},
{
"title": "MQTT 保留消息",
"path": "modules/retainer"
},
{
"title": "日志追踪",
"path": "modules/tracer"
},
{
"title": "慢订阅者统计",
"path": "modules/slow_subscribers_statistics"
},
{
"title": "MQTT 消息延迟发布",
"path": "modules/delayed_publish"
}
]
},
{
"title": "规则引擎",
"children": [
{
"title": "规则引擎",
"path": "rule/rule-engine"
},
{
"title": "创建规则",
"path": "rule/rule-create"
},
{
"title": "更新资源",
"path": "rule/how_to_update_resources"
},
{
"title": "检查 (调试)",
"path": "rule/rule-example"
},
{
"title": "数据存储",
"children": [
{
"title": "保存数据到 MySQL",
"path": "rule/backend_mysql"
},
{
"title": "保存数据到 PostgreSQL",
"path": "rule/backend_pgsql"
},
{
"title": "保存数据到 MongoDB",
"path": "rule/backend_mongodb"
},
{
"title": "保存数据到 Redis",
"path": "rule/backend_redis"
},
{
"title": "保存数据到 Cassandra",
"path": "rule/backend_cassandra"
},
{
"title": "保存数据到 DynamoDB",
"path": "rule/backend_dynamodb"
},
{
"title": "保存数据到 ClickHouse",
"path": "rule/backend_clickhouse"
},
{
"title": "保存数据到 OpenTSDB",
"path": "rule/backend_opentsdb"
},
{
"title": "保存数据到 InfluxDB",
"path": "rule/backend_influxdb"
},
{
"title": "保存数据到 InfluxDB V2",
"path": "rule/backend_influxdb_v2"
},
{
"title": "保存数据到 TimescaleDB",
"path": "rule/backend_timescaledb"
},
{
"title": "保存数据到 Oracle DB",
"path": "rule/backend_oracle"
},
{
"title": "保存数据到 SQLServer",
"path": "rule/backend_sqlserver"
},
{
"title": "保存数据到 DolphinDB",
"path": "rule/backend_dolphindb"
},
{
"title": "保存数据到 MatrixDB",
"path": "rule/backend_matrixdb"
},
{
"title": "保存数据到 TDengine",
"path": "rule/backend_tdengine"
},
{
"title": "保存数据到 Lindorm",
"path": "rule/backend_lindorm"
}
]
},
{
"title": "数据桥接",
"children": [
{
"title": "桥接数据到 Kafka",
"path": "rule/bridge_kafka"
},
{
"title": "桥接数据到 Pulsar",
"path": "rule/bridge_pulsar"
},
{
"title": "桥接数据到 RabbitMQ",
"path": "rule/bridge_rabbitmq"
},
{
"title": "桥接数据到 RocketMQ",
"path": "rule/bridge_rocketmq"
},
{
"title": "桥接数据到 SAP Event Mesh",
"path": "rule/bridge_sap_event_mesh"
},
{
"title": "桥接数据到 MQTT Broker",
"path": "rule/bridge_mqtt"
},
{
"title": "桥接数据到 EMQ X",
"path": "rule/bridge_emqx"
}
]
},
{
"title": "离线消息",
"children": [
{
"title": "离线消息保存到 Redis",
"path": "rule/offline_msg_to_redis"
},
{
"title": "离线消息保存到 MySQL",
"path": "rule/offline_msg_to_mysql"
},
{
"title": "离线消息保存到 PostgreSQL",
"path": "rule/offline_msg_to_pgsql"
},
{
"title": "离线消息保存到 Cassandra",
"path": "rule/offline_msg_to_cassandra"
},
{
"title": "离线消息保存到 MongoDB",
"path": "rule/offline_msg_to_mongodb"
},
{
"title": "离线消息保存到 ClickHouse",
"path": "rule/offline_msg_to_clickhouse"
}
]
},
{
"title": "获取订阅关系",
"children": [
{
"title": "从 Redis 中获取订阅关系",
"path": "rule/get_subs_from_redis"
},
{
"title": "从 MySQL 中获取订阅关系",
"path": "rule/get_subs_from_mysql"
},
{
"title": "从 PostgreSQL 中获取订阅关系",
"path": "rule/get_subs_from_pgsql"
},
{
"title": "从 Cassandra 中获取订阅关系",
"path": "rule/get_subs_from_cassandra"
},
{
"title": "从 MongoDB 中获取订阅关系",
"path": "rule/get_subs_from_mongodb"
},
{
"title": "从 ClickHouse 中获取订阅关系",
"path": "rule/get_subs_from_clickhouse"
}
]
},
{
"title": "编解码",
"path": "rule/schema-registry"
}
]
},
{
"title": "插件管理",
"children": [
{
"title": "插件介绍",
"path": "advanced/plugins"
},
{
"title": "数据存储插件",
"children": [
{
"title": "数据存储设计",
"path": "backend/backend"
},
{
"title": "Redis 数据存储",
"path": "backend/backend_redis"
},
{
"title": "MySQL 数据存储",
"path": "backend/backend_mysql"
},
{
"title": "PostgreSQL 数据存储",
"path": "backend/backend_pgsql"
},
{
"title": "MongoDB 消息存储",
"path": "backend/backend_mongodb"
},
{
"title": "Cassandra 消息存储",
"path": "backend/backend_cassandra"
},
{
"title": "DynamoDB 消息存储",
"path": "backend/backend_dynamodb"
},
{
"title": "InfluxDB 消息存储",
"path": "backend/backend_influxdb"
},
{
"title": "OpenTSDB 消息存储",
"path": "backend/backend_opentsdb"
},
{
"title": "Timescale 消息存储",
"path": "backend/backend_timescale"
}
]
},
{
"title": "消息桥接插件",
"children": [
{
"title": "消息桥接简介",
"path": "bridge/bridge"
},
{
"title": "MQTT 桥接",
"path": "bridge/bridge-mqtt"
},
{
"title": "RPC 桥接",
"path": "bridge/bridge-rpc"
},
{
"title": "Kafka 桥接",
"path": "bridge/bridge-kafka"
},
{
"title": "RabbitMQ 桥接",
"path": "bridge/bridge-rabbitmq"
},
{
"title": "Pulsar 桥接",
"path": "bridge/bridge-pulsar"
},
{
"title": "RocketMQ 桥接",
"path": "bridge/bridge-rocketmq"
}
]
}
]
},
{
"title": "运维操作",
"children": [
{
"title": "设备管理",
"path": "tutorial/device-management"
},
{
"title": "系统调优",
"path": "tutorial/tune"
},
{
"title": "生产部署",
"path": "tutorial/deploy"
},
{
"title": "Prometheus 监控告警",
"path": "tutorial/prometheus"
},
{
"title": "性能测试",
"path": "tutorial/benchmark"
}
]
},
{
"title": "HTTP API",
"path": "advanced/http-api"
},
{
"title": "参数配置",
"children": [
{
"title": "参数配置列表",
"path": "configuration/configuration"
},
{
"title": "环境变量",
"path": "configuration/environment-variable"
}
]
},
{
"title": "命令行接口",
"children": [
{
"title": "命令行",
"path": "advanced/cli"
}
]
},
{
"title": "版本热升级",
"path": "advanced/relup"
},
{
"title": "FAQ 常见问题解答",
"children": [
{
"title": "入门概念",
"path": "faq/faq"
},
{
"title": "使用教程",
"path": "faq/use-guide"
},
{
"title": "安装部署",
"path": "faq/deployment"
},
{
"title": "常见错误",
"path": "faq/error"
},
{
"title": "商业服务",
"path": "faq/enterprise"
},
{
"title": "FAQ 标签",
"path": "faq/tags"
}
]
},
{
"title": "SDK & Tools",
"children": [
{
"title": "MQTT Client Library",
"path": "development/client"
},
{
"title": "MQTT C Client Library",
"path": "development/c"
},
{
"title": "MQTT Java Client Library",
"path": "development/java"
},
{
"title": "MQTT Go Client Library",
"path": "development/go"
},
{
"title": "MQTT Erlang Client Library",
"path": "development/erlang"
},
{
"title": "MQTT JavaScript Client Library",
"path": "development/javascript"
},
{
"title": "MQTT Python Client Library",
"path": "development/python"
},
{
"title": "MQTT 微信小程序接入",
"path": "development/wechat-miniprogram"
},
{
"title": "其他资源",
"path": "development/resource"
}
]
},
{
"title": "协议介绍",
"children": [
{
"title": "MQTT 协议",
"path": "development/protocol"
},
{
"title": "LwM2M 网关",
"path": "modules/lwm2m_protocol"
},
{
"title": "MQTT-SN 网关",
"path": "modules/mqtt_sn_protocol"
},
{
"title": "TCP 网关",
"path": "modules/tcp_protocol"
},
{
"title": "JT/T808 网关",
"path": "modules/jt808_protocol"
},
{
"title": "CoAP 网关",
"path": "modules/coap_protocol"
},
{
"title": "Stomp 网关",
"path": "modules/stomp_protocol"
}
]
},
{
"title": "版本发布",
"children": [
{
"title": "变更日志",
"path": "changes/changes-ee-4.4"
},
{
"title": "生命周期 EOL",
"path": "changes/eol-ee"
},
{
"title": "升级指南",
"path": "changes/upgrade-4.4"
}
]
},
{
"title": "相关资料",
"children": [
{
"title": "架构设计",
"path": "design/design"
},
{
"title": "资源",
"path": "awesome/awesome"
}
]
}
],
"en": [
{
"title": "Introduction",
"children": [
{
"title": "EMQ X Broker",
"path": "./"
},
{
"title": "Features List",
"path": "introduction/checklist"
}
]
},
{
"title": "Get Started",
"children": [
{
"title": "Installation",
"path": "getting-started/install-ee"
},
{
"title": "Start EMQ X",
"path": "getting-started/start"
},
{
"title": "Basic Command",
"path": "getting-started/command-line"
},
{
"title": "Distributed Cluster",
"path": "getting-started/cluster"
},
{
"title": "Directory",
"path": "getting-started/directory"
},
{
"title": "Configuration",
"path": "getting-started/config"
},
{
"title": "Log & Trace",
"path": "getting-started/log"
},
{
"title": "Dashboard",
"path": "getting-started/dashboard-ee"
}
]
},
{
"title": "User Guide",
"children": [
{
"title": "Authentication",
"path": "advanced/auth"
},
{
"title": "ACL",
"path": "advanced/acl"
},
{
"title": "Rule Engine",
"path": "rule/rule-engine"
},
{
"title": "Backend",
"path": "backend/backend"
},
{
"title": "Bridge",
"path": "bridge/bridge"
},
{
"title": "Shared subscription",
"path": "advanced/shared-subscriptions"
},
{
"title": "$SYS - System Topic",
"path": "advanced/system-topic"
},
{
"title": "Blacklist",
"path": "advanced/blacklist"
},
{
"title": "WebHook",
"path": "advanced/webhook"
},
{
"title": "Distributed Cluster",
"path": "advanced/cluster"
},
{
"title": "Hook",
"path": "advanced/hooks"
},
{
"title": "Metrics",
"path": "advanced/metrics-and-stats"
},
{
"title": "Rate limit",
"path": "advanced/rate-limit"
},
{
"title": "Inflight and Queue",
"path": "advanced/inflight-window-and-message-queue"
},
{
"title": "Message retransmission",
"path": "advanced/retransmission"
},
{
"title": "Alarm",
"path": "advanced/alarms"
},
{
"title": "Import/Export Data",
"path": "advanced/data-import-and-export"
}
]
},
{
"title": "Modules",
"children": [
{
"title": "Modules Introduction",
"path": "modules/modules"
},
{
"title": "Internal ACL",
"path": "modules/internal_acl"
},
{
"title": "MySQL AUTH/ACL",
"path": "modules/mysql_authentication"
},
{
"title": "PostgreSQL AUTH/ACL",
"path": "modules/pgsql_authentication"
},
{
"title": "Redis AUTH/ACL",
"path": "modules/redis_authentication"
},
{
"title": "HTTP AUTH/ACL",
"path": "modules/http_authentication"
},
{
"title": "Builtin DB AUTH/ACL",
"path": "modules/mnesia_authentication"
},
{
"title": "MongoDB AUTH/ACL",
"path": "modules/mongo_authentication"
},
{
"title": "PKSFile AUTH",
"path": "modules/psk_authentication"
},
{
"title": "LDAP AUTH/ACL",
"path": "modules/ldap_authentication"
},
{
"title": "JWT AUTH",
"path": "modules/jwt_authentication"
},
{
"title": "LwM2M Gateway",
"path": "modules/lwm2m_protocol"
},
{
"title": "MQTT-SN Gateway",
"path": "modules/mqtt_sn_protocol"
},
{
"title": "TCP Gateway",
"path": "modules/tcp_protocol"
},
{
"title": "JT/T808 Gateway",
"path": "modules/jt808_protocol"
},
{
"title": "CoAP Gateway",
"path": "modules/coap_protocol"
},
{
"title": "Stomp Gateway",
"path": "modules/stomp_protocol"
},
{
"title": "Kafka Consumer Group",
"path": "modules/kafka_consumer"
},
{
"title": "Pulsar Consumer Group",
"path": "modules/pulsar_consumer"
},
{
"title": "MQTT Subscriber",
"path": "modules/mqtt_subscriber"
},
{
"title": "Extension Language Gateway",
"path": "modules/exproto"
},
{
"title": "Extension Language hook",
"path": "modules/exhook"
},
{
"title": "Recon",
"path": "modules/recon"
},
{
"title": "EMQ X Prometheus Agent",
"path": "modules/prometheus"
},
{
"title": "Topic metrics",
"path": "modules/topic_metrics"
},
{
"title": "MQTT Enhanced Auth",
"path": "modules/auth_sasl"
},
{
"title": "Presence",
"path": "modules/presence"
},
{
"title": "MQTT Subscription",
"path": "modules/subscription"
},
{
"title": "Topic Rewrite",
"path": "modules/topic_rewrite"
},
{
"title": "MQTT Retainer",
"path": "modules/retainer"
},
{
"title": "Log Tracer",
"path": "modules/tracer"
},
{
"title": "Slow Subscriber Statistics",
"path": "modules/slow_subscribers_statistics"
},
{
"title": "MQTT Delayed Publish",
"path": "modules/delayed_publish"
}
]
},
{
"title": "Rule Engine",
"children": [
{