1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
digraph "g" {
"all_stopped" [ style=bold color="green" fontcolor="orange" ]
"do_shutdown star" [ style=bold color="green" fontcolor="black" ]
"gr1_running_0" [ style=bold color="green" fontcolor="orange" ]
"gr1_start_0" -> "gr1_running_0" [ style = bold]
"gr1_start_0" -> "test1_migrate_from_0 world" [ style = bold]
"gr1_start_0" -> "test2_start_0 world" [ style = bold]
"gr1_start_0" [ style=bold color="green" fontcolor="orange" ]
"gr1_stop_0" -> "gr1_start_0" [ style = bold]
"gr1_stop_0" -> "gr1_stopped_0" [ style = bold]
"gr1_stop_0" -> "test1_migrate_to_0 star" [ style = bold]
"gr1_stop_0" -> "test2_stop_0 star" [ style = bold]
"gr1_stop_0" [ style=bold color="green" fontcolor="orange" ]
"gr1_stopped_0" -> "gr1_start_0" [ style = bold]
"gr1_stopped_0" [ style=bold color="green" fontcolor="orange" ]
"test1_migrate_from_0 world" -> "all_stopped" [ style = bold]
"test1_migrate_from_0 world" -> "do_shutdown star" [ style = bold]
"test1_migrate_from_0 world" -> "gr1_running_0" [ style = bold]
"test1_migrate_from_0 world" -> "test1_monitor_10000 world" [ style = bold]
"test1_migrate_from_0 world" -> "test2_start_0 world" [ style = bold]
"test1_migrate_from_0 world" [ style=bold color="green" fontcolor="black" ]
"test1_migrate_to_0 star" -> "all_stopped" [ style = bold]
"test1_migrate_to_0 star" -> "do_shutdown star" [ style = bold]
"test1_migrate_to_0 star" -> "gr1_stopped_0" [ style = bold]
"test1_migrate_to_0 star" -> "test1_migrate_from_0 world" [ style = bold]
"test1_migrate_to_0 star" [ style=bold color="green" fontcolor="black" ]
"test1_monitor_10000 world" [ style=bold color="green" fontcolor="black" ]
"test2_monitor_10000 world" [ style=bold color="green" fontcolor="black" ]
"test2_start_0 world" -> "gr1_running_0" [ style = bold]
"test2_start_0 world" -> "test2_monitor_10000 world" [ style = bold]
"test2_start_0 world" [ style=bold color="green" fontcolor="black" ]
"test2_stop_0 star" -> "all_stopped" [ style = bold]
"test2_stop_0 star" -> "do_shutdown star" [ style = bold]
"test2_stop_0 star" -> "gr1_stopped_0" [ style = bold]
"test2_stop_0 star" -> "test1_migrate_to_0 star" [ style = bold]
"test2_stop_0 star" -> "test2_start_0 world" [ style = bold]
"test2_stop_0 star" [ style=bold color="green" fontcolor="black" ]
}
|