zmstone 3692cc575f refactor: call ets:info/2 for size instead of ets:info/1 1 year ago
..
etc 8aa60cc0a5 feat: generate a minimized emqx.conf 3 years ago
include 46877e979b chore: update copyright-year 1 year ago
src 3692cc575f refactor: call ets:info/2 for size instead of ets:info/1 1 year ago
test 5532f40d83 Merge branch 'release-57' into 20240702-m-sync-r57-mix-umbrella 1 year ago
README.md ddd68eff22 docs: add emqx_telemetry README 2 years ago
mix.exs f3c6d10f76 fix(mix): fix compile paths and deps 1 year ago
rebar.config f8e9e54393 refactor: move emqx_json to emqx_utils_json 2 years ago

README.md

EMQX Modules

The application provides some minor functional modules that are not included in the MQTT protocol standard, including "Delayed Publish", "Topic Rewrite", "Topic Metrics".

Delayed Publish

After enabling this module, messages sent by the clients with the topic prefixed with $delayed/{Interval}/{Topic} will be delayed by {Interval} seconds before being published to the {Topic}.

More introduction about Delayed Publish.

See Enabling/Disabling Delayed Publish via HTTP API.

Topic Rewrite

Topic Rewrite allows users to configure rules to change the topic strings that the client requests to subscribe or publish.

This feature is very useful when there's a need to transform between different topic structures. For example, an old device that has already been issued and cannot be upgraded may use old topic designs, but for some reason, we adjusted the format of topics. We can use this feature to rewrite the old topics as the new format to eliminate these differences.

More introduction about Topic Rewrite.

See List all rewrite rules and Create or Update rewrite rules.

Topic Metrics

Topic Metrics is used for users to specify monitoring of certain topics and to count the number of messages, QoS distribution, and rate for all messages on that topic.

More introduction about Topic Metrics.

See HTTP API docs to List all monitored topics, Create topic metrics and Get the monitored result.