ieQu1 d23a88d0a9 docs(schema): Minor improvements to spelling and formatting. 3 年 前
..
etc b3d9605722 chore(conf): EMQ X -> EMQX in conf files 4 年 前
include a892ff9006 fix(dialyzer): update the specs for the rule() 4 年 前
src d23a88d0a9 docs(schema): Minor improvements to spelling and formatting. 3 年 前
test ccc134d061 fix(emqx_rule_api_schema): add rule events schema 3 年 前
.gitignore 4a877a3a69 chore(apps): relocate some apps 5 年 前
README.md 1be3eb1446 chore: rename EMQX Broker to just EMQX 4 年 前
rebar.config 82e3565344 chore: major mode file variable for Emacs 4 年 前

README.md

emqx-rule-engine

IoT Rule Engine

Concept

iot rule "Rule Name"
  when
     match TopicFilters and Conditions
  select
    para1 = val1
    para2 = val2
  then
    take action(#{para2 => val1, #para2 => val2})

Architecture

          |-----------------|
 Pub ---->| Message Routing |----> Sub
          |-----------------|
               |     /|\
              \|/     |
          |-----------------|
          |   Rule Engine   |
          |-----------------|
               |      |
        Backends Services Bridges

SQL for Rule query statement

select id, time, temperature as t from "topic/a" where t > 50;