-
Notifications
You must be signed in to change notification settings - Fork 7
/
board.json
185 lines (185 loc) · 4.49 KB
/
board.json
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
"widgets": [
{
"noResultMessage": "No ingested API keys found",
"description": "show the related entities for all provisioned keys",
"includeDeleted": false,
"id": "4d305ef9-4c30-4ab5-abca-0ac672cb286b",
"title": "API Key Relationships",
"type": "graph",
"config": {
"queries": [
{
"name": "Query 1",
"query": "Find mongodb_api_key that relates to * return TREE"
}
],
"settings": {
"graph": {
"graphNodeView": "expanded",
"graphViewType": "tree"
}
}
}
},
{
"noResultMessage": "No ingested API Keys found",
"questionId": "",
"description": "count of undeleted keys",
"id": "7a939522-532f-4f48-a692-80dc1ad9b3c5",
"title": "API Key Count",
"type": "number",
"config": {
"queries": [
{
"name": "Query 1",
"query": "FIND mongodb_api_key AS i RETURN count(i) as value"
}
],
"settings": {
"number": {
"trendDataIsEnabled": false
}
}
}
},
{
"description": "count of users with production access",
"id": "6173eb71-938b-4b28-851f-dd1974972d63",
"questionId": "",
"title": "Production Access User Count",
"type": "number",
"config": {
"queries": [
{
"name": "Query 1",
"query": "FIND mongodb_user as i THAT HAS << mongodb_project WITH tag.Production = true RETURN count(i) as value"
}
],
"settings": {
"number": {
"warning": {
"limitCondition": "greaterThan",
"val1": "10"
},
"trendDataIsEnabled": false,
"error": {
"limitCondition": "greaterThan",
"val1": "30"
},
"success": {
"limitCondition": "greaterThan",
"val1": "20"
}
}
}
}
},
{
"description": "mapped people with login user for MongoDB",
"id": "c311004b-6fcb-4a2a-a3b5-d5a70f0ad94a",
"questionId": "",
"title": "Count of People with MongoDB Users",
"type": "number",
"config": {
"queries": [
{
"name": "Query 1",
"query": "FIND Person THAT IS << mongodb_user RETURN count (Person) as value"
}
],
"settings": {
"number": {
"warning": {
"limitCondition": "greaterThan",
"val1": "10"
},
"trendDataIsEnabled": false,
"error": {
"limitCondition": "greaterThan",
"val1": "30"
},
"success": {
"limitCondition": "greaterThan",
"val1": "20"
}
}
}
}
},
{
"description": "mapped relationships for production projects",
"noResultMessage": "No ingested MongoDB projects found",
"id": "f4f123eb-f58b-41d0-9bef-116f409f3d2b",
"title": "Production Project Relationships",
"type": "graph",
"config": {
"queries": [
{
"name": "Query 1",
"query": "FIND mongodb_project WITH tag.Production = true THAT RELATES TO * RETURN TREE"
}
],
"settings": {
"graph": {
"graphNodeView": "expanded",
"graphViewType": "mesh"
}
}
}
}
],
"layouts": {
"sm": [],
"xs": [],
"lg": [
{
"static": false,
"w": 12,
"moved": false,
"h": 2,
"x": 0,
"y": 0,
"i": "4d305ef9-4c30-4ab5-abca-0ac672cb286b"
},
{
"static": false,
"w": 4,
"moved": false,
"h": 2,
"x": 0,
"y": 2,
"i": "7a939522-532f-4f48-a692-80dc1ad9b3c5"
},
{
"static": false,
"w": 4,
"moved": false,
"h": 2,
"x": 4,
"y": 2,
"i": "6173eb71-938b-4b28-851f-dd1974972d63"
},
{
"static": false,
"w": 4,
"moved": false,
"h": 2,
"x": 8,
"y": 2,
"i": "c311004b-6fcb-4a2a-a3b5-d5a70f0ad94a"
},
{
"static": false,
"w": 12,
"moved": false,
"h": 2,
"x": 0,
"y": 4,
"i": "f4f123eb-f58b-41d0-9bef-116f409f3d2b"
}
],
"xl": [],
"md": []
}
}