directory.json 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126
  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": "使用 Protobuf 编解码教程",
  137. "path": "tutorials/usage/protobuf_tutorial"
  138. },
  139. {
  140. "title": "使用 Prometheus 监控规则运行状态",
  141. "path": "tutorials/usage/monitor_with_prometheus"
  142. }
  143. ]
  144. }
  145. ]
  146. },
  147. {
  148. "title": "参考",
  149. "children": [
  150. {
  151. "title": "规则",
  152. "children": [
  153. {
  154. "title": "概览",
  155. "path": "rules/overview"
  156. },
  157. {
  158. "title": "规则流水线",
  159. "path": "rules/rule_pipeline"
  160. },
  161. {
  162. "title": "状态和容错",
  163. "path": "rules/state_and_fault_tolerance"
  164. },{
  165. "title": "编解码",
  166. "path": "rules/codecs"
  167. },{
  168. "title": "图规则",
  169. "path": "rules/graph_rule"
  170. }
  171. ]
  172. },
  173. {
  174. "title": "Sources 源",
  175. "children": [
  176. {
  177. "title": "概览",
  178. "path": "rules/sources/overview"
  179. },
  180. {
  181. "title": "内置源",
  182. "children": [
  183. {
  184. "title": "MQTT 源",
  185. "path": "rules/sources/builtin/mqtt"
  186. },
  187. {
  188. "title": "Neuron 源",
  189. "path": "rules/sources/builtin/neuron"
  190. },
  191. {
  192. "title": "EdgeX 源",
  193. "path": "rules/sources/builtin/edgex"
  194. },
  195. {
  196. "title": "HTTP 拉取源",
  197. "path": "rules/sources/builtin/http_pull"
  198. },
  199. {
  200. "title": "HTTP 推送源",
  201. "path": "rules/sources/builtin/http_push"
  202. },
  203. {
  204. "title": "内存源",
  205. "path": "rules/sources/builtin/memory"
  206. },
  207. {
  208. "title": "文件源",
  209. "path": "rules/sources/builtin/file"
  210. }
  211. ]
  212. },
  213. {
  214. "title": "预定义插件源",
  215. "children": [
  216. {
  217. "title": "Zero MQ 源",
  218. "path": "rules/sources/plugin/zmq"
  219. },
  220. {
  221. "title": "SQL 源",
  222. "path": "rules/sources/plugin/sql"
  223. },
  224. {
  225. "title": "随机源",
  226. "path": "rules/sources/plugin/random"
  227. }
  228. ]
  229. }
  230. ]
  231. },
  232. {
  233. "title": "Sinks 动作",
  234. "children": [
  235. {
  236. "title": "概览",
  237. "path": "rules/sinks/overview"
  238. },
  239. {
  240. "title": "数据模板",
  241. "path": "rules/data_template"
  242. },
  243. {
  244. "title": "内置 sinks",
  245. "children": [
  246. {
  247. "title": "MQTT 动作",
  248. "path": "rules/sinks/builtin/mqtt"
  249. },
  250. {
  251. "title": "Neuron 动作",
  252. "path": "rules/sinks/builtin/neuron"
  253. },
  254. {
  255. "title": "EdgeX 动作",
  256. "path": "rules/sinks/builtin/edgex"
  257. },
  258. {
  259. "title": "REST 动作",
  260. "path": "rules/sinks/builtin/rest"
  261. },
  262. {
  263. "title": "内存动作",
  264. "path": "rules/sinks/builtin/memory"
  265. },
  266. {
  267. "title": "日志动作",
  268. "path": "rules/sinks/builtin/log"
  269. },
  270. {
  271. "title": "Nop 动作",
  272. "path": "rules/sinks/builtin/nop"
  273. }
  274. ]
  275. },
  276. {
  277. "title": "预定义 sink 插件",
  278. "children": [
  279. {
  280. "title": "Zero MQ 动作",
  281. "path": "rules/sinks/plugin/zmq"
  282. },
  283. {
  284. "title": "文件动作",
  285. "path": "rules/sinks/plugin/file"
  286. },
  287. {
  288. "title": "SQL 动作",
  289. "path": "rules/sinks/plugin/sql"
  290. },
  291. {
  292. "title": "InfluxDB 动作",
  293. "path": "rules/sinks/plugin/influx"
  294. },
  295. {
  296. "title": "InfluxDBV2 动作",
  297. "path": "rules/sinks/plugin/influx2"
  298. },
  299. {
  300. "title": "TDengine 动作",
  301. "path": "rules/sinks/plugin/tdengine"
  302. },
  303. {
  304. "title": "Redis 动作",
  305. "path": "rules/sinks/plugin/redis"
  306. },
  307. {
  308. "title": "图像动作",
  309. "path": "rules/sinks/plugin/image"
  310. }
  311. ]
  312. }
  313. ]
  314. },
  315. {
  316. "title": "SQL 参考",
  317. "children": [
  318. {
  319. "title": "语法",
  320. "children": [
  321. {
  322. "title": "概览",
  323. "path": "sqls/overview"
  324. },
  325. {
  326. "title": "词汇元素",
  327. "path": "sqls/lexical_elements"
  328. },
  329. {
  330. "title": "数据类型",
  331. "path": "sqls/data_types"
  332. },
  333. {
  334. "title": "JSON 表达式",
  335. "path": "sqls/json_expr"
  336. },
  337. {
  338. "title": "查询语言元素",
  339. "path": "sqls/query_language_elements"
  340. }
  341. ]
  342. },
  343. {
  344. "title": "语句",
  345. "children": [
  346. {
  347. "title": "流语句",
  348. "path": "sqls/streams"
  349. },
  350. {
  351. "title": "表语句",
  352. "path": "sqls/tables"
  353. }
  354. ]
  355. },
  356. {
  357. "title": "窗口",
  358. "path": "sqls/windows"
  359. },
  360. {
  361. "title": "内置函数",
  362. "path": "sqls/built-in_functions"
  363. },
  364. {
  365. "title": "预定义函数插件",
  366. "path": "sqls/custom_functions"
  367. }
  368. ]
  369. }
  370. ]
  371. },
  372. {
  373. "title": "扩展开发",
  374. "children": [
  375. {
  376. "title": "概览",
  377. "path": "extension/overview"
  378. },
  379. {
  380. "title": "原生插件开发",
  381. "children": [
  382. {
  383. "title": "总览",
  384. "path": "extension/native/overview"
  385. },
  386. {
  387. "title": "原生插件总览",
  388. "path": "extension/native/develop/overview"
  389. },
  390. {
  391. "title": "插件开发教程",
  392. "path": "extension/native/develop/plugins_tutorial"
  393. },
  394. {
  395. "title": "函数插件开发",
  396. "path": "extension/native/develop/function"
  397. },
  398. {
  399. "title": "动作插件开发",
  400. "path": "extension/native/develop/sink"
  401. },
  402. {
  403. "title": "源插件开发",
  404. "path": "extension/native/develop/source"
  405. }
  406. ]
  407. },
  408. {
  409. "title": "Portable 插件开发",
  410. "children": [
  411. {
  412. "title": "Portable 插件简介",
  413. "path": "extension/portable/overview"
  414. },
  415. {
  416. "title": "Portable 插件 Go 语言 SDK",
  417. "path": "extension/portable/go_sdk"
  418. },
  419. {
  420. "title": "Portable 插件 Python 语言 SDK",
  421. "path": "extension/portable/python_sdk"
  422. }
  423. ]
  424. },
  425. {
  426. "title": "外部函数",
  427. "path": "extension/external/external_func"
  428. }
  429. ]
  430. },
  431. {
  432. "title": "使用指南",
  433. "children": [
  434. {
  435. "title": "概览",
  436. "path": "operation/overview"
  437. },
  438. {
  439. "title": "安装",
  440. "children": [
  441. {
  442. "title": "安装指南",
  443. "path": "operation/install/overview"
  444. },
  445. {
  446. "title": "centos 安装",
  447. "path": "operation/install/cent-os"
  448. }
  449. ]
  450. },
  451. {
  452. "title": "配置",
  453. "children": [
  454. {
  455. "title": "配置文件",
  456. "path": "operation/config/configuration_file"
  457. },
  458. {
  459. "title": "认证配置",
  460. "path": "operation/config/authentication"
  461. }
  462. ]
  463. },
  464. {
  465. "title": "Rest API 接口",
  466. "children": [
  467. {
  468. "title": "接口介绍",
  469. "path": "operation/restapi/overview"
  470. },
  471. {
  472. "title": "流管理",
  473. "path": "operation/restapi/streams"
  474. },
  475. {
  476. "title": "表管理",
  477. "path": "operation/restapi/tables"
  478. },
  479. {
  480. "title": "规则管理",
  481. "path": "operation/restapi/rules"
  482. },
  483. {
  484. "title": "插件管理",
  485. "path": "operation/restapi/plugins"
  486. },
  487. {
  488. "title": "外部函数管理",
  489. "path": "operation/restapi/services"
  490. },{
  491. "title": "模式管理",
  492. "path": "operation/restapi/schemas"
  493. },{
  494. "title": "上传文件管理",
  495. "path": "operation/restapi/uploads"
  496. }
  497. ]
  498. },
  499. {
  500. "title": "命令行工具",
  501. "children": [
  502. {
  503. "title": "总览",
  504. "path": "operation/cli/overview"
  505. },
  506. {
  507. "title": "流管理",
  508. "path": "operation/cli/streams"
  509. },
  510. {
  511. "title": "表管理",
  512. "path": "operation/cli/tables"
  513. },
  514. {
  515. "title": "规则管理",
  516. "path": "operation/cli/rules"
  517. },
  518. {
  519. "title": "插件管理",
  520. "path": "operation/cli/plugins"
  521. },{
  522. "title": "模式管理",
  523. "path": "operation/cli/schemas"
  524. }
  525. ]
  526. },
  527. {
  528. "title": "管理控制台",
  529. "children": [
  530. {
  531. "title": "控制台使用",
  532. "path": "operation/manager-ui/overview"
  533. },
  534. {
  535. "title": "插件管理",
  536. "path": "operation/manager-ui/plugins_in_manager"
  537. }
  538. ]
  539. },
  540. {
  541. "title": "编译",
  542. "children": [
  543. {
  544. "title": "编译指南",
  545. "path": "operation/compile/compile"
  546. },
  547. {
  548. "title": "交叉编译",
  549. "path": "operation/compile/cross-compile"
  550. },
  551. {
  552. "title": "按需编译",
  553. "path": "features"
  554. }
  555. ]
  556. }
  557. ]
  558. },
  559. {
  560. "title": "贡献",
  561. "path": "CONTRIBUTING"
  562. }
  563. ],
  564. "en": [
  565. {
  566. "title": "Home",
  567. "path": "./"
  568. },
  569. {
  570. "title": "Getting Started",
  571. "children": [
  572. {
  573. "title": "Run eKuiper locally",
  574. "path": "getting_started"
  575. },
  576. {
  577. "title": "Run eKuiper in Docker",
  578. "path": "quick_start_docker"
  579. },
  580. {
  581. "title": "Run eKuiper with EdgeX Foundry",
  582. "path": "edgex/edgex_rule_engine_tutorial"
  583. }
  584. ]
  585. },
  586. {
  587. "title": "Concepts",
  588. "children": [
  589. {
  590. "title": "Why eKuiper",
  591. "path": "concepts/ekuiper"
  592. },
  593. {
  594. "title": "Rules",
  595. "path": "concepts/rules"
  596. },
  597. {
  598. "title": "Sources",
  599. "children": [
  600. {
  601. "title": "Overview",
  602. "path": "concepts/sources/overview"
  603. },
  604. {
  605. "title": "Stream",
  606. "path": "concepts/sources/stream"
  607. },
  608. {
  609. "title": "Table",
  610. "path": "concepts/sources/table"
  611. }
  612. ]
  613. },
  614. {
  615. "title": "Sinks",
  616. "path": "concepts/sinks"
  617. },
  618. {
  619. "title": "SQL Queries",
  620. "path": "concepts/sql"
  621. },
  622. {
  623. "title": "Stream Processing",
  624. "children": [
  625. {
  626. "title": "Overview",
  627. "path": "concepts/streaming/overview"
  628. },
  629. {
  630. "title": "Time Attribute",
  631. "path": "concepts/streaming/time"
  632. },
  633. {
  634. "title": "Windowing",
  635. "path": "concepts/streaming/windowing"
  636. },
  637. {
  638. "title": "Join",
  639. "path": "concepts/streaming/join"
  640. }
  641. ]
  642. },
  643. {
  644. "title": "Extensions",
  645. "path": "concepts/extensions"
  646. }
  647. ]
  648. },
  649. {
  650. "title": "Tutorials",
  651. "children": [
  652. {
  653. "title": "AI",
  654. "children": [
  655. {
  656. "title": "Label image by tensorflow lite model with eKuiper native plugin",
  657. "path": "tutorials/ai/tensorflow_lite_tutorial"
  658. },
  659. {
  660. "title": "Running AI Algorithms with Python Function Plugins",
  661. "path": "tutorials/ai/python_tensorflow_lite_tutorial"
  662. }
  663. ]
  664. },
  665. {
  666. "title": "Working with EdgeX Foundry",
  667. "children": [
  668. {
  669. "title": "EdgeX Foundry rule engine tutorial",
  670. "path": "edgex/edgex_rule_engine_tutorial"
  671. },
  672. {
  673. "title": "Meta function for EdgeX stream",
  674. "path": "edgex/edgex_meta"
  675. },
  676. {
  677. "title": "Command device with EdgeX eKuiper rules engine",
  678. "path": "edgex/edgex_rule_engine_command"
  679. },
  680. {
  681. "title": "EdgeX source configuration command",
  682. "path": "edgex/edgex_source_tutorial"
  683. }
  684. ]
  685. },
  686. {
  687. "title": "Stream processing of data collected by Neuron using eKuiper",
  688. "path": "tutorials/neuron/neuron_integration_tutorial"
  689. },
  690. {
  691. "title": "Deploy by OpenYurt",
  692. "path": "tutorials/deploy/openyurt_tutorial"
  693. },
  694. {
  695. "title": "Usage Tutorial",
  696. "children": [
  697. {
  698. "title": "Protobuf Codec Tutorial",
  699. "path": "tutorials/usage/protobuf_tutorial"
  700. },
  701. {
  702. "title": "Monitor rule status with Prometheus",
  703. "path": "tutorials/usage/monitor_with_prometheus"
  704. }
  705. ]
  706. }
  707. ]
  708. },
  709. {
  710. "title": "References",
  711. "children": [
  712. {
  713. "title": "Rules",
  714. "children": [
  715. {
  716. "title": "Introduction",
  717. "path": "rules/overview"
  718. },
  719. {
  720. "title": "Rule Pipeline",
  721. "path": "rules/rule_pipeline"
  722. },
  723. {
  724. "title": "State and Fault Tolerance",
  725. "path": "rules/state_and_fault_tolerance"
  726. },{
  727. "title": "Codecs",
  728. "path": "rules/codecs"
  729. },{
  730. "title": "Graph Rule",
  731. "path": "rules/graph_rule"
  732. }
  733. ]
  734. },
  735. {
  736. "title": "Sources",
  737. "children": [
  738. {
  739. "title": "Overview",
  740. "path": "rules/sources/overview"
  741. },
  742. {
  743. "title": "Built-in sources",
  744. "children": [
  745. {
  746. "title": "MQTT source",
  747. "path": "rules/sources/builtin/mqtt"
  748. },
  749. {
  750. "title": "Neuron source",
  751. "path": "rules/sources/builtin/neuron"
  752. },
  753. {
  754. "title": "EdgeX Source",
  755. "path": "rules/sources/builtin/edgex"
  756. },
  757. {
  758. "title": "HTTP pull source",
  759. "path": "rules/sources/builtin/http_pull"
  760. },
  761. {
  762. "title": "HTTP push source",
  763. "path": "rules/sources/builtin/http_push"
  764. },
  765. {
  766. "title": "Memory source",
  767. "path": "rules/sources/builtin/memory"
  768. },
  769. {
  770. "title": "File source",
  771. "path": "rules/sources/builtin/file"
  772. }
  773. ]
  774. },
  775. {
  776. "title": "Predefined source plugins",
  777. "children": [
  778. {
  779. "title": "Zero MQ source",
  780. "path": "rules/sources/plugin/zmq"
  781. },
  782. {
  783. "title": "SQL source",
  784. "path": "rules/sources/plugin/sql"
  785. },
  786. {
  787. "title": "Random source",
  788. "path": "rules/sources/plugin/random"
  789. }
  790. ]
  791. }
  792. ]
  793. },
  794. {
  795. "title": "Sinks",
  796. "children": [
  797. {
  798. "title": "Overview",
  799. "path": "rules/sinks/overview"
  800. },
  801. {
  802. "title": "Data Template",
  803. "path": "rules/data_template"
  804. },
  805. {
  806. "title": "Built-in sinks",
  807. "children": [
  808. {
  809. "title": "MQTT action",
  810. "path": "rules/sinks/builtin/mqtt"
  811. },
  812. {
  813. "title": "Neuron action",
  814. "path": "rules/sinks/builtin/neuron"
  815. },
  816. {
  817. "title": "EdgeX Message Bus action",
  818. "path": "rules/sinks/builtin/edgex"
  819. },
  820. {
  821. "title": "REST action",
  822. "path": "rules/sinks/builtin/rest"
  823. },
  824. {
  825. "title": "Memory action",
  826. "path": "rules/sinks/builtin/memory"
  827. },
  828. {
  829. "title": "Log action",
  830. "path": "rules/sinks/builtin/log"
  831. },
  832. {
  833. "title": "Nop action",
  834. "path": "rules/sinks/builtin/nop"
  835. }
  836. ]
  837. },
  838. {
  839. "title": "Predefined sink plugins",
  840. "children": [
  841. {
  842. "title": "Zero MQ sink",
  843. "path": "rules/sinks/plugin/zmq"
  844. },
  845. {
  846. "title": "File sink",
  847. "path": "rules/sinks/plugin/file"
  848. },
  849. {
  850. "title": "SQL sink",
  851. "path": "rules/sinks/plugin/sql"
  852. },
  853. {
  854. "title": "InfluxDB sink",
  855. "path": "rules/sinks/plugin/influx"
  856. },
  857. {
  858. "title": "InfluxDBV2 sink",
  859. "path": "rules/sinks/plugin/influx2"
  860. },
  861. {
  862. "title": "TDengine sink",
  863. "path": "rules/sinks/plugin/tdengine"
  864. },
  865. {
  866. "title": "Redis sink",
  867. "path": "rules/sinks/plugin/redis"
  868. },
  869. {
  870. "title": "Image sink",
  871. "path": "rules/sinks/plugin/image"
  872. }
  873. ]
  874. }
  875. ]
  876. },
  877. {
  878. "title": "SQL",
  879. "children": [
  880. {
  881. "title": "Syntax",
  882. "children": [
  883. {
  884. "title": "Introduction",
  885. "path": "sqls/overview"
  886. },
  887. {
  888. "title": "Lexical elements",
  889. "path": "sqls/lexical_elements"
  890. },
  891. {
  892. "title": "Data types",
  893. "path": "sqls/data_types"
  894. },
  895. {
  896. "title": "JSON Expressions",
  897. "path": "sqls/json_expr"
  898. },
  899. {
  900. "title": "Query language element",
  901. "path": "sqls/query_language_elements"
  902. }
  903. ]
  904. },
  905. {
  906. "title": "Statements",
  907. "children": [
  908. {
  909. "title": "Streams",
  910. "path": "sqls/streams"
  911. },
  912. {
  913. "title": "Tables",
  914. "path": "sqls/tables"
  915. }
  916. ]
  917. },
  918. {
  919. "title": "Windows",
  920. "path": "sqls/windows"
  921. },
  922. {
  923. "title": "Built-in Functions",
  924. "path": "sqls/built-in_functions"
  925. },
  926. {
  927. "title": "Predefined function plugins",
  928. "path": "sqls/custom_functions"
  929. }
  930. ]
  931. }
  932. ]
  933. },
  934. {
  935. "title": "Extension Programming",
  936. "children": [
  937. {
  938. "title": "Introduction",
  939. "path": "extension/overview"
  940. },
  941. {
  942. "title": "Native plugin develop",
  943. "children": [
  944. {
  945. "title": "Native plugin develop overview",
  946. "path": "extension/native/overview"
  947. },
  948. {
  949. "title": "Native plugins overview",
  950. "path": "extension/native/develop/overview"
  951. },
  952. {
  953. "title": "Plugin develop tutorial",
  954. "path": "extension/native/develop/plugins_tutorial"
  955. },
  956. {
  957. "title": "Function plugin",
  958. "path": "extension/native/develop/function"
  959. },
  960. {
  961. "title": "Sink plugin",
  962. "path": "extension/native/develop/sink"
  963. },
  964. {
  965. "title": "Source plugin",
  966. "path": "extension/native/develop/source"
  967. }
  968. ]
  969. },
  970. {
  971. "title": "Portable plugin develop",
  972. "children": [
  973. {
  974. "title": "Portable Plugin",
  975. "path": "extension/portable/overview"
  976. },
  977. {
  978. "title": "GO SDK for Portable Plugin",
  979. "path": "extension/portable/go_sdk"
  980. },
  981. {
  982. "title": "Python SDK for Portable Plugin",
  983. "path": "extension/portable/python_sdk"
  984. }
  985. ]
  986. },
  987. {
  988. "title": "External function",
  989. "path": "extension/external/external_func"
  990. }
  991. ]
  992. },
  993. {
  994. "title": "Operations",
  995. "children": [
  996. {
  997. "title": "Introduction",
  998. "path": "operation/overview"
  999. },
  1000. {
  1001. "title": "Install",
  1002. "children": [
  1003. {
  1004. "title": "overview",
  1005. "path": "operation/install/overview"
  1006. },
  1007. {
  1008. "title": "centos",
  1009. "path": "operation/install/cent-os"
  1010. }
  1011. ]
  1012. },
  1013. {
  1014. "title": "Configuration",
  1015. "children": [
  1016. {
  1017. "title": "Configuration File",
  1018. "path": "operation/config/configuration_file"
  1019. },
  1020. {
  1021. "title": "Authentication",
  1022. "path": "operation/config/authentication"
  1023. }
  1024. ]
  1025. },
  1026. {
  1027. "title": "Rest API",
  1028. "children": [
  1029. {
  1030. "title": "Introduction",
  1031. "path": "operation/restapi/overview"
  1032. },
  1033. {
  1034. "title": "Streams",
  1035. "path": "operation/restapi/streams"
  1036. },
  1037. {
  1038. "title": "Tables",
  1039. "path": "operation/restapi/tables"
  1040. },
  1041. {
  1042. "title": "Rules",
  1043. "path": "operation/restapi/rules"
  1044. },
  1045. {
  1046. "title": "Plugins",
  1047. "path": "operation/restapi/plugins"
  1048. },
  1049. {
  1050. "title": "External Services",
  1051. "path": "operation/restapi/services"
  1052. },{
  1053. "title": "Schemas",
  1054. "path": "operation/restapi/schemas"
  1055. },{
  1056. "title": "Upload files",
  1057. "path": "operation/restapi/uploads"
  1058. }
  1059. ]
  1060. },
  1061. {
  1062. "title": "Command line tool",
  1063. "children": [
  1064. {
  1065. "title": "Introduction",
  1066. "path": "operation/cli/overview"
  1067. },
  1068. {
  1069. "title": "Streams",
  1070. "path": "operation/cli/streams"
  1071. },
  1072. {
  1073. "title": "Rules",
  1074. "path": "operation/cli/rules"
  1075. },
  1076. {
  1077. "title": "Tables",
  1078. "path": "operation/cli/tables"
  1079. },
  1080. {
  1081. "title": "Plugins",
  1082. "path": "operation/cli/plugins"
  1083. },{
  1084. "title": "Schemas",
  1085. "path": "operation/cli/schemas"
  1086. }
  1087. ]
  1088. },
  1089. {
  1090. "title": "Management console",
  1091. "children": [
  1092. {
  1093. "title": "Introduction",
  1094. "path": "operation/manager-ui/overview"
  1095. },
  1096. {
  1097. "title": "How to display custom plugins in the installation list of the management console",
  1098. "path": "operation/manager-ui/plugins_in_manager"
  1099. }
  1100. ]
  1101. },
  1102. {
  1103. "title": "Compile",
  1104. "children": [
  1105. {
  1106. "title": "Compile",
  1107. "path": "operation/compile/compile"
  1108. },
  1109. {
  1110. "title": "Cross Compile",
  1111. "path": "operation/compile/cross-compile"
  1112. },
  1113. {
  1114. "title": "Compile selected features only",
  1115. "path": "features"
  1116. }
  1117. ]
  1118. }
  1119. ]
  1120. },
  1121. {
  1122. "title": "Contribute",
  1123. "path": "CONTRIBUTING"
  1124. }
  1125. ]
  1126. }