blob: 68cd22bfb02f7bbea6ec064df1b6aefb7a4f4897 (
plain)
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
|
digraph "g" {
"group1_running_0" [ style=dashed color="red" fontcolor="orange"]
"group1_start_0" -> "group1_running_0" [ style = dashed]
"group1_start_0" -> "rsc1_start_0 yingying.site" [ style = dashed]
"group1_start_0" -> "rsc2_start_0 yingying.site" [ style = dashed]
"group1_start_0" -> "rsc3_start_0 yingying.site" [ style = dashed]
"group1_start_0" [ style=bold color="green" fontcolor="orange"]
"group1_stop_0" -> "group1_stopped_0" [ style = dashed]
"group1_stop_0" -> "rsc2_stop_0 yingying.site" [ style = dashed]
"group1_stop_0" -> "rsc3_stop_0 yingying.site" [ style = dashed]
"group1_stop_0" [ style=bold color="green" fontcolor="orange"]
"group1_stopped_0" -> "group1_start_0" [ style = dashed]
"group1_stopped_0" [ style=dashed color="red" fontcolor="orange"]
"rsc1_monitor_10000 yingying.site" [ style=dashed color="red" fontcolor="black"]
"rsc1_start_0 yingying.site" -> "group1_running_0" [ style = dashed]
"rsc1_start_0 yingying.site" -> "rsc1_monitor_10000 yingying.site" [ style = dashed]
"rsc1_start_0 yingying.site" -> "rsc2_start_0 yingying.site" [ style = dashed]
"rsc1_start_0 yingying.site" [ style=dashed color="red" fontcolor="black"]
"rsc2_monitor_10000 yingying.site" [ style=dashed color="red" fontcolor="black"]
"rsc2_start_0 yingying.site" -> "group1_running_0" [ style = dashed]
"rsc2_start_0 yingying.site" -> "rsc2_monitor_10000 yingying.site" [ style = dashed]
"rsc2_start_0 yingying.site" -> "rsc3_start_0 yingying.site" [ style = dashed]
"rsc2_start_0 yingying.site" [ style=dashed color="red" fontcolor="black"]
"rsc2_stop_0 yingying.site" -> "group1_stopped_0" [ style = dashed]
"rsc2_stop_0 yingying.site" -> "rsc1_start_0 yingying.site" [ style = dashed]
"rsc2_stop_0 yingying.site" -> "rsc2_start_0 yingying.site" [ style = dashed]
"rsc2_stop_0 yingying.site" [ style=dashed color="red" fontcolor="black"]
"rsc3_monitor_10000 yingying.site" [ style=dashed color="red" fontcolor="black"]
"rsc3_start_0 yingying.site" -> "group1_running_0" [ style = dashed]
"rsc3_start_0 yingying.site" -> "rsc3_monitor_10000 yingying.site" [ style = dashed]
"rsc3_start_0 yingying.site" [ style=dashed color="red" fontcolor="black"]
"rsc3_stop_0 yingying.site" -> "group1_stopped_0" [ style = dashed]
"rsc3_stop_0 yingying.site" -> "rsc2_stop_0 yingying.site" [ style = dashed]
"rsc3_stop_0 yingying.site" -> "rsc3_start_0 yingying.site" [ style = dashed]
"rsc3_stop_0 yingying.site" [ style=dashed color="red" fontcolor="black"]
}
|