Kjell Winblad 8279d8c787 Merge pull request #13053 from kjellwinblad/kjell/fix_rule_trace_issues/EMQX-12327/EMQX-12335/EMQX-12336 1 سال پیش
..
etc 86231f795d refactor: close managment http 8081 (#5564) 4 سال پیش
include cb5fdb3c79 fix: rework In-flight / Mqueue API 2 سال پیش
src a5d973b681 docs: hide `/clients_v2` from swagger api docs 1 سال پیش
test 8279d8c787 Merge pull request #13053 from kjellwinblad/kjell/fix_rule_trace_issues/EMQX-12327/EMQX-12335/EMQX-12336 1 سال پیش
.gitignore baa9fd8255 chore(emqx_management): move emqx management to apps 5 سال پیش
README.md 7e31e60e90 style: fix wording 3 سال پیش
rebar.config f28510b3ad refactor: HTTP connector into emqx_bridge_http app 2 سال پیش

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.