【发布时间】:2017-07-11 06:01:05
【问题描述】:
digraph G {
compound=true;
subgraph SJC {
node [style="filled"];
label = "SJC";
channel [shape=cylinder];
}
subgraph Fleet {
node [style="filled"];
App1 [shape=cylinder];
App2 [shape=cylinder];
App3 [shape=cylinder];
label = "Fleet of machines";
style="filled";
color="lightgrey";
}
App1 -> channel [ltail=SJC, lhead=Fleet];
}
通过上面的代码,我的期望是得到2个与子图对应的容器框。但是,我得到的图像如下:
另外,我收到两个警告。
Warning: cluster named Fleet not found
Warning: cluster named SJC not found
【问题讨论】: