-
-
Notifications
You must be signed in to change notification settings - Fork 1k
[nwdiag] grouping does not work properly #408
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I have another example: @startuml
title = My buggy nwdiag
nwdiag {
network A1 {
Entity_1
Entity_2
}
network A2 {
Entity_2
Entity_3
}
network AB {
Entity_3
Entity_4
}
group {
Entity_2
Entity_1
Entity_3
}
}
@enduml Where Entity_1 and Entity_2 should not be connected to network AB. Removing the group like so: @startuml
title = My OK nwdiag
nwdiag {
network A1 {
Entity_1
Entity_2
}
network A2 {
Entity_2
Entity_3
}
network AB {
Entity_3
Entity_4
}
}
@enduml
|
See also similar reported issue here:
Regards. |
Hi @smoebody, @Code-m0nk3y, and all, That is now fixed with:
@startuml
nwdiag {
internet [ shape = cloud];
internet -- ingress;
group {
app;
db;
}
network proxy {
app;
ingress;
}
network default {
app;
db;
}
}
}
@enduml Or: @startuml
title = My buggy nwdiag
nwdiag {
network A1 {
Entity_1
Entity_2
}
network A2 {
Entity_2
Entity_3
}
network AB {
Entity_3
Entity_4
}
group {
Entity_2
Entity_1
Entity_3
}
}
@enduml Thanks to PlantUML team, 👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the docs this should do:
But it looks like this:

Without
group
the structure is ok:produces:

The text was updated successfully, but these errors were encountered: