Skip to content

Commit

Permalink
Update architecture.md to remove incompatible link notation from diag…
Browse files Browse the repository at this point in the history
…ram (#5175)
  • Loading branch information
theletterf authored Sep 11, 2024
1 parent 944effa commit 4a2ebb3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions content/en/docs/demo/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ subgraph tdf[Telemetry Data Flow]
subgraph oc[OTel Collector]
style oc fill:#97aef3,color:black;
oc-grpc[/"OTLP Receiver<br/>listening on<br/>grpc://localhost:4317/"/]
oc-http[/"OTLP Receiver<br/>listening on <br/>http://localhost:4318/<br/>https://localhost:4318/"/]
oc-grpc[/"OTLP Receiver<br/>listening on<br/>grpc://localhost:4317"/]
oc-http[/"OTLP Receiver<br/>listening on <br/>localhost:4318<br/>localhost:4318"/]
oc-proc(Processors)
oc-prom[/"OTLP HTTP Exporter"/]
oc-otlp[/"OTLP Exporter"/]
Expand All @@ -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<br/>listening on<br/>http://localhost:9090"/]
pr-http[/"Prometheus HTTP<br/>listening on<br/>localhost:9090"/]
pr-sc --> pr-tsdb
pr-tsdb --> pr-http
end
pr-b{{"Browser<br/>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<br/>listening on<br/>grpc://jaeger:4317/"/]
ja-col[/"Jaeger Collector<br/>listening on<br/>grpc://jaeger:4317"/]
ja-db[(Jaeger DB)]
ja-http[/"Jaeger HTTP<br/>listening on<br/>http://localhost:16686"/]
ja-http[/"Jaeger HTTP<br/>listening on<br/>localhost:16686"/]
ja-col --> ja-db
ja-db --> ja-http
Expand All @@ -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<br/>listening on<br/>http://localhost:3000"/]
gr-http[/"Grafana HTTP<br/>listening on<br/>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<br/>Jaeger UI"}}
ja-http ---->|"http://localhost:16686/search"| ja-b
ja-http ---->|"localhost:16686/search"| ja-b
gr-b{{"Browser<br/>Grafana UI"}}
gr-http -->|"http://localhost:3000/dashboard"| gr-b
gr-http -->|"localhost:3000/dashboard"| gr-b
end
end
```
Expand Down

0 comments on commit 4a2ebb3

Please sign in to comment.