directory.json 26 KB

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