Skip to content

Commit

Permalink
feat(node): Add EMQX as an On-Prem Queue entry (mingrammer#769)
Browse files Browse the repository at this point in the history
* Add EMQX as a On-Prem Queue entry

* Add larger EMQX icon
  • Loading branch information
Nosferatu31 authored and ajmaradiaga committed Nov 8, 2023
1 parent d974ecf commit c3182c2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@
},
"queue": {
"Activemq": "ActiveMQ",
"Emqx": "EMQX",
"Rabbitmq": "RabbitMQ",
"Zeromq": "ZeroMQ",
},
Expand Down
5 changes: 5 additions & 0 deletions diagrams/onprem/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ class Celery(_Queue):
_icon = "celery.png"


class Emqx(_Queue):
_icon = "emqx.png"


class Kafka(_Queue):
_icon = "kafka.png"

Expand All @@ -35,5 +39,6 @@ class Zeromq(_Queue):
# Aliases

ActiveMQ = Activemq
EMQX = Emqx
RabbitMQ = Rabbitmq
ZeroMQ = Zeromq
3 changes: 3 additions & 0 deletions docs/nodes/onprem.md
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,9 @@ Node classes list of onprem provider.
<img width="30" src="/img/resources/onprem/queue/celery.png" alt="Celery" style="float: left; padding-right: 5px;" >
**diagrams.onprem.queue.Celery**

<img width="30" src="/img/resources/onprem/queue/emqx.png" alt="Emqx" style="float: left; padding-right: 5px;" >
**diagrams.onprem.queue.Emqx**, **EMQX** (alias)

<img width="30" src="/img/resources/onprem/queue/kafka.png" alt="Kafka" style="float: left; padding-right: 5px;" >
**diagrams.onprem.queue.Kafka**

Expand Down
Binary file added resources/onprem/queue/emqx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c3182c2

Please sign in to comment.