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

chore(slacknotifier): remove fusion-cache timeout exception from slack alerts #1271

Merged
merged 1 commit into from
Oct 11, 2024
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
3 changes: 2 additions & 1 deletion .azure/modules/functionApp/slackNotifier.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ resource notifyDevTeam 'Microsoft.Insights/actionGroups@2023-01-01' = {
var query = '''
union
(exceptions
| where not(customDimensions.['Service Type'] == 'API Management')),
| where not(customDimensions.['Service Type'] == 'API Management')
| where type != "ZiggyCreatures.Caching.Fusion.SyntheticTimeoutException"),
(traces
| where severityLevel >= 3 or (severityLevel >= 2 and customDimensions.SourceContext startswith "Digdir"))
| where operation_Name !startswith "GET /health/"
Expand Down
Loading