Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release PR #2308

Merged
merged 26 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
fd22652
[Product Partnerships] Added Network Firewall Entity
rahul188 Feb 21, 2024
e8a6bf3
Updated the Prometheus remote write doc URL
sjyothi54 Feb 22, 2024
8a3ed84
Merge branch 'release' into NR-231634
sjyothi54 Feb 22, 2024
fb674cf
Merge branch 'release' into NR-231634
sjyothi54 Feb 23, 2024
2498b85
feat(Cribl): Update data source to use Framework config
JuliaNocera Feb 24, 2024
b6c6948
feat(Delphix): Update data source to use Framework config
JuliaNocera Feb 24, 2024
3366d46
feat(Gigamon AppInsights): Update data source to use Framework config
JuliaNocera Feb 24, 2024
9d0bbce
feat(Netlify Builds): Update data source to use Framework config
JuliaNocera Feb 24, 2024
3a85687
Updated URL
sjyothi54 Feb 26, 2024
308f046
Updated the description of k6 Prometheus
sjyothi54 Feb 26, 2024
2f440c2
feat(NVIDIA): Remove keyword
JuliaNocera Feb 28, 2024
bed0c55
Merge pull request #2303 from newrelic/jnocera/udpate-nvidia
mickeyryan42 Feb 28, 2024
2458368
chore: Add ai keywords
Feb 29, 2024
eef37a2
Merge branch 'release' into aws-network-firewall
mickeyryan42 Feb 29, 2024
6be0dde
Merge branch 'release' into cayla/ai-keywords
Feb 29, 2024
623c0b7
Merge pull request #2304 from newrelic/cayla/ai-keywords
Feb 29, 2024
bbade9f
Merge branch 'release' into aws-network-firewall
mickeyryan42 Feb 29, 2024
0b0ddca
Merge branch 'release' into NR-232582
mickeyryan42 Feb 29, 2024
733dccb
Merge pull request #2300 from sjyothi54/NR-232582
mickeyryan42 Feb 29, 2024
7526fb6
Merge branch 'release' into NR-231634
mickeyryan42 Feb 29, 2024
701211b
Merge pull request #2296 from sjyothi54/NR-231634
mickeyryan42 Feb 29, 2024
543b332
Merge branch 'release' into aws-network-firewall
mickeyryan42 Feb 29, 2024
a94072e
Merge pull request #2291 from rahul188/aws-network-firewall
mickeyryan42 Feb 29, 2024
8d87bc8
chore: generate UUID(s) [skip ci]
nr-opensource-bot Feb 29, 2024
98fd075
Merge branch 'release' into jewels/update-partner-data-sources
mickeyryan42 Feb 29, 2024
eeb7456
Merge pull request #2299 from JuliaNocera/jewels/update-partner-data-…
mickeyryan42 Feb 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions alert-policies/aws-network-firewall/HighRejectedPackets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: High Rejected Packets

description: |+
This alert is triggered if the number of Rejected Packets exceeds 200 for 10 minutes.

type: STATIC
nrql:
query: "SELECT sum(`aws.networkfirewall.RejectedPackets`) as 'Query' FROM Metric"

# Function used to aggregate the NRQL query value(s) for comparison to the terms.threshold (Default: SINGLE_VALUE)
valueFunction: SINGLE_VALUE

# List of Critical and Warning thresholds for the condition
terms:
- priority: CRITICAL
# Operator used to compare against the threshold.
operator: ABOVE
# Value that triggers a violation
threshold: 200
# Time in seconds; 120 - 3600
thresholdDuration: 600
# How many data points must be in violation for the duration
thresholdOccurrences: ALL

# Adding a Warning threshold is optional
- priority: WARNING
operator: ABOVE
threshold: 100
thresholdDuration: 600
thresholdOccurrences: ALL

# Duration after which a violation automatically closes
# Time in seconds; 300 - 2592000 (Default: 86400 [1 day])
violationTimeLimitSeconds: 86400
34 changes: 34 additions & 0 deletions alert-policies/aws-network-firewall/HighTLSErrors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: High TLS Errors

description: |+
This alert is triggered if the number of TLS Errors exceeds 200 for 10 minutes.

type: STATIC
nrql:
query: "SELECT sum(`aws.networkfirewall.TLSErrors`) as 'Query' FROM Metric"

# Function used to aggregate the NRQL query value(s) for comparison to the terms.threshold (Default: SINGLE_VALUE)
valueFunction: SINGLE_VALUE

# List of Critical and Warning thresholds for the condition
terms:
- priority: CRITICAL
# Operator used to compare against the threshold.
operator: ABOVE
# Value that triggers a violation
threshold: 200
# Time in seconds; 120 - 3600
thresholdDuration: 600
# How many data points must be in violation for the duration
thresholdOccurrences: ALL

# Adding a Warning threshold is optional
- priority: WARNING
operator: ABOVE
threshold: 100
thresholdDuration: 600
thresholdOccurrences: ALL

# Duration after which a violation automatically closes
# Time in seconds; 300 - 2592000 (Default: 86400 [1 day])
violationTimeLimitSeconds: 86400
Loading
Loading