From 4a2ebb347950edcb0db47a34f5e6368eb7d82d69 Mon Sep 17 00:00:00 2001 From: Fabrizio Ferri-Benedetti Date: Wed, 11 Sep 2024 15:11:30 +0200 Subject: [PATCH] Update architecture.md to remove incompatible link notation from diagram (#5175) --- content/en/docs/demo/architecture.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/content/en/docs/demo/architecture.md b/content/en/docs/demo/architecture.md index f3049939048d..75d5c6f452ab 100644 --- a/content/en/docs/demo/architecture.md +++ b/content/en/docs/demo/architecture.md @@ -128,8 +128,8 @@ subgraph tdf[Telemetry Data Flow] subgraph oc[OTel Collector] style oc fill:#97aef3,color:black; - oc-grpc[/"OTLP Receiver
listening on
grpc://localhost:4317/"/] - oc-http[/"OTLP Receiver
listening on
http://localhost:4318/
https://localhost:4318/"/] + oc-grpc[/"OTLP Receiver
listening on
grpc://localhost:4317"/] + oc-http[/"OTLP Receiver
listening on
localhost:4318
localhost:4318"/] oc-proc(Processors) oc-prom[/"OTLP HTTP Exporter"/] oc-otlp[/"OTLP Exporter"/] @@ -141,27 +141,27 @@ subgraph tdf[Telemetry Data Flow] oc-proc --> oc-otlp end - oc-prom -->|"http://localhost:9090/api/v1/otlp"| pr-sc + oc-prom -->|"localhost:9090/api/v1/otlp"| pr-sc oc-otlp -->|gRPC| ja-col subgraph pr[Prometheus] style pr fill:#e75128,color:black; pr-sc[/"Prometheus OTLP Write Receiver"/] pr-tsdb[(Prometheus TSDB)] - pr-http[/"Prometheus HTTP
listening on
http://localhost:9090"/] + pr-http[/"Prometheus HTTP
listening on
localhost:9090"/] pr-sc --> pr-tsdb pr-tsdb --> pr-http end pr-b{{"Browser
Prometheus UI"}} - pr-http ---->|"http://localhost:9090/graph"| pr-b + pr-http ---->|"localhost:9090/graph"| pr-b subgraph ja[Jaeger] style ja fill:#60d0e4,color:black; - ja-col[/"Jaeger Collector
listening on
grpc://jaeger:4317/"/] + ja-col[/"Jaeger Collector
listening on
grpc://jaeger:4317"/] ja-db[(Jaeger DB)] - ja-http[/"Jaeger HTTP
listening on
http://localhost:16686"/] + ja-http[/"Jaeger HTTP
listening on
localhost:16686"/] ja-col --> ja-db ja-db --> ja-http @@ -170,19 +170,19 @@ subgraph tdf[Telemetry Data Flow] subgraph gr[Grafana] style gr fill:#f8b91e,color:black; gr-srv["Grafana Server"] - gr-http[/"Grafana HTTP
listening on
http://localhost:3000"/] + gr-http[/"Grafana HTTP
listening on
localhost:3000"/] gr-srv --> gr-http end - pr-http --> |"http://localhost:9090/api"| gr-srv - ja-http --> |"http://localhost:16686/api"| gr-srv + pr-http --> |"localhost:9090/api"| gr-srv + ja-http --> |"localhost:16686/api"| gr-srv ja-b{{"Browser
Jaeger UI"}} - ja-http ---->|"http://localhost:16686/search"| ja-b + ja-http ---->|"localhost:16686/search"| ja-b gr-b{{"Browser
Grafana UI"}} - gr-http -->|"http://localhost:3000/dashboard"| gr-b + gr-http -->|"localhost:3000/dashboard"| gr-b end end ```