directory.json 24 KB

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