From f02a97ec2b73241d35a6e9da057593d03991d186 Mon Sep 17 00:00:00 2001 From: Nocnica Mellifera Date: Wed, 27 Aug 2025 12:40:58 -0700 Subject: [PATCH 1/2] chore: update default regions to US --- examples/advanced-project-js/checkly.config.js | 2 +- .../advanced-project-js/src/__checks__/website-group.check.js | 2 +- examples/advanced-project/checkly.config.ts | 2 +- .../src/__checks__/synthetics/06-multi-step-api.check.ts | 2 +- .../src/__checks__/utils/website-groups.check.ts | 2 +- examples/boilerplate-project-js/checkly.config.js | 2 +- examples/boilerplate-project/checkly.config.ts | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/advanced-project-js/checkly.config.js b/examples/advanced-project-js/checkly.config.js index 7da4b71ab..b6ddfdaa9 100644 --- a/examples/advanced-project-js/checkly.config.js +++ b/examples/advanced-project-js/checkly.config.js @@ -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'], /* 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. diff --git a/examples/advanced-project-js/src/__checks__/website-group.check.js b/examples/advanced-project-js/src/__checks__/website-group.check.js index 784bac09f..fe1a70874 100644 --- a/examples/advanced-project-js/src/__checks__/website-group.check.js +++ b/examples/advanced-project-js/src/__checks__/website-group.check.js @@ -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: {}, diff --git a/examples/advanced-project/checkly.config.ts b/examples/advanced-project/checkly.config.ts index 4453499e2..8905785ef 100644 --- a/examples/advanced-project/checkly.config.ts +++ b/examples/advanced-project/checkly.config.ts @@ -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. diff --git a/examples/advanced-project/src/__checks__/synthetics/06-multi-step-api.check.ts b/examples/advanced-project/src/__checks__/synthetics/06-multi-step-api.check.ts index c95f71a91..5769ff627 100644 --- a/examples/advanced-project/src/__checks__/synthetics/06-multi-step-api.check.ts +++ b/examples/advanced-project/src/__checks__/synthetics/06-multi-step-api.check.ts @@ -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'], code: { entrypoint: path.join(__dirname, '05-multi-step-api.spec.ts') }, diff --git a/examples/advanced-project/src/__checks__/utils/website-groups.check.ts b/examples/advanced-project/src/__checks__/utils/website-groups.check.ts index db33774da..b8a988694 100644 --- a/examples/advanced-project/src/__checks__/utils/website-groups.check.ts +++ b/examples/advanced-project/src/__checks__/utils/website-groups.check.ts @@ -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', 'eu-central-1'], tags: ['synthetics'], // By setting an alertEscalationPolicy, these settings will override those on individual checks alertEscalationPolicy: AlertEscalationBuilder.runBasedEscalation( diff --git a/examples/boilerplate-project-js/checkly.config.js b/examples/boilerplate-project-js/checkly.config.js index 850931a58..8fced6d15 100644 --- a/examples/boilerplate-project-js/checkly.config.js +++ b/examples/boilerplate-project-js/checkly.config.js @@ -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. diff --git a/examples/boilerplate-project/checkly.config.ts b/examples/boilerplate-project/checkly.config.ts index f0ea3cb7b..3c2a81689 100644 --- a/examples/boilerplate-project/checkly.config.ts +++ b/examples/boilerplate-project/checkly.config.ts @@ -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. From 86f49020afe84007cf9a47171bf05511cea82f15 Mon Sep 17 00:00:00 2001 From: Nocnica Mellifera Date: Wed, 27 Aug 2025 12:52:40 -0700 Subject: [PATCH 2/2] chore: update default regions to US --- examples/advanced-project-js/checkly.config.js | 2 +- .../src/__checks__/synthetics/06-multi-step-api.check.ts | 2 +- .../src/__checks__/utils/website-groups.check.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/advanced-project-js/checkly.config.js b/examples/advanced-project-js/checkly.config.js index b6ddfdaa9..45386e5db 100644 --- a/examples/advanced-project-js/checkly.config.js +++ b/examples/advanced-project-js/checkly.config.js @@ -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'], + 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. diff --git a/examples/advanced-project/src/__checks__/synthetics/06-multi-step-api.check.ts b/examples/advanced-project/src/__checks__/synthetics/06-multi-step-api.check.ts index 5769ff627..bdfd631a7 100644 --- a/examples/advanced-project/src/__checks__/synthetics/06-multi-step-api.check.ts +++ b/examples/advanced-project/src/__checks__/synthetics/06-multi-step-api.check.ts @@ -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'], + locations: ['us-east-1', 'us-west-1'], code: { entrypoint: path.join(__dirname, '05-multi-step-api.spec.ts') }, diff --git a/examples/advanced-project/src/__checks__/utils/website-groups.check.ts b/examples/advanced-project/src/__checks__/utils/website-groups.check.ts index b8a988694..2bec21520 100644 --- a/examples/advanced-project/src/__checks__/utils/website-groups.check.ts +++ b/examples/advanced-project/src/__checks__/utils/website-groups.check.ts @@ -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-central-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(