emqx/apps/emqx_management
firest 397c104a85 feat(exclusive): added CLI interface for exclusive topics 2024-07-26 16:56:47 +08:00
..
etc refactor: close managment http 8081 (#5564) 2021-08-27 13:46:39 +08:00
include fix: rework In-flight / Mqueue API 2024-03-20 15:25:33 +02:00
src feat(exclusive): added CLI interface for exclusive topics 2024-07-26 16:56:47 +08:00
test feat(exclusive): added CLI interface for exclusive topics 2024-07-26 16:56:47 +08:00
.gitignore chore(emqx_management): move emqx management to apps 2021-03-02 09:35:47 +08:00
README.md style: fix wording 2023-03-31 09:19:48 +02:00
mix.exs chore: preparing to run common tests / eunit with mix 2024-07-02 09:45:45 -03:00
rebar.config refactor: HTTP connector into emqx_bridge_http app 2023-07-12 14:46:43 +02:00

README.md

EMQX Management

EMQX Management offers various interfaces for administrators to interact with the system, either by a remote console attached to a running node, a CLI (i.e. ./emqx ctl), or through its rich CRUD-style REST API (mostly used by EMQX' dashboard). The system enables administrators to modify both cluster and individual node configurations, and provides the ability to view and reset different statistics and metrics.

Functionality

Amongst others it allows to manage

  • Alarms
  • API Keys
  • Banned clients, users or hosts
  • Clients (and sessions) including their topic subscriptions
  • Configurations
  • Manage plugins
  • Fixed subscriptions
  • Topics

Moreover it lets you

  • modify hot and non-hot updatable configuration values,
  • publish messages, as well as bulk messages,
  • create trace files,
  • and last but not least monitor system status.

Implementation Notes

API endpoints are implemented using the minirest framework in combination with HOCON schema and OpenAPI 3.0 specifications.

TODO/FIXME

At its current state there are some reverse dependencies from other applications that do calls directly into emqx_mgmt.

Also, and somewhat related, its bpapi proto modules do calls directly into other applications.