Ivan Dyachkov c01f62a1c1 chore: bump apps versions hace 3 años
..
etc 8aa60cc0a5 feat: generate a minimized emqx.conf hace 3 años
i18n 157c919ba1 ci: add i18n style check script hace 3 años
include dbc10c2eed chore: update copyright year 2023 hace 3 años
src c01f62a1c1 chore: bump apps versions hace 3 años
test 6ebd3dc747 feat(emqx_rule_engine): decompose error tuples hace 3 años
.gitignore 4a877a3a69 chore(apps): relocate some apps hace 5 años
README.md 1be3eb1446 chore: rename EMQX Broker to just EMQX hace 4 años
rebar.config ebe4d7c3fb refactor: stop releasing edge edition hace 3 años

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;