├── .gitignore ├── LICENSE ├── README.md └── compose ├── emqx_obs ├── README.md ├── emqx.compose.yml ├── launch.sh └── prometheus │ ├── alert.yml │ └── prometheus.yml ├── emqx_v4 ├── README.md ├── emqx.compose.yml └── launch.sh ├── emqx_v5 ├── README.md ├── emqx.compose.yml └── launch.sh └── rabbitmq ├── gen_certs.sh ├── launch.sh ├── rabbitmq-public.compose.yml ├── rabbitmq.compose.yml └── rabbitmq ├── 20-main.conf └── enabled_plugins /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/README.md -------------------------------------------------------------------------------- /compose/emqx_obs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_obs/README.md -------------------------------------------------------------------------------- /compose/emqx_obs/emqx.compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_obs/emqx.compose.yml -------------------------------------------------------------------------------- /compose/emqx_obs/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_obs/launch.sh -------------------------------------------------------------------------------- /compose/emqx_obs/prometheus/alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_obs/prometheus/alert.yml -------------------------------------------------------------------------------- /compose/emqx_obs/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_obs/prometheus/prometheus.yml -------------------------------------------------------------------------------- /compose/emqx_v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_v4/README.md -------------------------------------------------------------------------------- /compose/emqx_v4/emqx.compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_v4/emqx.compose.yml -------------------------------------------------------------------------------- /compose/emqx_v4/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_v4/launch.sh -------------------------------------------------------------------------------- /compose/emqx_v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_v5/README.md -------------------------------------------------------------------------------- /compose/emqx_v5/emqx.compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_v5/emqx.compose.yml -------------------------------------------------------------------------------- /compose/emqx_v5/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/emqx_v5/launch.sh -------------------------------------------------------------------------------- /compose/rabbitmq/gen_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/rabbitmq/gen_certs.sh -------------------------------------------------------------------------------- /compose/rabbitmq/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/rabbitmq/launch.sh -------------------------------------------------------------------------------- /compose/rabbitmq/rabbitmq-public.compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/rabbitmq/rabbitmq-public.compose.yml -------------------------------------------------------------------------------- /compose/rabbitmq/rabbitmq.compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/rabbitmq/rabbitmq.compose.yml -------------------------------------------------------------------------------- /compose/rabbitmq/rabbitmq/20-main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/rabbitmq/rabbitmq/20-main.conf -------------------------------------------------------------------------------- /compose/rabbitmq/rabbitmq/enabled_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hummingbot/brokers/HEAD/compose/rabbitmq/rabbitmq/enabled_plugins --------------------------------------------------------------------------------