directory.json 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172
  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": "RTSP 视频源",
  238. "path": "rules/sources/plugin/rtsp"
  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. },
  517. {
  518. "title": "命令行工具",
  519. "children": [
  520. {
  521. "title": "总览",
  522. "path": "operation/cli/overview"
  523. },
  524. {
  525. "title": "流管理",
  526. "path": "operation/cli/streams"
  527. },
  528. {
  529. "title": "表管理",
  530. "path": "operation/cli/tables"
  531. },
  532. {
  533. "title": "规则管理",
  534. "path": "operation/cli/rules"
  535. },
  536. {
  537. "title": "插件管理",
  538. "path": "operation/cli/plugins"
  539. },
  540. {
  541. "title": "模式管理",
  542. "path": "operation/cli/schemas"
  543. },
  544. {
  545. "title": "规则集管理",
  546. "path": "operation/cli/ruleset"
  547. }
  548. ]
  549. },
  550. {
  551. "title": "管理控制台",
  552. "children": [
  553. {
  554. "title": "控制台使用",
  555. "path": "operation/manager-ui/overview"
  556. },
  557. {
  558. "title": "插件管理",
  559. "path": "operation/manager-ui/plugins_in_manager"
  560. }
  561. ]
  562. },
  563. {
  564. "title": "编译",
  565. "children": [
  566. {
  567. "title": "编译指南",
  568. "path": "operation/compile/compile"
  569. },
  570. {
  571. "title": "交叉编译",
  572. "path": "operation/compile/cross-compile"
  573. },
  574. {
  575. "title": "按需编译",
  576. "path": "features"
  577. }
  578. ]
  579. }
  580. ]
  581. },
  582. {
  583. "title": "贡献",
  584. "path": "CONTRIBUTING"
  585. }
  586. ],
  587. "en": [
  588. {
  589. "title": "Home",
  590. "path": "./"
  591. },
  592. {
  593. "title": "Getting Started",
  594. "children": [
  595. {
  596. "title": "Run eKuiper locally",
  597. "path": "getting_started"
  598. },
  599. {
  600. "title": "Run eKuiper in Docker",
  601. "path": "quick_start_docker"
  602. },
  603. {
  604. "title": "Run eKuiper with EdgeX Foundry",
  605. "path": "edgex/edgex_rule_engine_tutorial"
  606. }
  607. ]
  608. },
  609. {
  610. "title": "Concepts",
  611. "children": [
  612. {
  613. "title": "Why eKuiper",
  614. "path": "concepts/ekuiper"
  615. },
  616. {
  617. "title": "Rules",
  618. "path": "concepts/rules"
  619. },
  620. {
  621. "title": "Sources",
  622. "children": [
  623. {
  624. "title": "Overview",
  625. "path": "concepts/sources/overview"
  626. },
  627. {
  628. "title": "Stream",
  629. "path": "concepts/sources/stream"
  630. },
  631. {
  632. "title": "Table",
  633. "path": "concepts/sources/table"
  634. }
  635. ]
  636. },
  637. {
  638. "title": "Sinks",
  639. "path": "concepts/sinks"
  640. },
  641. {
  642. "title": "SQL Queries",
  643. "path": "concepts/sql"
  644. },
  645. {
  646. "title": "Stream Processing",
  647. "children": [
  648. {
  649. "title": "Overview",
  650. "path": "concepts/streaming/overview"
  651. },
  652. {
  653. "title": "Time Attribute",
  654. "path": "concepts/streaming/time"
  655. },
  656. {
  657. "title": "Windowing",
  658. "path": "concepts/streaming/windowing"
  659. },
  660. {
  661. "title": "Join",
  662. "path": "concepts/streaming/join"
  663. }
  664. ]
  665. },
  666. {
  667. "title": "Extensions",
  668. "path": "concepts/extensions"
  669. }
  670. ]
  671. },
  672. {
  673. "title": "Tutorials",
  674. "children": [
  675. {
  676. "title": "AI",
  677. "children": [
  678. {
  679. "title": "Label image by tensorflow lite model with eKuiper native plugin",
  680. "path": "tutorials/ai/tensorflow_lite_tutorial"
  681. },
  682. {
  683. "title": "Running AI Algorithms with Python Function Plugins",
  684. "path": "tutorials/ai/python_tensorflow_lite_tutorial"
  685. }
  686. ]
  687. },
  688. {
  689. "title": "Working with EdgeX Foundry",
  690. "children": [
  691. {
  692. "title": "EdgeX Foundry rule engine tutorial",
  693. "path": "edgex/edgex_rule_engine_tutorial"
  694. },
  695. {
  696. "title": "Meta function for EdgeX stream",
  697. "path": "edgex/edgex_meta"
  698. },
  699. {
  700. "title": "Command device with EdgeX eKuiper rules engine",
  701. "path": "edgex/edgex_rule_engine_command"
  702. },
  703. {
  704. "title": "EdgeX source configuration command",
  705. "path": "edgex/edgex_source_tutorial"
  706. }
  707. ]
  708. },
  709. {
  710. "title": "Stream processing of data collected by Neuron using eKuiper",
  711. "path": "tutorials/neuron/neuron_integration_tutorial"
  712. },
  713. {
  714. "title": "Deploy by OpenYurt",
  715. "path": "tutorials/deploy/openyurt_tutorial"
  716. },
  717. {
  718. "title": "Usage Tutorial",
  719. "children": [
  720. {
  721. "title": "Stream Batch Integrated Calculation",
  722. "path": "tutorials/table/lookup"
  723. },
  724. {
  725. "title": "Protobuf Codec Tutorial",
  726. "path": "tutorials/usage/protobuf_tutorial"
  727. },
  728. {
  729. "title": "Monitor rule status with Prometheus",
  730. "path": "tutorials/usage/monitor_with_prometheus"
  731. }
  732. ]
  733. }
  734. ]
  735. },
  736. {
  737. "title": "References",
  738. "children": [
  739. {
  740. "title": "Rules",
  741. "children": [
  742. {
  743. "title": "Introduction",
  744. "path": "rules/overview"
  745. },
  746. {
  747. "title": "Rule Pipeline",
  748. "path": "rules/rule_pipeline"
  749. },
  750. {
  751. "title": "State and Fault Tolerance",
  752. "path": "rules/state_and_fault_tolerance"
  753. },{
  754. "title": "Codecs",
  755. "path": "rules/codecs"
  756. },{
  757. "title": "Graph Rule",
  758. "path": "rules/graph_rule"
  759. }
  760. ]
  761. },
  762. {
  763. "title": "Sources",
  764. "children": [
  765. {
  766. "title": "Overview",
  767. "path": "rules/sources/overview"
  768. },
  769. {
  770. "title": "Built-in sources",
  771. "children": [
  772. {
  773. "title": "MQTT source",
  774. "path": "rules/sources/builtin/mqtt"
  775. },
  776. {
  777. "title": "Neuron source",
  778. "path": "rules/sources/builtin/neuron"
  779. },
  780. {
  781. "title": "EdgeX Source",
  782. "path": "rules/sources/builtin/edgex"
  783. },
  784. {
  785. "title": "HTTP pull source",
  786. "path": "rules/sources/builtin/http_pull"
  787. },
  788. {
  789. "title": "HTTP push source",
  790. "path": "rules/sources/builtin/http_push"
  791. },
  792. {
  793. "title": "Memory source",
  794. "path": "rules/sources/builtin/memory"
  795. },
  796. {
  797. "title": "File source",
  798. "path": "rules/sources/builtin/file"
  799. },
  800. {
  801. "title": "Redis source",
  802. "path": "rules/sources/builtin/redis"
  803. }
  804. ]
  805. },
  806. {
  807. "title": "Predefined source plugins",
  808. "children": [
  809. {
  810. "title": "Zero MQ source",
  811. "path": "rules/sources/plugin/zmq"
  812. },
  813. {
  814. "title": "SQL source",
  815. "path": "rules/sources/plugin/sql"
  816. },
  817. {
  818. "title": "Random source",
  819. "path": "rules/sources/plugin/random"
  820. },
  821. {
  822. "title": "RTSP source",
  823. "path": "rules/sources/plugin/rtsp"
  824. }
  825. ]
  826. }
  827. ]
  828. },
  829. {
  830. "title": "Sinks",
  831. "children": [
  832. {
  833. "title": "Overview",
  834. "path": "rules/sinks/overview"
  835. },
  836. {
  837. "title": "Data Template",
  838. "path": "rules/data_template"
  839. },
  840. {
  841. "title": "Built-in sinks",
  842. "children": [
  843. {
  844. "title": "MQTT action",
  845. "path": "rules/sinks/builtin/mqtt"
  846. },
  847. {
  848. "title": "Neuron action",
  849. "path": "rules/sinks/builtin/neuron"
  850. },
  851. {
  852. "title": "EdgeX Message Bus action",
  853. "path": "rules/sinks/builtin/edgex"
  854. },
  855. {
  856. "title": "REST action",
  857. "path": "rules/sinks/builtin/rest"
  858. },
  859. {
  860. "title": "Memory action",
  861. "path": "rules/sinks/builtin/memory"
  862. },
  863. {
  864. "title": "Log action",
  865. "path": "rules/sinks/builtin/log"
  866. },
  867. {
  868. "title": "Nop action",
  869. "path": "rules/sinks/builtin/nop"
  870. },
  871. {
  872. "title": "Redis sink",
  873. "path": "rules/sinks/builtin/redis"
  874. }
  875. ]
  876. },
  877. {
  878. "title": "Predefined sink plugins",
  879. "children": [
  880. {
  881. "title": "Zero MQ sink",
  882. "path": "rules/sinks/plugin/zmq"
  883. },
  884. {
  885. "title": "File sink",
  886. "path": "rules/sinks/plugin/file"
  887. },
  888. {
  889. "title": "SQL sink",
  890. "path": "rules/sinks/plugin/sql"
  891. },
  892. {
  893. "title": "InfluxDB sink",
  894. "path": "rules/sinks/plugin/influx"
  895. },
  896. {
  897. "title": "InfluxDBV2 sink",
  898. "path": "rules/sinks/plugin/influx2"
  899. },
  900. {
  901. "title": "TDengine sink",
  902. "path": "rules/sinks/plugin/tdengine"
  903. },
  904. {
  905. "title": "Image sink",
  906. "path": "rules/sinks/plugin/image"
  907. }
  908. ]
  909. }
  910. ]
  911. },
  912. {
  913. "title": "SQL",
  914. "children": [
  915. {
  916. "title": "Syntax",
  917. "children": [
  918. {
  919. "title": "Introduction",
  920. "path": "sqls/overview"
  921. },
  922. {
  923. "title": "Lexical elements",
  924. "path": "sqls/lexical_elements"
  925. },
  926. {
  927. "title": "Data types",
  928. "path": "sqls/data_types"
  929. },
  930. {
  931. "title": "JSON Expressions",
  932. "path": "sqls/json_expr"
  933. },
  934. {
  935. "title": "Query language element",
  936. "path": "sqls/query_language_elements"
  937. }
  938. ]
  939. },
  940. {
  941. "title": "Statements",
  942. "children": [
  943. {
  944. "title": "Streams",
  945. "path": "sqls/streams"
  946. },
  947. {
  948. "title": "Tables",
  949. "path": "sqls/tables"
  950. }
  951. ]
  952. },
  953. {
  954. "title": "Windows",
  955. "path": "sqls/windows"
  956. },
  957. {
  958. "title": "Built-in Functions",
  959. "path": "sqls/built-in_functions"
  960. },
  961. {
  962. "title": "Predefined function plugins",
  963. "path": "sqls/custom_functions"
  964. }
  965. ]
  966. }
  967. ]
  968. },
  969. {
  970. "title": "Extension Programming",
  971. "children": [
  972. {
  973. "title": "Introduction",
  974. "path": "extension/overview"
  975. },
  976. {
  977. "title": "Native plugin develop",
  978. "children": [
  979. {
  980. "title": "Native plugin develop overview",
  981. "path": "extension/native/overview"
  982. },
  983. {
  984. "title": "Native plugins overview",
  985. "path": "extension/native/develop/overview"
  986. },
  987. {
  988. "title": "Plugin develop tutorial",
  989. "path": "extension/native/develop/plugins_tutorial"
  990. },
  991. {
  992. "title": "Function plugin",
  993. "path": "extension/native/develop/function"
  994. },
  995. {
  996. "title": "Sink plugin",
  997. "path": "extension/native/develop/sink"
  998. },
  999. {
  1000. "title": "Source plugin",
  1001. "path": "extension/native/develop/source"
  1002. }
  1003. ]
  1004. },
  1005. {
  1006. "title": "Portable plugin develop",
  1007. "children": [
  1008. {
  1009. "title": "Portable Plugin",
  1010. "path": "extension/portable/overview"
  1011. },
  1012. {
  1013. "title": "GO SDK for Portable Plugin",
  1014. "path": "extension/portable/go_sdk"
  1015. },
  1016. {
  1017. "title": "Python SDK for Portable Plugin",
  1018. "path": "extension/portable/python_sdk"
  1019. }
  1020. ]
  1021. },
  1022. {
  1023. "title": "External function",
  1024. "path": "extension/external/external_func"
  1025. }
  1026. ]
  1027. },
  1028. {
  1029. "title": "Operations",
  1030. "children": [
  1031. {
  1032. "title": "Introduction",
  1033. "path": "operation/overview"
  1034. },
  1035. {
  1036. "title": "Install",
  1037. "children": [
  1038. {
  1039. "title": "overview",
  1040. "path": "operation/install/overview"
  1041. },
  1042. {
  1043. "title": "centos",
  1044. "path": "operation/install/cent-os"
  1045. }
  1046. ]
  1047. },
  1048. {
  1049. "title": "Configuration",
  1050. "children": [
  1051. {
  1052. "title": "Configuration File",
  1053. "path": "operation/config/configuration_file"
  1054. },
  1055. {
  1056. "title": "Authentication",
  1057. "path": "operation/config/authentication"
  1058. }
  1059. ]
  1060. },
  1061. {
  1062. "title": "Rest API",
  1063. "children": [
  1064. {
  1065. "title": "Introduction",
  1066. "path": "operation/restapi/overview"
  1067. },
  1068. {
  1069. "title": "Streams",
  1070. "path": "operation/restapi/streams"
  1071. },
  1072. {
  1073. "title": "Tables",
  1074. "path": "operation/restapi/tables"
  1075. },
  1076. {
  1077. "title": "Rules",
  1078. "path": "operation/restapi/rules"
  1079. },
  1080. {
  1081. "title": "Plugins",
  1082. "path": "operation/restapi/plugins"
  1083. },
  1084. {
  1085. "title": "External Services",
  1086. "path": "operation/restapi/services"
  1087. },
  1088. {
  1089. "title": "Schemas",
  1090. "path": "operation/restapi/schemas"
  1091. },
  1092. {
  1093. "title": "Upload files",
  1094. "path": "operation/restapi/uploads"
  1095. },
  1096. {
  1097. "title": "Ruleset",
  1098. "path": "operation/restapi/ruleset"
  1099. }
  1100. ]
  1101. },
  1102. {
  1103. "title": "Command line tool",
  1104. "children": [
  1105. {
  1106. "title": "Introduction",
  1107. "path": "operation/cli/overview"
  1108. },
  1109. {
  1110. "title": "Streams",
  1111. "path": "operation/cli/streams"
  1112. },
  1113. {
  1114. "title": "Rules",
  1115. "path": "operation/cli/rules"
  1116. },
  1117. {
  1118. "title": "Tables",
  1119. "path": "operation/cli/tables"
  1120. },
  1121. {
  1122. "title": "Plugins",
  1123. "path": "operation/cli/plugins"
  1124. },
  1125. {
  1126. "title": "Schemas",
  1127. "path": "operation/cli/schemas"
  1128. },
  1129. {
  1130. "title": "Ruleset",
  1131. "path": "operation/cli/ruleset"
  1132. }
  1133. ]
  1134. },
  1135. {
  1136. "title": "Management console",
  1137. "children": [
  1138. {
  1139. "title": "Introduction",
  1140. "path": "operation/manager-ui/overview"
  1141. },
  1142. {
  1143. "title": "How to display custom plugins in the installation list of the management console",
  1144. "path": "operation/manager-ui/plugins_in_manager"
  1145. }
  1146. ]
  1147. },
  1148. {
  1149. "title": "Compile",
  1150. "children": [
  1151. {
  1152. "title": "Compile",
  1153. "path": "operation/compile/compile"
  1154. },
  1155. {
  1156. "title": "Cross Compile",
  1157. "path": "operation/compile/cross-compile"
  1158. },
  1159. {
  1160. "title": "Compile selected features only",
  1161. "path": "features"
  1162. }
  1163. ]
  1164. }
  1165. ]
  1166. },
  1167. {
  1168. "title": "Contribute",
  1169. "path": "CONTRIBUTING"
  1170. }
  1171. ]
  1172. }