Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { CheckGroupV2, Frequency, AlertEscalationBuilder } = require('checkly/constructs')
const { smsChannel, emailChannel } = require('./alert-channels')
const { emailChannel } = require('./alert-channels')

// This file defines two groups, one for synthetics monitors and one for uptime
// monitors. Read more about group configuration at: https://www.checklyhq.com/docs/groups/
Expand All @@ -17,7 +17,7 @@ const syntheticGroup = new CheckGroupV2('check-group-synthetics', {
{ amount: 2, interval: 5 }, // Send 2 reminders, 5 minutes apart
{ enabled: true, percentage: 50 } // Alert if 50% of parallel runs fail
),
alertChannels: [emailChannel, smsChannel],
alertChannels: [emailChannel],
environmentVariables: [{ key: 'AUTHOR_NAME', value: 'Fric Eromm' }],
concurrency: 10
})
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CheckGroupV2, Frequency, AlertEscalationBuilder } from 'checkly/constructs'
import { smsChannel, emailChannel } from './alert-channels'
import { emailChannel } from './alert-channels'

// This file defines two groups, one for synthetics monitors and one for uptime
// monitors. Read more about group configuration at: https://www.checklyhq.com/docs/groups/
Expand All @@ -17,7 +17,7 @@ export const syntheticGroup = new CheckGroupV2('check-group-synthetics', {
{ amount: 2, interval: 5 }, // Send 2 reminders, 5 minutes apart
{ enabled: true, percentage: 50 } // Alert if 50% of parallel runs fail
),
alertChannels: [emailChannel, smsChannel],
alertChannels: [emailChannel],
environmentVariables: [{ key: 'AUTHOR_NAME', value: 'Fric Eromm' }],
concurrency: 10
})
Expand Down