4
0

diagram.adoc 349 B

12345678910111213141516171819
  1. [mermaid,png]
  2. .Flow of an inbound network request
  3. ....
  4. %%{init: {'theme': 'neutral'}}%%
  5. graph LR
  6. A[Your Browser] -->|HTTPS 443/tcp| Z
  7. Z["Proxy"] -->|HTTP 80/tcp| C
  8. C["Single HTTP frontend"]
  9. H["Prometheus"]
  10. B["gRPC API"]
  11. subgraph "OliveTin service"
  12. C -->|/api/| D[REST API] --> B
  13. C -->|/| E[webui]
  14. C -->|/metrics/| H
  15. end
  16. ....
  17. :proxy!: