Skip to content
Merged
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion network_speed/grafana/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ resource "grafana_rule_group" "internet_speed_alerts" {
expression = "A"
reducer = "last"
settings = {
mode = "strict"
mode = "dropNN" # drop null/NaN values; alternative: replaceNN
Copy link

Copilot AI Nov 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment mentions "replaceNN" as an alternative, but the correct Grafana reduce mode is "replaceNon" (not "replaceNN"). The mode "replaceNon" replaces non-numeric values with a specified value.

Suggested change
mode = "dropNN" # drop null/NaN values; alternative: replaceNN
mode = "dropNN" # drop null/NaN values; alternative: replaceNon

Copilot uses AI. Check for mistakes.
}
})
}
Expand Down