-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbcfg2-tech.gv
More file actions
24 lines (20 loc) · 787 Bytes
/
bcfg2-tech.gv
File metadata and controls
24 lines (20 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
digraph bcfg2 {
label = "Rearchitecture Overview - Technologies";
node [style="filled"];
compound = true;
"master" [shape = "record",
label = "Master server | WSGI via Apache or Nginx"];
"sql" [label = "Supported SQL Database"];
"vcs" [label = "Supported VCS"];
"renderer" [shape = "record",
label = "Configuration Renderers | Custom Daemon"];
"stats" [shape = "record",
label = "Statistics Processors | Custom Daemon"];
"rabbitmq" [shape="record", label="RabbitMQ"];
"sql" -> "renderer" [label="SQL"];
"sql" -> "stats" [label="SQL"];
"vcs" -> "renderer";
"renderer" -> "rabbitmq" [label="AMQP"];
"stats" -> "rabbitmq" [label="AMQP"];
"master" -> "rabbitmq" [label="AMQP"];
}