forked from ytkoka/CloudWatch-Dashboard-for-AWS-WAF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcw-waf-dashboard-regional.yaml
235 lines (234 loc) · 14.5 KB
/
cw-waf-dashboard-regional.yaml
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
AWSTemplateFormatVersion: "2010-09-09"
Description: CloudWatch Dashboard for AWS WAF
Parameters:
CWWAFLogName:
Description: CloudWatch Log Name
Type: String
WebACLName:
Description: Web ACL Name
Type: String
WAFRegion:
Description: WAF Region
Type: String
Default: us-east-1
Resources:
DashboardSideBySide:
Type: AWS::CloudWatch::Dashboard
Properties:
DashboardName: !Sub "${AWS::StackName}"
DashboardBody: !Sub |
{
"widgets": [
{
"type": "metric",
"height": 6,
"width": 6,
"x": 0,
"y": 0,
"properties": {
"metrics": [
[ "AWS/WAFV2", "AllowedRequests", "WebACL", "${WebACLName}", "Region", "${WAFRegion}", "Rule", "ALL", { "id": "m1" } ],
[ ".", "BlockedRequests", ".", ".", ".", ".", ".", ".", { "id": "m2" } ]
],
"view": "timeSeries",
"stacked": true,
"region": "${WAFRegion}",
"stat": "Sum",
"title": "Allowed vs Blocked Requests",
"period": 300,
"yAxis": {
"left": {
"showUnits": false
}
}
}
},
{
"type": "log",
"height": 6,
"width": 6,
"x": 6,
"y": 6,
"properties": {
"query": "SOURCE '${CWWAFLogName}' | fields httpRequest.clientIp\n| stats count(*) as requestCount by httpRequest.country\n| sort requestCount desc\n| limit 100",
"region": "${WAFRegion}",
"title": "Top Countries",
"view": "pie"
}
},
{
"type": "metric",
"height": 6,
"width": 6,
"x": 12,
"y": 0,
"properties": {
"metrics": [
[ { "id": "e1", "expression": "SEARCH('{AWS/WAFV2,Region,Rule,WebACL} MetricName=\"AllowedRequests\" Region=\"${WAFRegion}\" WebACL=\"${WebACLName}\" Rule=\"ALL\"', 'Sum', 300)", "stat": "Sum", "period": 300, "visible": false } ],
[ { "id": "e2", "expression": "SEARCH('{AWS/WAFV2,Region,Rule,WebACL} MetricName=\"BlockedRequests\" Region=\"${WAFRegion}\" WebACL=\"${WebACLName}\" Rule=\"ALL\"', 'Sum', 300)", "stat": "Sum", "period": 300, "visible": false } ],
[ { "id": "e3", "expression": "SEARCH('{AWS/WAFV2,LabelName,LabelNamespace,Region,WebACL} MetricName=\"AllowedRequests\" LabelNamespace=\"awswaf:managed:aws:bot-control:bot:category\" Region=\"${WAFRegion}\" WebACL=\"${WebACLName}\"', 'Sum', 300)", "period": 300, "visible": false } ],
[ { "id": "e4", "expression": "SEARCH('{AWS/WAFV2,LabelName,LabelNamespace,Region,WebACL} MetricName=\"BlockedRequests\" LabelNamespace=\"awswaf:managed:aws:bot-control:bot:category\" Region=\"${WAFRegion}\" WebACL=\"${WebACLName}\"', 'Sum', 300)", "period": 300, "visible": false } ],
[ { "id": "e5", "expression": "SUM([e3,e4])", "label": "Bot requests", "color": "#FF7F0E" } ],
[ { "id": "e6", "expression": "SUM([e1,e2,-e3,-e4])", "label": "Non-bot requests", "color": "#1F77B4" } ]
],
"view": "timeSeries",
"stacked": true,
"region": "${WAFRegion}",
"stat": "Average",
"title": "Bot requests vs Non-bot requests",
"period": 300,
"liveData": false,
"yAxis": {
"left": {
"showUnits": false,
"min": 0
}
}
}
},
{
"type": "metric",
"height": 6,
"width": 6,
"x": 18,
"y": 0,
"properties": {
"metrics": [
[ { "id": "e1", "expression": "SEARCH('{AWS/WAFV2,Region,Rule,WebACL} MetricName=\"AllowedRequests\" Region=\"${WAFRegion}\" WebACL=\"${WebACLName}\" Rule=\"ALL\"', 'Sum', 300)", "stat": "Sum", "period": 300, "visible": false } ],
[ { "id": "e2", "expression": "SEARCH('{AWS/WAFV2,Region,Rule,WebACL} MetricName=\"BlockedRequests\" Region=\"${WAFRegion}\" WebACL=\"${WebACLName}\" Rule=\"ALL\"', 'Sum', 300)", "stat": "Sum", "period": 300, "visible": false } ],
[ { "id": "e3", "expression": "SEARCH('{AWS/WAFV2,LabelName,LabelNamespace,Region,WebACL} MetricName=\"AllowedRequests\" LabelNamespace=\"awswaf:managed:aws:bot-control:bot:category\" Region=\"${WAFRegion}\" WebACL=\"${WebACLName}\"', 'Sum', 300)", "period": 300, "visible": false } ],
[ { "id": "e4", "expression": "SEARCH('{AWS/WAFV2,LabelName,LabelNamespace,Region,WebACL} MetricName=\"BlockedRequests\" LabelNamespace=\"awswaf:managed:aws:bot-control:bot:category\" Region=\"${WAFRegion}\" WebACL=\"${WebACLName}\"', 'Sum', 300)", "period": 300, "visible": false } ],
[ { "id": "e5", "expression": "SUM([e1,e2,-e3,-e4])", "period": 300, "visible": false } ],
[ { "id": "e6", "expression": "(SUM([e3,e4]) / SUM([e1,e2])) * 100", "period": 300, "label": "Bot requests", "color": "#FF7F0E" } ],
[ { "id": "e7", "expression": "(e5 / SUM([e1,e2])) * 100", "period": 300, "label": "Non-bot requests", "color": "#1F77B4" } ]
],
"view": "singleValue",
"region": "${WAFRegion}",
"stat": "Average",
"title": "Percentage of Bot requests",
"period": 300,
"liveData": false,
"setPeriodToTimeRange": true
}
},
{
"type": "log",
"height": 6,
"width": 6,
"x": 12,
"y": 12,
"properties": {
"query": "SOURCE '${CWWAFLogName}' | fields @timestamp, @message\n| filter @message like \"COUNT\"\n| sort @timestamp desc\n| parse @message '\"nonTerminatingMatchingRules\":[{*}]' as nonTerminatingMatchingRules\n| parse @message '\"excludedRules\":[{*}]' as excludedRules\n| display @timestamp, httpRequest.clientIp,httpRequest.uri, httpRequest.country, excludedRules, nonTerminatingMatchingRules\n| limit 100",
"region": "${WAFRegion}",
"title": "Counted Requests",
"view": "table"
}
},
{
"type": "log",
"height": 6,
"width": 6,
"x": 18,
"y": 6,
"properties": {
"query": "SOURCE '${CWWAFLogName}' | fields httpRequest.clientIp\n| stats count(*) as requestCount by httpRequest.clientIp\n| sort requestCount desc\n| limit 100",
"region": "${WAFRegion}",
"title": "Top IP Addresses",
"view": "table"
}
},
{
"type": "log",
"height": 6,
"width": 6,
"x": 0,
"y": 6,
"properties": {
"query": "SOURCE '${CWWAFLogName}' | fields terminatingRuleId\n| stats count(*) as requestCount by terminatingRuleId\n| sort requestCount desc\n| limit 100",
"region": "${WAFRegion}",
"title": "Top Terminating Rules",
"view": "pie"
}
},
{
"type": "metric",
"height": 6,
"width": 6,
"x": 6,
"y": 0,
"properties": {
"metrics": [
[ "AWS/WAFV2", "CountedRequests", "WebACL", "${WebACLName}", "Region", "${WAFRegion}", "Rule", "ALL" ]
],
"view": "timeSeries",
"stacked": true,
"region": "${WAFRegion}",
"stat": "Sum",
"title": "All Counted Requests",
"period": 300,
"yAxis": {
"left": {
"showUnits": false
}
}
}
},
{
"type": "log",
"height": 6,
"width": 6,
"x": 18,
"y": 12,
"properties": {
"query": "SOURCE '${CWWAFLogName}' | fields @timestamp, @message\n| filter @message like /\"action\":\"BLOCK\"/\n| sort @timestamp desc\n| display @timestamp, httpRequest.clientIp,httpRequest.uri, httpRequest.country, terminatingRuleId\n| limit 100",
"region": "${WAFRegion}",
"title": "Blocked Requests",
"view": "table"
}
},
{
"type": "log",
"height": 6,
"width": 6,
"x": 6,
"y": 12,
"properties": {
"query": "SOURCE '${CWWAFLogName}' | fields @timestamp, @message\n| filter @message like /\"action\":\"BLOCK\"/\n| stats count(*) as requestCount by httpRequest.uri\n| sort requestCount desc\n| limit 100",
"region": "${WAFRegion}",
"title": "Top Blocked URIs",
"view": "table"
}
},
{
"type": "log",
"height": 6,
"width": 6,
"x": 0,
"y": 12,
"properties": {
"query": "SOURCE '${CWWAFLogName}' | fields @timestamp, @message\n| filter @message like \"COUNT\"\n| stats count(*) as requestCount by httpRequest.uri\n| sort requestCount desc\n| limit 100",
"region": "${WAFRegion}",
"title": "Top Counted URIs",
"view": "table"
}
},
{
"type": "log",
"height": 6,
"width": 6,
"x": 12,
"y": 6,
"properties": {
"query": "SOURCE '${CWWAFLogName}' | fields @timestamp, @message\n| parse @message /\\{\"name\":\"[Uu]ser\\-[Aa]gent\\\",\\\"value\\\"\\:\\\"(?<UserAgent>[^\"}]*)/\n| stats count(*) as requestCount by UserAgent\n| sort requestCount desc\n| limit 100",
"region": "${WAFRegion}",
"title": "Top User-agents",
"view": "table"
}
}
]
}
Outputs:
Dashboard:
Description: "Dashboard created to monitor AWS WAF"
Value: !Sub |
"https://${AWS::Region}.console.aws.amazon.com/cloudwatch/home#dashboards:name=${AWS::StackName}"