1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
digraph "g" {
"cl-test_running_0" [ style=bold color="green" fontcolor="orange" ]
"cl-test_start_0" -> "cl-test_running_0" [ style = bold]
"cl-test_start_0" -> "gr-test:0_start_0" [ style = bold]
"cl-test_start_0" -> "gr-test:1_start_0" [ style = bold]
"cl-test_start_0" [ style=bold color="green" fontcolor="orange" ]
"gr-test:0_running_0" -> "cl-test_running_0" [ style = bold]
"gr-test:0_running_0" [ style=bold color="green" fontcolor="orange" ]
"gr-test:0_start_0" -> "gr-test:0_running_0" [ style = bold]
"gr-test:0_start_0" -> "test:0_start_0 web1" [ style = bold]
"gr-test:0_start_0" [ style=bold color="green" fontcolor="orange" ]
"gr-test:1_running_0" -> "cl-test_running_0" [ style = bold]
"gr-test:1_running_0" [ style=bold color="green" fontcolor="orange" ]
"gr-test:1_start_0" -> "gr-test:1_running_0" [ style = bold]
"gr-test:1_start_0" -> "test:1_start_0 web2" [ style = bold]
"gr-test:1_start_0" [ style=bold color="green" fontcolor="orange" ]
"test:0_start_0 web1" -> "gr-test:0_running_0" [ style = bold]
"test:0_start_0 web1" [ style=bold color="green" fontcolor="black" ]
"test:1_start_0 web2" -> "gr-test:1_running_0" [ style = bold]
"test:1_start_0 web2" [ style=bold color="green" fontcolor="black" ]
}
|