Skip to content

Commit 98fd075

Browse files
authored
Merge branch 'release' into jewels/update-partner-data-sources
2 parents 9d0bbce + 8d87bc8 commit 98fd075

File tree

19 files changed

+741
-3
lines changed

19 files changed

+741
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: High Rejected Packets
2+
3+
description: |+
4+
This alert is triggered if the number of Rejected Packets exceeds 200 for 10 minutes.
5+
6+
type: STATIC
7+
nrql:
8+
query: "SELECT sum(`aws.networkfirewall.RejectedPackets`) as 'Query' FROM Metric"
9+
10+
# Function used to aggregate the NRQL query value(s) for comparison to the terms.threshold (Default: SINGLE_VALUE)
11+
valueFunction: SINGLE_VALUE
12+
13+
# List of Critical and Warning thresholds for the condition
14+
terms:
15+
- priority: CRITICAL
16+
# Operator used to compare against the threshold.
17+
operator: ABOVE
18+
# Value that triggers a violation
19+
threshold: 200
20+
# Time in seconds; 120 - 3600
21+
thresholdDuration: 600
22+
# How many data points must be in violation for the duration
23+
thresholdOccurrences: ALL
24+
25+
# Adding a Warning threshold is optional
26+
- priority: WARNING
27+
operator: ABOVE
28+
threshold: 100
29+
thresholdDuration: 600
30+
thresholdOccurrences: ALL
31+
32+
# Duration after which a violation automatically closes
33+
# Time in seconds; 300 - 2592000 (Default: 86400 [1 day])
34+
violationTimeLimitSeconds: 86400
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: High TLS Errors
2+
3+
description: |+
4+
This alert is triggered if the number of TLS Errors exceeds 200 for 10 minutes.
5+
6+
type: STATIC
7+
nrql:
8+
query: "SELECT sum(`aws.networkfirewall.TLSErrors`) as 'Query' FROM Metric"
9+
10+
# Function used to aggregate the NRQL query value(s) for comparison to the terms.threshold (Default: SINGLE_VALUE)
11+
valueFunction: SINGLE_VALUE
12+
13+
# List of Critical and Warning thresholds for the condition
14+
terms:
15+
- priority: CRITICAL
16+
# Operator used to compare against the threshold.
17+
operator: ABOVE
18+
# Value that triggers a violation
19+
threshold: 200
20+
# Time in seconds; 120 - 3600
21+
thresholdDuration: 600
22+
# How many data points must be in violation for the duration
23+
thresholdOccurrences: ALL
24+
25+
# Adding a Warning threshold is optional
26+
- priority: WARNING
27+
operator: ABOVE
28+
threshold: 100
29+
thresholdDuration: 600
30+
thresholdOccurrences: ALL
31+
32+
# Duration after which a violation automatically closes
33+
# Time in seconds; 300 - 2592000 (Default: 86400 [1 day])
34+
violationTimeLimitSeconds: 86400

0 commit comments

Comments
 (0)