Skip to content

Commit

Permalink
Fix incorrect on-premise refs from PR #1023
Browse files Browse the repository at this point in the history
import of which broken the image links on the
Examples page for the AWS on-premises examples

This PR corrects the issues and uses on-premises
where needed
  • Loading branch information
alexmalins committed Feb 12, 2025
1 parent d84a347 commit ff174e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/getting-started/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ with Diagram("Advanced Web Service with On-Premises", show=False):
ingress >> grpcsvc >> aggregator
```

![advanced web service with on-premise diagram](/img/advanced_web_service_with_on-premise.png)
![advanced web service with on-premises diagram](/img/advanced_web_service_with_on-premises.png)

## Advanced Web Service with On-Premise (with colors and labels)
## Advanced Web Service with On-Premises (with colors and labels)

```python
from diagrams import Cluster, Diagram, Edge
Expand All @@ -226,7 +226,7 @@ from diagrams.onprem.monitoring import Grafana, Prometheus
from diagrams.onprem.network import Nginx
from diagrams.onprem.queue import Kafka

with Diagram(name="Advanced Web Service with On-Premise (colored)", show=False):
with Diagram(name="Advanced Web Service with On-Premises (colored)", show=False):
ingress = Nginx("ingress")

metrics = Prometheus("metric")
Expand Down Expand Up @@ -254,7 +254,7 @@ with Diagram(name="Advanced Web Service with On-Premise (colored)", show=False):
ingress >> Edge(color="darkgreen") << grpcsvc >> Edge(color="darkorange") >> aggregator
```

![advanced web service with on-premise diagram colored](/img/advanced_web_service_with_on-premise_colored.png)
![advanced web service with on-premises diagram colored](/img/advanced_web_service_with_on-premises_colored.png)

## RabbitMQ Consumers with Custom Nodes

Expand Down

0 comments on commit ff174e3

Please sign in to comment.