registry.puml 741 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @startuml
  2. !include config.puml
  3. title netdata registry operation
  4. actor "web browser" as user
  5. participant "netdata 1" as n1
  6. participant "registry 1" as r1
  7. autonumber "<b>0."
  8. == standard dashboard communication ==
  9. user ->n1 : \
  10. hi, give me the dashboard
  11. n1 --> user : \
  12. welcome, here it is...
  13. ... a few seconds later ...
  14. == registry related communication ==
  15. user -> n1 : \
  16. now give me registry information
  17. n1 --> user: \
  18. here it is, talk to <b>registry 1</b>
  19. note left of r1 #eee: \
  20. only your web browser \n\
  21. talks to the registry
  22. user -> r1 : \
  23. Hey <b>registry 1</b>, \
  24. I am accessing <b>netdata 1</b>...
  25. r1 --> user : \
  26. nice!, here are other netdata servers \
  27. you have accessed in the past
  28. @enduml