Skip to content
Open
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
2 changes: 1 addition & 1 deletion examples/advanced-project-js/checkly.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const config = defineConfig({
/* A default for how often your Check should run in minutes */
frequency: 10,
/* Checkly data centers to run your Checks as monitors */
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'us-west-1'],
/* An optional array of tags to organize your Checks */
tags: ['mac'],
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const websiteGroup = new CheckGroup('website-check-group-1', {
activated: true,
muted: false,
runtimeId: '2024.09',
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'us-west-1'],
tags: ['mac', 'group'],
environmentVariables: [],
apiCheckDefaults: {},
Expand Down
2 changes: 1 addition & 1 deletion examples/advanced-project/checkly.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const config = defineConfig({
/* A default for how often your Check should run in minutes */
frequency: 10,
/* Checkly data centers to run your Checks as monitors */
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'us-west-1'],
/* An optional array of tags to organize your Checks */
tags: ['mac'],
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as path from 'path'
new MultiStepCheck('multistep-check-1', {
name: 'Multistep API check',
frequency: Frequency.EVERY_1H,
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'us-west-1'],
code: {
entrypoint: path.join(__dirname, '05-multi-step-api.spec.ts')
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const syntheticGroup = new CheckGroupV2('check-group-synthetics', {
activated: true,
muted: false,
frequency: Frequency.EVERY_15M,
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'us-west-1'],
tags: ['synthetics'],
// By setting an alertEscalationPolicy, these settings will override those on individual checks
alertEscalationPolicy: AlertEscalationBuilder.runBasedEscalation(
Expand Down
2 changes: 1 addition & 1 deletion examples/boilerplate-project-js/checkly.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const config = defineConfig({
/* A default for how often your Check should run in minutes */
frequency: 10,
/* Checkly data centers to run your Checks as monitors */
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'us-west-1'],
/* An optional array of tags to organize your Checks */
tags: ['mac'],
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
Expand Down
2 changes: 1 addition & 1 deletion examples/boilerplate-project/checkly.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const config = defineConfig({
/* A default for how often your Check should run in minutes */
frequency: 10,
/* Checkly data centers to run your Checks as monitors */
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'us-west-1'],
/* An optional array of tags to organize your Checks */
tags: ['mac'],
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
Expand Down
Loading