directory.json 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357
  1. {
  2. "cn": [
  3. {
  4. "title": "概览",
  5. "path": "./",
  6. "children": [
  7. {
  8. "title": "架构和设计",
  9. "path": "concepts/ekuiper"
  10. },
  11. {
  12. "title": "流式处理",
  13. "path": "concepts/streaming/overview",
  14. "children": [
  15. {
  16. "title": "时间属性",
  17. "path": "concepts/streaming/time"
  18. },
  19. {
  20. "title": "窗口",
  21. "path": "concepts/streaming/windowing"
  22. },
  23. {
  24. "title": "连接",
  25. "path": "concepts/streaming/join"
  26. }
  27. ]
  28. },
  29. {
  30. "title": "关键概念",
  31. "children": [
  32. {
  33. "title": "规则",
  34. "path": "concepts/rules"
  35. },
  36. {
  37. "title": "Sources 源",
  38. "path": "concepts/sources/overview",
  39. "children": [
  40. {
  41. "title": "流",
  42. "path": "concepts/sources/stream"
  43. },
  44. {
  45. "title": "表",
  46. "path": "concepts/sources/table"
  47. }
  48. ]
  49. },
  50. {
  51. "title": "Sinks 动作",
  52. "path": "concepts/sinks"
  53. },
  54. {
  55. "title": "SQL 查询",
  56. "path": "concepts/sql"
  57. },
  58. {
  59. "title": "扩展",
  60. "path": "concepts/extensions"
  61. }
  62. ]
  63. },
  64. {
  65. "title": "贡献",
  66. "path": "CONTRIBUTING"
  67. }
  68. ]
  69. },
  70. {
  71. "title": "快速开始",
  72. "path": "getting_started/getting_started",
  73. "children": [
  74. {
  75. "title": "5分钟快速运行",
  76. "path": "getting_started/quick_start_docker"
  77. },
  78. {
  79. "title": "作为 EdgeX Foundry 规则引擎运行",
  80. "path": "edgex/edgex_rule_engine_tutorial"
  81. },
  82. {
  83. "title": "如何调试规则",
  84. "path": "getting_started/debug_rules"
  85. }
  86. ]
  87. },
  88. {
  89. "title": "安装与部署",
  90. "path": "installation"
  91. },
  92. {
  93. "title": "规则",
  94. "path": "guide/rules/overview",
  95. "children": [
  96. {
  97. "title": "流:无界的事件系列",
  98. "path": "guide/streams/overview"
  99. },
  100. {
  101. "title": "表:事件序列的快照",
  102. "path": "guide/tables/overview",
  103. "children": [
  104. {
  105. "title": "扫描表",
  106. "path": "guide/tables/scan"
  107. },
  108. {
  109. "title": "查询表",
  110. "path": "guide/tables/lookup"
  111. }
  112. ]
  113. },
  114. {
  115. "title": "图规则",
  116. "path": "guide/rules/graph_rule"
  117. },
  118. {
  119. "title": "规则流水线",
  120. "path": "guide/rules/rule_pipeline"
  121. },
  122. {
  123. "title": "状态和容错",
  124. "path": "guide/rules/state_and_fault_tolerance"
  125. },
  126. {
  127. "title": "序列化",
  128. "path": "guide/serialization/serialization",
  129. "children": [
  130. {
  131. "title": "使用 Protobuf 编解码教程",
  132. "path": "guide/serialization/protobuf_tutorial"
  133. }
  134. ]
  135. },
  136. {
  137. "title": "AI/ML",
  138. "children": [
  139. {
  140. "title": "使用原生插件实现 AI 函数",
  141. "path": "guide/ai/tensorflow_lite_tutorial"
  142. },
  143. {
  144. "title": "使用 Python 插件实现 AI 函数",
  145. "path": "guide/ai/python_tensorflow_lite_tutorial"
  146. },
  147. {
  148. "title": "使用 Python 插件实现 OpenVINO 函数",
  149. "path": "guide/ai/python_openvino_tutorial"
  150. },
  151. {
  152. "title": "使用 tensorflow_lite 原生插件调用 AI 模型",
  153. "path": "guide/ai/tensorflow_lite"
  154. },
  155. {
  156. "title": "使用外部函数调用 tensorflow_lite AI 模型",
  157. "path": "guide/ai/tensorflow_lite_external_function_tutorial"
  158. }
  159. ]
  160. }
  161. ]
  162. },
  163. {
  164. "title": "数据连接",
  165. "path": "guide/connector",
  166. "children": [
  167. {
  168. "title": "数据源",
  169. "path": "guide/sources/overview",
  170. "children": [
  171. {
  172. "title": "内置源",
  173. "children": [
  174. {
  175. "title": "MQTT 数据源",
  176. "path": "guide/sources/builtin/mqtt"
  177. },
  178. {
  179. "title": "Neuron 数据源",
  180. "path": "guide/sources/builtin/neuron"
  181. },
  182. {
  183. "title": "EdgeX 数据源",
  184. "path": "guide/sources/builtin/edgex"
  185. },
  186. {
  187. "title": "HTTP Pull 数据源",
  188. "path": "guide/sources/builtin/http_pull"
  189. },
  190. {
  191. "title": "HTTP Push 数据源",
  192. "path": "guide/sources/builtin/http_push"
  193. },
  194. {
  195. "title": "文件数据源",
  196. "path": "guide/sources/builtin/file"
  197. },
  198. {
  199. "title": "内存数据源",
  200. "path": "guide/sources/builtin/memory"
  201. },
  202. {
  203. "title": "Redis 数据源",
  204. "path": "guide/sources/builtin/redis"
  205. }
  206. ]
  207. },
  208. {
  209. "title": "预定义插件源",
  210. "children": [
  211. {
  212. "title": "SQL 数据源",
  213. "path": "guide/sources/plugin/sql"
  214. },
  215. {
  216. "title": "视频数据源",
  217. "path": "guide/sources/plugin/video"
  218. },
  219. {
  220. "title": "Zero MQ 数据源",
  221. "path": "guide/sources/plugin/zmq"
  222. },
  223. {
  224. "title": "随机数据产生器源",
  225. "path": "guide/sources/plugin/random"
  226. }
  227. ]
  228. }
  229. ]
  230. },
  231. {
  232. "title": "数据汇(Sink)",
  233. "path": "guide/sinks/overview",
  234. "children": [
  235. {
  236. "title": "数据模板",
  237. "path": "guide/sinks/data_template"
  238. },
  239. {
  240. "title": "内置 Sink",
  241. "children": [
  242. {
  243. "title": "MQTT Sink",
  244. "path": "guide/sinks/builtin/mqtt"
  245. },
  246. {
  247. "title": "Neuron Sink",
  248. "path": "guide/sinks/builtin/neuron"
  249. },
  250. {
  251. "title": "EdgeX Sink",
  252. "path": "guide/sinks/builtin/edgex"
  253. },
  254. {
  255. "title": "REST Sink",
  256. "path": "guide/sinks/builtin/rest"
  257. },
  258. {
  259. "title": "Redis Sink",
  260. "path": "guide/sinks/builtin/redis"
  261. },
  262. {
  263. "title": "File Sink",
  264. "path": "guide/sinks/builtin/file"
  265. },
  266. {
  267. "title": "Memory Sink",
  268. "path": "guide/sinks/builtin/memory"
  269. },
  270. {
  271. "title": "Log Sink",
  272. "path": "guide/sinks/builtin/log"
  273. },
  274. {
  275. "title": "Nop Sink",
  276. "path": "guide/sinks/builtin/nop"
  277. }
  278. ]
  279. },
  280. {
  281. "title": "预定义插件 Sink",
  282. "children": [
  283. {
  284. "title": "SQL Sink",
  285. "path": "guide/sinks/plugin/sql"
  286. },
  287. {
  288. "title": "InfluxDB Sink",
  289. "path": "guide/sinks/plugin/influx"
  290. },
  291. {
  292. "title": "InfluxDBV2 Sink",
  293. "path": "guide/sinks/plugin/influx2"
  294. },
  295. {
  296. "title": "TDengine Sink",
  297. "path": "guide/sinks/plugin/tdengine"
  298. },
  299. {
  300. "title": "Image Sink",
  301. "path": "guide/sinks/plugin/image"
  302. },
  303. {
  304. "title": "ZeroMQ Sink",
  305. "path": "guide/sinks/plugin/zmq"
  306. },
  307. {
  308. "title": "Kafka Sink",
  309. "path": "guide/sinks/plugin/kafka"
  310. }
  311. ]
  312. }
  313. ]
  314. }
  315. ]
  316. },
  317. {
  318. "title": "案例集锦",
  319. "path": "example/overview",
  320. "children": [
  321. {
  322. "title": "数据合并",
  323. "path": "example/howto",
  324. "children": [
  325. {
  326. "title": "合并单流多设备数据",
  327. "path": "example/data_merge/merge_single_stream"
  328. }
  329. ]
  330. }
  331. ]
  332. },
  333. {
  334. "title": "管理指南",
  335. "children": [
  336. {
  337. "title": "配置",
  338. "path": "configuration/configuration",
  339. "children": [
  340. {
  341. "title": "全局配置文件",
  342. "path": "configuration/global_configurations"
  343. }
  344. ]
  345. },
  346. {
  347. "title": "管理控制台",
  348. "children": [
  349. {
  350. "title": "使用教程",
  351. "path": "operation/manager-ui/overview"
  352. },
  353. {
  354. "title": "插件管理",
  355. "path": "operation/manager-ui/plugins_in_manager"
  356. }
  357. ]
  358. },
  359. {
  360. "title": "监控",
  361. "path": "operation/usage/monitor_with_prometheus"
  362. }
  363. ]
  364. },
  365. {
  366. "title": "应用场景",
  367. "path": "usecases/overview",
  368. "children": [
  369. {
  370. "title": "工业物联网",
  371. "path": "usecases/iiot"
  372. },
  373. {
  374. "title": "车联网",
  375. "path": "usecases/iov"
  376. },
  377. {
  378. "title": "公共数据分析应用",
  379. "path": "usecases/public_data_analysis"
  380. }
  381. ]
  382. },
  383. {
  384. "title": "生态集成",
  385. "children": [
  386. {
  387. "title": "边云协同",
  388. "path": "integrations/edge_cloud/overview"
  389. },
  390. {
  391. "title": "EdgeX Foundry 的规则引擎",
  392. "children": [
  393. {
  394. "title": "EdgeX Foundry 规则引擎教程",
  395. "path": "edgex/edgex_rule_engine_tutorial"
  396. },
  397. {
  398. "title": "使用 EdgeX 流的 meta 函数",
  399. "path": "edgex/edgex_meta"
  400. },
  401. {
  402. "title": "EdgeX 规则引擎使用 command 服务",
  403. "path": "edgex/edgex_rule_engine_command"
  404. },
  405. {
  406. "title": "EdgeX 源配置教程",
  407. "path": "edgex/edgex_source_tutorial"
  408. }
  409. ]
  410. },
  411. {
  412. "title": "分析处理 Neuron 采集的数据",
  413. "path": "integrations/neuron/neuron_integration_tutorial"
  414. },
  415. {
  416. "title": "KubeEdge 的分析引擎",
  417. "path": "integrations/kubeedge/overview"
  418. },
  419. {
  420. "title": "使用 OpenYurt 部署",
  421. "path": "integrations/deploy/openyurt_tutorial"
  422. }
  423. ]
  424. },
  425. {
  426. "title": "Rest API 参考",
  427. "path": "api/restapi/overview",
  428. "children": [
  429. {
  430. "title": "认证配置",
  431. "path": "api/restapi/authentication"
  432. },
  433. {
  434. "title": "流管理",
  435. "path": "api/restapi/streams"
  436. },
  437. {
  438. "title": "表管理",
  439. "path": "api/restapi/tables"
  440. },
  441. {
  442. "title": "规则管理",
  443. "path": "api/restapi/rules"
  444. },
  445. {
  446. "title": "插件管理",
  447. "path": "api/restapi/plugins"
  448. },
  449. {
  450. "title": "源配置项管理",
  451. "path": "api/restapi/configKey"
  452. },
  453. {
  454. "title": "外部函数管理",
  455. "path": "api/restapi/services"
  456. },
  457. {
  458. "title": "模式管理",
  459. "path": "api/restapi/schemas"
  460. },
  461. {
  462. "title": "上传文件管理",
  463. "path": "api/restapi/uploads"
  464. },
  465. {
  466. "title": "规则集管理",
  467. "path": "api/restapi/ruleset"
  468. },
  469. {
  470. "title": "数据导入导出",
  471. "path": "api/restapi/data"
  472. }
  473. ]
  474. },
  475. {
  476. "title": "命令行工具",
  477. "path": "api/cli/overview",
  478. "children": [
  479. {
  480. "title": "流管理",
  481. "path": "api/cli/streams"
  482. },
  483. {
  484. "title": "表管理",
  485. "path": "api/cli/tables"
  486. },
  487. {
  488. "title": "规则管理",
  489. "path": "api/cli/rules"
  490. },
  491. {
  492. "title": "插件管理",
  493. "path": "api/cli/plugins"
  494. },
  495. {
  496. "title": "外部服务",
  497. "path": "api/cli/services"
  498. },
  499. {
  500. "title": "模式管理",
  501. "path": "api/cli/schemas"
  502. },
  503. {
  504. "title": "规则集管理",
  505. "path": "api/cli/ruleset"
  506. },
  507. {
  508. "title": "数据导入导出",
  509. "path": "api/cli/data"
  510. }
  511. ]
  512. },
  513. {
  514. "title": "扩展开发指南",
  515. "path": "extension/overview",
  516. "children": [
  517. {
  518. "title": "原生插件开发",
  519. "path": "extension/native/overview",
  520. "children": [
  521. {
  522. "title": "原生插件开发",
  523. "path": "extension/native/develop/overview"
  524. },
  525. {
  526. "title": "插件开发教程",
  527. "path": "extension/native/develop/plugins_tutorial"
  528. },
  529. {
  530. "title": "函数插件开发",
  531. "path": "extension/native/develop/function"
  532. },
  533. {
  534. "title": "Sink 插件开发",
  535. "path": "extension/native/develop/sink"
  536. },
  537. {
  538. "title": "源插件开发",
  539. "path": "extension/native/develop/source"
  540. }
  541. ]
  542. },
  543. {
  544. "title": "Portable 插件开发",
  545. "path": "extension/portable/overview",
  546. "children": [
  547. {
  548. "title": "Portable 插件 Go 语言 SDK",
  549. "path": "extension/portable/go_sdk"
  550. },
  551. {
  552. "title": "Portable 插件 Python 语言 SDK",
  553. "path": "extension/portable/python_sdk"
  554. }
  555. ]
  556. },
  557. {
  558. "title": "外部函数",
  559. "path": "extension/external/external_func"
  560. },
  561. {
  562. "title": "Wasm 函数 (beta)",
  563. "path": "extension/wasm/overview"
  564. }
  565. ]
  566. },
  567. {
  568. "title": "SQL 参考",
  569. "path": "sqls/overview",
  570. "children": [
  571. {
  572. "title": "语句",
  573. "children": [
  574. {
  575. "title": "流语句",
  576. "path": "sqls/streams"
  577. },
  578. {
  579. "title": "表语句",
  580. "path": "sqls/tables"
  581. },
  582. {
  583. "title": "查询语句",
  584. "path": "sqls/query_language_elements"
  585. }
  586. ]
  587. },
  588. {
  589. "title": "语法",
  590. "path": "sqls/overview",
  591. "children": [
  592. {
  593. "title": "词汇元素",
  594. "path": "sqls/lexical_elements"
  595. },
  596. {
  597. "title": "数据类型",
  598. "path": "sqls/data_types"
  599. },
  600. {
  601. "title": "JSON 表达式",
  602. "path": "sqls/json_expr"
  603. }
  604. ]
  605. },
  606. {
  607. "title": "函数",
  608. "path": "sqls/functions/overview",
  609. "children": [
  610. {
  611. "title": "聚合函数",
  612. "path": "sqls/functions/aggregate_functions"
  613. },
  614. {
  615. "title": "数学函数",
  616. "path": "sqls/functions/mathematical_functions"
  617. },
  618. {
  619. "title": "字符串函数",
  620. "path": "sqls/functions/string_functions"
  621. },
  622. {
  623. "title": "数组函数",
  624. "path": "sqls/functions/array_functions"
  625. },
  626. {
  627. "title": "对象函数",
  628. "path": "sqls/functions/object_functions"
  629. },
  630. {
  631. "title": "哈希函数",
  632. "path": "sqls/functions/hashing_functions"
  633. },
  634. {
  635. "title": "转换函数",
  636. "path": "sqls/functions/transform_functions"
  637. },
  638. {
  639. "title": "JSON 函数",
  640. "path": "sqls/functions/json_functions"
  641. },
  642. {
  643. "title": "时间日期函数",
  644. "path": "sqls/functions/datetime_functions"
  645. },
  646. {
  647. "title": "其他函数",
  648. "path": "sqls/functions/other_functions"
  649. },
  650. {
  651. "title": "分析函数",
  652. "path": "sqls/functions/analytic_functions"
  653. },
  654. {
  655. "title": "多行函数",
  656. "path": "sqls/functions/multi_row_functions"
  657. },
  658. {
  659. "title": "多列函数",
  660. "path": "sqls/functions/multi_column_functions"
  661. },
  662. {
  663. "title": "预定义函数插件",
  664. "path": "sqls/functions/custom_functions"
  665. },
  666. {
  667. "title": "窗口函数",
  668. "path": "sqls/functions/window_funcs"
  669. }
  670. ]
  671. },
  672. {
  673. "title": "窗口",
  674. "path": "sqls/windows"
  675. }
  676. ]
  677. }
  678. ],
  679. "en": [
  680. {
  681. "title": "Introduction",
  682. "path": "./",
  683. "children": [
  684. {
  685. "title": "Architecture",
  686. "path": "concepts/ekuiper"
  687. },
  688. {
  689. "title": "Stream Processing",
  690. "path": "concepts/streaming/overview",
  691. "children": [
  692. {
  693. "title": "Time Attribute",
  694. "path": "concepts/streaming/time"
  695. },
  696. {
  697. "title": "Windowing",
  698. "path": "concepts/streaming/windowing"
  699. },
  700. {
  701. "title": "Join",
  702. "path": "concepts/streaming/join"
  703. }
  704. ]
  705. },
  706. {
  707. "title": "Key Concepts",
  708. "children": [
  709. {
  710. "title": "Rules",
  711. "path": "concepts/rules"
  712. },
  713. {
  714. "title": "Sources",
  715. "path": "concepts/sources/overview",
  716. "children": [
  717. {
  718. "title": "Stream",
  719. "path": "concepts/sources/stream"
  720. },
  721. {
  722. "title": "Table",
  723. "path": "concepts/sources/table"
  724. }
  725. ]
  726. },
  727. {
  728. "title": "Sinks",
  729. "path": "concepts/sinks"
  730. },
  731. {
  732. "title": "SQL Queries",
  733. "path": "concepts/sql"
  734. },
  735. {
  736. "title": "Extensions",
  737. "path": "concepts/extensions"
  738. }
  739. ]
  740. },
  741. {
  742. "title": "Contribute",
  743. "path": "CONTRIBUTING"
  744. }
  745. ]
  746. },
  747. {
  748. "title": "Getting Started",
  749. "path": "getting_started/getting_started",
  750. "children": [
  751. {
  752. "title": "5 Minutes Quick Start",
  753. "path": "getting_started/quick_start_docker"
  754. },
  755. {
  756. "title": "Run eKuiper with EdgeX Foundry",
  757. "path": "edgex/edgex_rule_engine_tutorial"
  758. },
  759. {
  760. "title": "How to Debug Rules",
  761. "path": "getting_started/debug_rules"
  762. }
  763. ]
  764. },
  765. {
  766. "title": "Installation",
  767. "path": "installation"
  768. },
  769. {
  770. "title": "Rules",
  771. "path": "guide/rules/overview",
  772. "children": [
  773. {
  774. "title": "Stream: unbounded series of events",
  775. "path": "guide/streams/overview"
  776. },
  777. {
  778. "title": "Table: snapshot of events",
  779. "path": "guide/tables/overview",
  780. "children": [
  781. {
  782. "title": "Scan Table",
  783. "path": "guide/tables/scan"
  784. },
  785. {
  786. "title": "Lookup Table",
  787. "path": "guide/tables/lookup"
  788. }
  789. ]
  790. },
  791. {
  792. "title": "Graph Rule",
  793. "path": "guide/rules/graph_rule"
  794. },
  795. {
  796. "title": "Rule Pipeline",
  797. "path": "guide/rules/rule_pipeline"
  798. },
  799. {
  800. "title": "State and Fault Tolerance",
  801. "path": "guide/rules/state_and_fault_tolerance"
  802. },
  803. {
  804. "title": "Serialization",
  805. "path": "guide/serialization/serialization",
  806. "children": [
  807. {
  808. "title": "Protobuf Codec Tutorial",
  809. "path": "guide/serialization/protobuf_tutorial"
  810. }
  811. ]
  812. },
  813. {
  814. "title": "AI/ML",
  815. "children": [
  816. {
  817. "title": "Running AI Algorithms with Native Plugin",
  818. "path": "guide/ai/tensorflow_lite_tutorial"
  819. },
  820. {
  821. "title": "Running AI Algorithms with Python Function Plugin",
  822. "path": "guide/ai/python_tensorflow_lite_tutorial"
  823. },
  824. {
  825. "title": "Running OpenVINO Algorithms with Python Function Plugin",
  826. "path": "guide/ai/python_openvino_tutorial"
  827. },
  828. {
  829. "title": "Running AI Model with TensorFlow Lite Function Plugin",
  830. "path": "guide/ai/tensorflow_lite"
  831. },
  832. {
  833. "title": "Running tensorflow_lite AI Model with External Function",
  834. "path": "guide/ai/tensorflow_lite_external_function_tutorial"
  835. }
  836. ]
  837. }
  838. ]
  839. },
  840. {
  841. "title": "Connectors",
  842. "path": "guide/connector",
  843. "children": [
  844. {
  845. "title": "Source Connector",
  846. "path": "guide/sources/overview",
  847. "children": [
  848. {
  849. "title": "Built-in Sources",
  850. "children": [
  851. {
  852. "title": "MQTT Source",
  853. "path": "guide/sources/builtin/mqtt"
  854. },
  855. {
  856. "title": "Neuron Source",
  857. "path": "guide/sources/builtin/neuron"
  858. },
  859. {
  860. "title": "EdgeX Source",
  861. "path": "guide/sources/builtin/edgex"
  862. },
  863. {
  864. "title": "HTTP Pull Source",
  865. "path": "guide/sources/builtin/http_pull"
  866. },
  867. {
  868. "title": "HTTP Push Source",
  869. "path": "guide/sources/builtin/http_push"
  870. },
  871. {
  872. "title": "File Source",
  873. "path": "guide/sources/builtin/file"
  874. },
  875. {
  876. "title": "Memory Source",
  877. "path": "guide/sources/builtin/memory"
  878. },
  879. {
  880. "title": "Redis Source",
  881. "path": "guide/sources/builtin/redis"
  882. }
  883. ]
  884. },
  885. {
  886. "title": "Predefined Source Plugins",
  887. "children": [
  888. {
  889. "title": "SQL Source",
  890. "path": "guide/sources/plugin/sql"
  891. },
  892. {
  893. "title": "Video Source",
  894. "path": "guide/sources/plugin/video"
  895. },
  896. {
  897. "title": "Zero MQ Source",
  898. "path": "guide/sources/plugin/zmq"
  899. },
  900. {
  901. "title": "Random Source",
  902. "path": "guide/sources/plugin/random"
  903. }
  904. ]
  905. }
  906. ]
  907. },
  908. {
  909. "title": "Sink Connectors",
  910. "path": "guide/sinks/overview",
  911. "children": [
  912. {
  913. "title": "Data Template",
  914. "path": "guide/sinks/data_template"
  915. },
  916. {
  917. "title": "Built-in Sinks",
  918. "children": [
  919. {
  920. "title": "MQTT Sink",
  921. "path": "guide/sinks/builtin/mqtt"
  922. },
  923. {
  924. "title": "Neuron Sink",
  925. "path": "guide/sinks/builtin/neuron"
  926. },
  927. {
  928. "title": "EdgeX Sink",
  929. "path": "guide/sinks/builtin/edgex"
  930. },
  931. {
  932. "title": "REST Sink",
  933. "path": "guide/sinks/builtin/rest"
  934. },
  935. {
  936. "title": "Redis Sink",
  937. "path": "guide/sinks/builtin/redis"
  938. },
  939. {
  940. "title": "File Sink",
  941. "path": "guide/sinks/builtin/file"
  942. },
  943. {
  944. "title": "Memory Sink",
  945. "path": "guide/sinks/builtin/memory"
  946. },
  947. {
  948. "title": "Log Sink",
  949. "path": "guide/sinks/builtin/log"
  950. },
  951. {
  952. "title": "Nop Sink",
  953. "path": "guide/sinks/builtin/nop"
  954. }
  955. ]
  956. },
  957. {
  958. "title": "Predefined Sink Plugins",
  959. "children": [
  960. {
  961. "title": "SQL Sink",
  962. "path": "guide/sinks/plugin/sql"
  963. },
  964. {
  965. "title": "InfluxDB Sink",
  966. "path": "guide/sinks/plugin/influx"
  967. },
  968. {
  969. "title": "InfluxDBV2 Sink",
  970. "path": "guide/sinks/plugin/influx2"
  971. },
  972. {
  973. "title": "TDengine Sink",
  974. "path": "guide/sinks/plugin/tdengine"
  975. },
  976. {
  977. "title": "Image Sink",
  978. "path": "guide/sinks/plugin/image"
  979. },
  980. {
  981. "title": "ZeroMQ Sink",
  982. "path": "guide/sinks/plugin/zmq"
  983. },
  984. {
  985. "title": "Kafka Sink",
  986. "path": "guide/sinks/plugin/kafka"
  987. }
  988. ]
  989. }
  990. ]
  991. }
  992. ]
  993. },
  994. {
  995. "title": "Cookbook",
  996. "path": "example/overview",
  997. "children": [
  998. {
  999. "title": "Data Preparation",
  1000. "path": "example/howto"
  1001. },
  1002. {
  1003. "title": "Merge multiple devices' data in single stream",
  1004. "path": "example/data_merge/merge_single_stream"
  1005. }
  1006. ]
  1007. },
  1008. {
  1009. "title": "Integrations",
  1010. "path": "integrations/overview",
  1011. "children": [
  1012. {
  1013. "title": "Edge Cloud Collaboration",
  1014. "path": "integrations/edge_cloud/overview"
  1015. },
  1016. {
  1017. "title": "Working with EdgeX Foundry",
  1018. "children": [
  1019. {
  1020. "title": "EdgeX Foundry Rule Engine Tutorial",
  1021. "path": "edgex/edgex_rule_engine_tutorial"
  1022. },
  1023. {
  1024. "title": "Meta Function for EdgeX Stream",
  1025. "path": "edgex/edgex_meta"
  1026. },
  1027. {
  1028. "title": "Command EdgeX Device",
  1029. "path": "edgex/edgex_rule_engine_command"
  1030. },
  1031. {
  1032. "title": "EdgeX Source Configurations",
  1033. "path": "edgex/edgex_source_tutorial"
  1034. }
  1035. ]
  1036. },
  1037. {
  1038. "title": "Processing Data Collected by Neuron",
  1039. "path": "integrations/neuron/neuron_integration_tutorial"
  1040. },
  1041. {
  1042. "title": "Analytic Engine for KubeEdge",
  1043. "path": "integrations/kubeedge/overview"
  1044. },
  1045. {
  1046. "title": "Deploy by OpenYurt",
  1047. "path": "integrations/deploy/openyurt_tutorial"
  1048. }
  1049. ]
  1050. },
  1051. {
  1052. "title": "Use Cases",
  1053. "path": "usecases/overview",
  1054. "children": [
  1055. {
  1056. "title": "IIoT case",
  1057. "path": "usecases/iiot"
  1058. },
  1059. {
  1060. "title": "IoV case",
  1061. "path": "usecases/iov"
  1062. },
  1063. {
  1064. "title": "Public data analysis",
  1065. "path": "usecases/public_data_analysis"
  1066. }
  1067. ]
  1068. },
  1069. {
  1070. "title": "Admin Guide",
  1071. "path": "operation/overview",
  1072. "children": [
  1073. {
  1074. "title": "Configuration Guide",
  1075. "path": "configuration/configuration",
  1076. "children": [
  1077. {
  1078. "title": "Global Configurations",
  1079. "path": "configuration/global_configurations"
  1080. }
  1081. ]
  1082. },
  1083. {
  1084. "title": "Monitor",
  1085. "path": "operation/usage/monitor_with_prometheus"
  1086. },
  1087. {
  1088. "title": "Management Console",
  1089. "path": "operation/manager-ui/overview",
  1090. "children": [
  1091. {
  1092. "title": "Manage Custom Plugins",
  1093. "path": "operation/manager-ui/plugins_in_manager"
  1094. }
  1095. ]
  1096. }
  1097. ]
  1098. },
  1099. {
  1100. "title": "API Reference",
  1101. "path": "api/restapi/overview",
  1102. "children": [
  1103. {
  1104. "title": "Authentication",
  1105. "path": "api/restapi/authentication"
  1106. },
  1107. {
  1108. "title": "Streams",
  1109. "path": "api/restapi/streams"
  1110. },
  1111. {
  1112. "title": "Tables",
  1113. "path": "api/restapi/tables"
  1114. },
  1115. {
  1116. "title": "Rules",
  1117. "path": "api/restapi/rules"
  1118. },
  1119. {
  1120. "title": "Plugins",
  1121. "path": "api/restapi/plugins"
  1122. },
  1123. {
  1124. "title": "Source ConfigKey",
  1125. "path": "api/restapi/configKey"
  1126. },
  1127. {
  1128. "title": "External Services",
  1129. "path": "api/restapi/services"
  1130. },
  1131. {
  1132. "title": "Schemas",
  1133. "path": "api/restapi/schemas"
  1134. },
  1135. {
  1136. "title": "Upload files",
  1137. "path": "api/restapi/uploads"
  1138. },
  1139. {
  1140. "title": "Ruleset",
  1141. "path": "api/restapi/ruleset"
  1142. },
  1143. {
  1144. "title": "Data Export/Import",
  1145. "path": "api/restapi/data"
  1146. }
  1147. ]
  1148. },
  1149. {
  1150. "title": "Command Line Tool",
  1151. "path": "api/cli/overview",
  1152. "children": [
  1153. {
  1154. "title": "Streams",
  1155. "path": "api/cli/streams"
  1156. },
  1157. {
  1158. "title": "Rules",
  1159. "path": "api/cli/rules"
  1160. },
  1161. {
  1162. "title": "Tables",
  1163. "path": "api/cli/tables"
  1164. },
  1165. {
  1166. "title": "Plugins",
  1167. "path": "api/cli/plugins"
  1168. },
  1169. {
  1170. "title": "External Services",
  1171. "path": "api/cli/services"
  1172. },
  1173. {
  1174. "title": "Schemas",
  1175. "path": "api/cli/schemas"
  1176. },
  1177. {
  1178. "title": "Ruleset",
  1179. "path": "api/cli/ruleset"
  1180. },
  1181. {
  1182. "title": "Data Export/Import",
  1183. "path": "api/cli/data"
  1184. }
  1185. ]
  1186. },
  1187. {
  1188. "title": "Extension Develop Guide",
  1189. "path": "extension/overview",
  1190. "children": [
  1191. {
  1192. "title": "Native Plugin Develop",
  1193. "path": "extension/native/overview",
  1194. "children": [
  1195. {
  1196. "title": "Develop",
  1197. "path": "extension/native/develop/overview"
  1198. },
  1199. {
  1200. "title": "Plugin Develop Tutorial",
  1201. "path": "extension/native/develop/plugins_tutorial"
  1202. },
  1203. {
  1204. "title": "Function Plugin",
  1205. "path": "extension/native/develop/function"
  1206. },
  1207. {
  1208. "title": "Sink Plugin",
  1209. "path": "extension/native/develop/sink"
  1210. },
  1211. {
  1212. "title": "Source Plugin",
  1213. "path": "extension/native/develop/source"
  1214. }
  1215. ]
  1216. },
  1217. {
  1218. "title": "Portable Plugin Development",
  1219. "path": "extension/portable/overview",
  1220. "children": [
  1221. {
  1222. "title": "GO SDK for Portable Plugin",
  1223. "path": "extension/portable/go_sdk"
  1224. },
  1225. {
  1226. "title": "Python SDK for Portable Plugin",
  1227. "path": "extension/portable/python_sdk"
  1228. }
  1229. ]
  1230. },
  1231. {
  1232. "title": "Plugin Management",
  1233. "path": "operation/manager-ui/plugins_in_manager"
  1234. },
  1235. {
  1236. "title": "Wasm Function",
  1237. "path": "extension/wasm/overview"
  1238. }
  1239. ]
  1240. },
  1241. {
  1242. "title": "SQL Reference",
  1243. "path": "sqls/overview",
  1244. "children": [
  1245. {
  1246. "title": "Statements",
  1247. "children": [
  1248. {
  1249. "title": "Streams",
  1250. "path": "sqls/streams"
  1251. },
  1252. {
  1253. "title": "Tables",
  1254. "path": "sqls/tables"
  1255. },
  1256. {
  1257. "title": "Query",
  1258. "path": "sqls/query_language_elements"
  1259. }
  1260. ]
  1261. },
  1262. {
  1263. "title": "Syntax",
  1264. "path": "sqls/overview",
  1265. "children": [
  1266. {
  1267. "title": "Lexical elements",
  1268. "path": "sqls/lexical_elements"
  1269. },
  1270. {
  1271. "title": "Data types",
  1272. "path": "sqls/data_types"
  1273. },
  1274. {
  1275. "title": "JSON Expressions",
  1276. "path": "sqls/json_expr"
  1277. }
  1278. ]
  1279. },
  1280. {
  1281. "title": "Functions",
  1282. "path": "sqls/functions/overview",
  1283. "children": [
  1284. {
  1285. "title": "Aggregate Functions",
  1286. "path": "sqls/functions/aggregate_functions"
  1287. },
  1288. {
  1289. "title": "Mathematical Functions",
  1290. "path": "sqls/functions/mathematical_functions"
  1291. },
  1292. {
  1293. "title": "String Functions",
  1294. "path": "sqls/functions/string_functions"
  1295. },
  1296. {
  1297. "title": "Array Functions",
  1298. "path": "sqls/functions/array_functions"
  1299. },
  1300. {
  1301. "title": "Object Functions",
  1302. "path": "sqls/functions/object_functions"
  1303. },
  1304. {
  1305. "title": "Hashing Functions",
  1306. "path": "sqls/functions/hashing_functions"
  1307. },
  1308. {
  1309. "title": "Transform Functions",
  1310. "path": "sqls/functions/transform_functions"
  1311. },
  1312. {
  1313. "title": "JSON Functions",
  1314. "path": "sqls/functions/json_functions"
  1315. },
  1316. {
  1317. "title": "Date and Time Functions",
  1318. "path": "sqls/functions/datetime_functions"
  1319. },
  1320. {
  1321. "title": "Other Functions",
  1322. "path": "sqls/functions/other_functions"
  1323. },
  1324. {
  1325. "title": "Analytic Functions",
  1326. "path": "sqls/functions/analytic_functions"
  1327. },
  1328. {
  1329. "title": "Multi-Row Functions",
  1330. "path": "sqls/functions/multi_row_functions"
  1331. },
  1332. {
  1333. "title": "Multi-Column Functions",
  1334. "path": "sqls/functions/multi_column_functions"
  1335. },
  1336. {
  1337. "title": "Predefined function plugins",
  1338. "path": "sqls/functions/custom_functions"
  1339. },
  1340. {
  1341. "title": "Window Functions",
  1342. "path": "sqls/functions/window_functions"
  1343. }
  1344. ]
  1345. },
  1346. {
  1347. "title": "External Function",
  1348. "path": "extension/external/external_func"
  1349. },
  1350. {
  1351. "title": "Windowing",
  1352. "path": "sqls/windows"
  1353. }
  1354. ]
  1355. }
  1356. ]
  1357. }