From 40536ea7f1c44dea6cb5fa2e910b5aefe0d3db44 Mon Sep 17 00:00:00 2001 From: Daniel Simpson Date: Thu, 4 Feb 2021 12:34:48 +1100 Subject: [PATCH] Update an example to use auto generated relationship numbers --- percy/C4_Container Diagram Sample - message bus.puml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/percy/C4_Container Diagram Sample - message bus.puml b/percy/C4_Container Diagram Sample - message bus.puml index d57d3d6..7070716 100644 --- a/percy/C4_Container Diagram Sample - message bus.puml +++ b/percy/C4_Container Diagram Sample - message bus.puml @@ -9,7 +9,7 @@ skinparam maxMessageSize 200 LAYOUT_TOP_DOWN() 'LAYOUT_AS_SKETCH() LAYOUT_WITH_LEGEND() - +AUTONUMBER_RELATIONSHIPS() Person(customer, Customer, "A customer") @@ -37,13 +37,13 @@ Rel(customer, app, "Uses", "HTTPS") Rel_R(app, customer_service, "Updates customer information using", "async, JSON/HTTPS") Rel_L(customer_service, app, "Sends events to", "WebSocket") -Rel_R(customer_service, message_bus, "Sends customer update events to") Rel(customer_service, customer_db, "Stores data in", "JDBC") +Rel_R(customer_service, message_bus, "Sends customer update events to") Rel(message_bus, reporting_service, "Sends customer update events to") -Rel(message_bus, audit_service, "Sends customer update events to") - Rel(reporting_service, reporting_db, "Stores data in") + +Rel(message_bus, audit_service, "Sends customer update events to") Rel(audit_service, audit_store, "Stores events in") Lay_R(reporting_service, audit_service)