Technology Layer
Nodes, devices, system software.
- Format.puml
- Length39 lines
- LibraryArchiMate
The source
39 lines of PlantUML, and pulls in ArchiMate. Copy it, or open the template inside Gnomon and render it as it is.
@startuml
!include <archimate/Archimate>
title ArchiMate Technology Layer
Technology_Node(datacenter, "Data Center") {
Technology_Node(appServer, "Application Server") {
Technology_SystemSoftware(tomcat, "Tomcat")
Technology_Artifact(warFile, "app.war")
}
Technology_Node(dbServer, "Database Server") {
Technology_SystemSoftware(postgres, "PostgreSQL")
Technology_Artifact(dbSchema, "Schema")
}
}
Technology_Node(cloud, "Cloud Infrastructure") {
Technology_Node(cdn, "CDN")
Technology_Node(loadBalancer, "Load Balancer")
}
Technology_Device(userDevice, "User Device")
Technology_CommunicationNetwork(internet, "Internet")
Technology_CommunicationNetwork(intranet, "Intranet")
Technology_CommunicationNetwork(https, "HTTPS")
Technology_Path(apiPath, "API Path")
Technology_Service(hosting, "Hosting Service")
Technology_Service(backup, "Backup Service")
Rel_Assignment(tomcat, warFile)
Rel_Assignment(postgres, dbSchema)
Rel_Serving(loadBalancer, appServer)
Rel_Association(internet, https)
Rel_Realization(apiPath, https)
Rel_Flow(userDevice, loadBalancer)
@endumlRender this offline
This template ships in Gnomon and renders on your machine, with no account and nothing sent to a server. The browser editor is free and needs no install.
Others in ArchiMate diagrams
- Layered ViewThe classic view: business over application over technology.
- Motivation ViewWhy, not what. Drivers, goals, principles, requirements.
- Business LayerProcesses, actors, services at the business layer.
- Application LayerComponents and the services they expose.
- Implementation & MigrationWork packages, deliverables, plateaus: for migration.