On 2019-10-17 at 13:12 +02, PICCA Frederic-Emmanuel <frederic-emmanuel.picca@synchrotron-soleil.fr> wrote...
> https://en.wikipedia.org/wiki/PGF/TikZ
Or you can do it with Ditaa, http://plantuml.com, others that may be easier to use than TikZ.
It is not perfect, but for the moment good enough:
#+BEGIN_SRC plantuml :file rabbitMQ.eps :noexport
@startuml
[Producer]
cloud {
[Internet] as Internet1
}
node RabbitMQ {
[Exchange]
[Queue]
}
cloud {
[Internet] as Internet2
}
[Consumer]
[Producer] -> [Internet1] : Publish
[Internet1] -> [Exchange] : Publish
[Exchange] -> [Queue] : Route
[Queue] -> [Internet2] : Consume
[Internet2] -> [Consumer] : Consume
@enduml
#+END_SRC
--