-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTemplateC1NS_CloudWatch_Panel_2C1NS_variable_v4.yml
253 lines (253 loc) · 11.4 KB
/
TemplateC1NS_CloudWatch_Panel_2C1NS_variable_v4.yml
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
AWSTemplateFormatVersion: "2010-09-09"
Description: Creates Cloudwatch Dashboard for Cloud One Network Security
Parameters:
DashboardName:
Description: Insert the Name for the CloudWatch Panel
Type: String
Default: Cloud_One_Network_Security_Panel
C1NSInstanceID1:
Description: Insert the Instance ID of Network Security Instance
Type: String
C1NSAlarmID1:
Description: Insert the ARN for the Network Security Instance Alarm
Type: String
C1NSInstanceID2:
Description: Insert the Instance ID of Network Security Instance
Type: String
C1NSAlarmID2:
Description: Insert the ARN for the Network Security Instance Alarm
Type: String
C1NSRegion:
Description: Insert the Region where the Network Security Instance sits
Type: String
Default: us-east-1
Resources:
BasicDashboard:
Type: AWS::CloudWatch::Dashboard
Properties:
DashboardName: !Ref DashboardName
DashboardBody:
Fn::Sub: '{
"widgets": [
{
"type": "alarm",
"x":0,
"y":0,
"width": 12,
"height": 3,
"properties": {
"alarms": [
"${C1NSAlarmID1}",
"${C1NSAlarmID2}"
],
"region": [
"${C1NSRegion}"
],
"period": 60,
"title": "Cloud One Network Security - Status"
}
},
{
"type": "metric",
"x":0,
"y":4,
"width": 24,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"metrics": [
[ "AWS/EC2", "CPUUtilization", "InstanceId", "${C1NSInstanceID1}" ],
[ ".", "NetworkIn", ".", "." ],
[ ".", "NetworkOut", ".", "." ],
[ ".", "NetworkPacketsIn", ".", "." ],
[ ".", "NetworkPacketsOut", ".", "." ],
[ ".", "StatusCheckFailed_System", ".", "." ],
[ ".", "StatusCheckFailed_Instance", ".", "." ],
[ "AWS/EC2", "CPUUtilization", "InstanceId", "${C1NSInstanceID2}" ],
[ ".", "NetworkIn", ".", "." ],
[ ".", "NetworkOut", ".", "." ],
[ ".", "NetworkPacketsIn", ".", "." ],
[ ".", "NetworkPacketsOut", ".", "." ],
[ ".", "StatusCheckFailed_System", ".", "." ],
[ ".", "StatusCheckFailed_Instance", ".", "." ]
],
"view": "singleValue",
"period": 60,
"title": "Cloud One Network Security - Statistics",
"stat": "Average"
}
},
{
"type": "metric",
"x":0,
"y":11,
"width": 14,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"metrics": [
[ "AWS/EC2", "NetworkIn", "InstanceId", "${C1NSInstanceID1}" ],
[ ".", "NetworkOut", ".", "." ],
[ "AWS/EC2", "NetworkIn", "InstanceId", "${C1NSInstanceID2}" ],
[ ".", "NetworkOut", ".", "." ]
],
"view": "timeSeries",
"period": 60,
"title": "Data Transfered Bytes",
"stat": "Average"
}
},
{
"type": "metric",
"x":16,
"y":11,
"width": 8,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"metrics": [
[ "AWS/EC2", "NetworkIn", "InstanceId", "${C1NSInstanceID1}" ],
[ ".", "NetworkOut", ".", "." ],
[ "AWS/EC2", "NetworkIn", "InstanceId", "${C1NSInstanceID2}" ],
[ ".", "NetworkOut", ".", "." ]
],
"view": "singleValue",
"period": 60,
"title": "Bytes Consumed",
"stat": "Sum",
"setPeriodToTimeRange": true
}
},
{
"type": "metric",
"x":0,
"y":18,
"width": 14,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"metrics": [
[ "AWS/EC2", "NetworkPacketsIn", "InstanceId", "${C1NSInstanceID1}" ],
[ ".", "NetworkPacketsOut", ".", "." ],
[ "AWS/EC2", "NetworkPacketsIn", "InstanceId", "${C1NSInstanceID2}" ],
[ ".", "NetworkPacketsOut", ".", "." ]
],
"view": "timeSeries",
"period": 60,
"title": "Packets Transfered",
"stat": "Average"
}
},
{
"type": "metric",
"x":16,
"y":18,
"width": 8,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"metrics": [
[ "AWS/EC2", "NetworkPacketsIn", "InstanceId", "${C1NSInstanceID1}" ],
[ ".", "NetworkPacketsOut", ".", "." ],
[ "AWS/EC2", "NetworkPacketsIn", "InstanceId", "${C1NSInstanceID2}" ],
[ ".", "NetworkPacketsOut", ".", "." ]
],
"view": "singleValue",
"period": 60,
"title": "Packets Transfered",
"stat": "Sum",
"setPeriodToTimeRange": true
}
},
{
"type": "log",
"x":0,
"y":24,
"width": 24,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"view": "bar",
"period": 60,
"title": "Cloud One Network Security - BLOCK Action",
"stat": "Sum",
"query": "SOURCE \u0027network_security_logs\u0027 | fields @timestamp, @message \n| sort @timestamp desc \n| limit 20 \n| filter @message like \"Block\" \n| filter @message not like \"IP Reputation\" \n| stats count() by bin(30s) "
}
},
{
"type": "log",
"x":0,
"y":31,
"width": 24,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"view": "table",
"period": 60,
"title": "Cloud One Network Security - BLOCK Action",
"stat": "Sum",
"query": "SOURCE \u0027network_security_logs\u0027 | fields @timestamp, @message \n| sort @timestamp desc \n| limit 20 \n| filter @message like \"Block\" \n| filter @message not like \"IP Reputation\" "
}
},
{
"type": "log",
"x":0,
"y":38,
"width": 24,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"view": "bar",
"period": 60,
"title": "Cloud One Network Security - PERMIT Action",
"stat": "Sum",
"query": "SOURCE \u0027network_security_logs\u0027 | fields @timestamp, @message \n| sort @timestamp desc \n| limit 20 \n| filter @message like \"Permit\" \n| filter @message not like \"IP Reputation\" \n| stats count() by bin(30s) "
}
},
{
"type": "log",
"x":0,
"y":45,
"width": 24,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"view": "table",
"period": 60,
"title": "Cloud One Network Security - PERMIT Action",
"stat": "Sum",
"query": "SOURCE \u0027network_security_logs\u0027 | fields @timestamp, @message \n| sort @timestamp desc \n| limit 20 \n| filter @message like \"Permit\" \n| filter @message not like \"IP Reputation\" "
}
},
{
"type": "log",
"x":0,
"y":52,
"width": 24,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"view": "bar",
"period": 60,
"title": "Cloud One Network Security - Geo BLOCK",
"stat": "Sum",
"query": "SOURCE \u0027network_security_logs\u0027 | fields @timestamp, @message \n| sort @timestamp desc \n| limit 20 \n| filter @message like \"Block\" \n| filter @message like \"IP Reputation\" \n| stats count() by bin(30s) "
}
},
{
"type": "log",
"x":0,
"y":59,
"width": 24,
"height": 6,
"properties": {
"region":"${C1NSRegion}",
"view": "table",
"period": 60,
"title": "Cloud One Network Security - Geo BLOCK",
"stat": "Sum",
"query": "SOURCE \u0027network_security_logs\u0027 | fields @timestamp, @message \n| sort @timestamp desc \n| limit 20 \n| filter @message like \"Block\" \n| filter @message like \"IP Reputation\" "
}
}
]
}'