Skip to content

Commit 0cf1bc7

Browse files
authored
Miscellaneous small improvements: typos, updates, etc (#1312)
* feat: clarify Authorization header format for Jira webhook * feat: document --debug-bundle option for npx checkly deploy * feat: add units of measurement to data retention table * fix: extra space typo on runtime specifications page * fix: SSLHopper name typo * feat: update reset password instructions to match the current UI * feat: clarify that you can set RetryStrategy at the project level as well * feat: add notification log limitation about SSL cert expiration alerts not being logged * feat: update runtimeId in code samples to latest runtime * feat: add Israel to supported countries/regions for phone calls
1 parent 05c87f5 commit 0cf1bc7

File tree

12 files changed

+24
-20
lines changed

12 files changed

+24
-20
lines changed

site/content/docs/accounts-and-users/changing-your-email-password.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ To change your password, follow these steps:
3535

3636
1. Log out of your current session.
3737
2. Go to the [login page](https://app.checklyhq.com/login).
38-
3. Click the **Don't remember your password?** link.
39-
4. Follow the instructions to reset your password.
38+
3. Enter your email address and click the **Log in** button.
39+
4. Click the **Forgot password?** link.
40+
5. Follow the instructions to reset your password.
4041

4142
After successfully resetting your password, you can log in with your new password.

site/content/docs/alerting-and-retries/alert-notification-log.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ sent etc.
3030

3131
## Known limitations
3232

33-
There are some limits to what notification deliveries we can track currently.
33+
There are some limits to how we track notifications currently.
3434

3535
1. SMS delivery can not be tracked up to your phone correctly receiving the SMS. We currently only track if our SMS
3636
provider ([AWS SNS](https://docs.aws.amazon.com/sns/latest/dg/sns-mobile-phone-number-as-subscriber.html)) has correctly
3737
received our request to send the SMS.
3838
2. Email delivery is tracked up to our request to our email provider. We use [Postmark](https://postmarkapp.com/) to send our emails.
3939
3. Many alert channels are retried transparently: we only show you the result of the last retry.
40+
4. SSL certificate expiration alerts are not shown in the notification log.

site/content/docs/alerting-and-retries/phone-calls.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ You can add as many phone number channels as you like.
2929
| France (+33) |
3030
| Germany (+49) |
3131
| India (+91) |
32+
| Israel (+972) |
3233
| Lithuania (+370) |
3334
| Malta (+356) |
3435
| Netherlands (+31) |

site/content/docs/alerting-and-retries/ssl-expiration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ When you update your check's URL or your SSL cert, allow up to an hour for the S
3737
If prompted with this error, the usual cause is the certificate chain of the given website being incomplete. This will
3838
not happen with a browser check, because the browser will complete the certificate chain on its own. When running an API check,
3939
though, no browser is involved - therefore the error takes place. You can use an online SSL checker
40-
(e.g.: [SSLHopper](https://www.sslshopper.com/ssl-checker.html)) to help you diagnose issues with your certificate.
40+
(e.g.: [SSL Shopper](https://www.sslshopper.com/ssl-checker.html)) to help you diagnose issues with your certificate.
4141

4242
## Browser checks
4343
Since browser checks can connect to multiple domains, you need to set the SSL certificate domain to receive certificate alerts for them.

site/content/docs/alerting-and-retries/webhooks.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,11 +353,13 @@ We will be creating a POST request to `{{JIRA_INSTANCE_URL}}/rest/api/3/issue`,
353353
The required headers will be:
354354

355355
```
356-
Authorization: <YOUR_JIRA_BASIC_AUTH>
356+
Authorization: Basic <base64 encoded user_email:api_token_string>
357357
Accept: application/json
358358
Content-Type: application/json
359359
```
360360

361+
For more details on authenticating with the Jira API, refer to [Atlassian's guide on basic authentication](https://developer.atlassian.com/cloud/jira/software/basic-auth-for-rest-apis/).
362+
361363
An example body could look as follows:
362364

363365
``` {title="Webhook Body"}

site/content/docs/cli/command-line-reference.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ npx checkly deploy
8383
```
8484

8585
- `--config` or `-c`: You can specify a particular configuration file, e.g. `--config="./checkly.staging.config.ts"`
86+
- `--debug-bundle`: Generate a JSON file containing the data sent to our servers when you deploy.
8687
- `--force` or `-f`: Skips the confirmation dialog when deploying. Handy in CI environments.
8788
- `--preview` or `-p`: Preview the differences between your actual configuration and your account.
8889
- `--output` or `-o`: Show applied differences after deploying.

site/content/docs/cli/constructs-reference.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default defineConfig({
2626
checks: {
2727
activated: true,
2828
muted: false,
29-
runtimeId: '2022.10',
29+
runtimeId: '2025.04',
3030
frequency: Frequency.EVERY_5M,
3131
locations: ['us-east-1', 'eu-west-1'],
3232
tags: ['website', 'api'],
@@ -51,7 +51,7 @@ export default defineConfig({
5151
- `repoUrl`: An optional URL to a Git repository.
5252

5353
- `checks`: Top-level defaults for all Checks in this Project. If not overridden at the Check or CheckGroup level, these
54-
settings apply to your Checks. Takes all [Check properties](#check)
54+
settings apply to your Checks. Takes all [Check properties](#check).
5555
- `checkMatch`: A glob pattern where the CLI should look for files containing Check constructs. For more info check [the
5656
dedicated docs on checkMatch and testMatch](/docs/cli/using-check-test-match/)
5757
- `ignoreDirectoriesMatch`: An array of glob patterns which directories should be ignored by the `checkMatch` property.
@@ -289,7 +289,7 @@ import * as path from 'path'
289289

290290
new MultiStepCheck('multistep-check-1', {
291291
name: 'Multistep Check #1',
292-
runtimeId: '2023.09',
292+
runtimeId: '2025.04',
293293
frequency: Frequency.EVERY_10M,
294294
locations: ['us-east-1', 'eu-west-1'],
295295
code: {
@@ -939,7 +939,7 @@ new ApiCheck('local-api-1', {
939939
## `RetryStrategy`
940940

941941
`RetryStrategy` objects can be used to configure retries for failed check runs.
942-
Retry strategies can be added to [Check](#check) and [CheckGroup](#checkgroup) constructs.
942+
Retry strategies can be set at the [check](#check), [check group](#checkgroup), and [project](#project) levels.
943943
[Learn more about retry strategies](/docs/alerting-and-retries/retries/#retry-strategies).
944944

945945
To build `RetryStrategy` objects you should use the `RetryStrategyBuilder`, which provides helper methods for configuring retries.

site/content/docs/cli/dynamic-check-creation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const groupPreview = new CheckGroup('group-browser-preview', {
109109
name: 'WebShop - Preview',
110110
activated: true,
111111
muted: false,
112-
runtimeId: '2023.09',
112+
runtimeId: '2025.04',
113113
locations: ['us-east-1', 'eu-west-1'],
114114
tags: ['mac', 'preview'],
115115
// You can use group-level environment vars to point each group's checks to the right target URL
@@ -123,7 +123,7 @@ export const groupProd = new CheckGroup('group-browser-prod', {
123123
name: 'WebShop - Production',
124124
activated: true,
125125
muted: false,
126-
runtimeId: '2023.09',
126+
runtimeId: '2025.04',
127127
locations: ['us-east-1', 'eu-west-1'],
128128
tags: ['mac', 'production'],
129129
// You can use group-level environment vars to point each group's checks to the right target URL

site/content/docs/cli/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default defineConfig({
4545
checks: {
4646
activated: true,
4747
muted: false,
48-
runtimeId: '2022.10',
48+
runtimeId: '2025.04',
4949
frequency: Frequency.EVERY_5M,
5050
locations: ['us-east-1', 'eu-west-1'],
5151
tags: ['website', 'api'],
@@ -71,7 +71,7 @@ const config = {
7171
checks: {
7272
activated: true,
7373
muted: false,
74-
runtimeId: '2022.10',
74+
runtimeId: '2025.04',
7575
frequency: Frequency.EVERY_5M,
7676
locations: ['us-east-1', 'eu-west-1'],
7777
tags: ['website', 'api'],

site/content/docs/cli/project-structure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default defineConfig({
5353
checks: {
5454
activated: true,
5555
muted: false,
56-
runtimeId: '2022.10',
56+
runtimeId: '2025.04',
5757
frequency: Frequency.EVERY_5M,
5858
locations: ['us-east-1', 'eu-west-1'],
5959
tags: ['website', 'api'],
@@ -84,7 +84,7 @@ const config = defineConfig({
8484
checks: {
8585
activated: true,
8686
muted: false,
87-
runtimeId: '2022.10',
87+
runtimeId: '2025.04',
8888
frequency: Frequency.EVERY_5M,
8989
locations: ['us-east-1', 'eu-west-1'],
9090
tags: ['website', 'api'],

0 commit comments

Comments
 (0)