blob: fb33b7b1ff302ec15217763ad490a253ac30b95b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
digraph "g" {
"load_stopped_hex-13 hex-13" -> "test-vm_migrate_to_0 hex-14" [ style = bold]
"load_stopped_hex-13 hex-13" -> "test-vm_start_0 hex-13" [ style = bold]
"load_stopped_hex-13 hex-13" [ style=bold color="green" fontcolor="orange"]
"load_stopped_hex-14 hex-14" [ style=bold color="green" fontcolor="orange"]
"test-vm_migrate_from_0 hex-13" -> "test-vm_start_0 hex-13" [ style = bold]
"test-vm_migrate_from_0 hex-13" -> "test-vm_stop_0 hex-14" [ style = bold]
"test-vm_migrate_from_0 hex-13" [ style=bold color="green" fontcolor="black"]
"test-vm_migrate_to_0 hex-14" -> "test-vm_migrate_from_0 hex-13" [ style = bold]
"test-vm_migrate_to_0 hex-14" [ style=bold color="green" fontcolor="black"]
"test-vm_start_0 hex-13" [ style=bold color="green" fontcolor="orange"]
"test-vm_stop_0 hex-14" -> "load_stopped_hex-14 hex-14" [ style = bold]
"test-vm_stop_0 hex-14" -> "test-vm_start_0 hex-13" [ style = bold]
"test-vm_stop_0 hex-14" [ style=bold color="green" fontcolor="black"]
}
|