-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnice.json
More file actions
117 lines (117 loc) · 1.52 KB
/
nice.json
File metadata and controls
117 lines (117 loc) · 1.52 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"type": "box",
"nodes": [
{
"id": 1,
"text": [
"client"
],
"hints": {
"color": "green"
}
},
{
"id": 2,
"text": [
"load balancer"
]
},
{
"id": 3,
"text": [
"server 1"
]
},
{
"id": 4,
"text": [
"server 2"
]
},
{
"id": 5,
"text": [
"server 3"
]
},
{
"id": 6,
"text": [
"cache"
],
"hints": {
"color": "yellow"
}
},
{
"id": 7,
"text": [
"database"
],
"hints": {
"bold": "true",
"color": "red",
"style": "double"
}
}
],
"connections": [
{
"from": 1,
"to": 2,
"arrow": true
},
{
"id": 1,
"from": 2,
"to": 3,
"arrow": true,
"hints": {
"style": "dashed"
}
},
{
"id": 2,
"from": 2,
"to": 4,
"arrow": true,
"hints": {
"style": "dashed"
}
},
{
"id": 3,
"from": 2,
"to": 5,
"arrow": true,
"hints": {
"style": "dashed"
}
},
{
"id": 4,
"from": 3,
"to": 6,
"arrow": true
},
{
"id": 5,
"from": 4,
"to": 6,
"arrow": true
},
{
"id": 6,
"from": 5,
"to": 6,
"arrow": true
},
{
"id": 7,
"from": 6,
"to": 7,
"arrow": true
}
],
"metadata": {}
}