-
Notifications
You must be signed in to change notification settings - Fork 4
Fix checkly config #170
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
Merged
Merged
Fix checkly config #170
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0f3081b
Add configuration system with config.json and integrate it into Engine
asrar-mared 144cde9
local changes
nike4949 8774134
Fix: rebuild package.json with modern structure
nike4949 de77045
Merge branch 'main' of https://github.com/asrar-mared/Zayed-Shield
nike4949 64c2023
Fix: convert checkly.config.ts to JS for CLI compatibility
nike4949 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| import { ApiCheck, AssertionBuilder } from 'checkly/constructs' | ||
|
|
||
| // API checks send an HTTP request to a URL endpoint and validate the response. Read more at: | ||
| // https://www.checklyhq.com/docs/api-checks/ | ||
|
|
||
| new ApiCheck('books-api-check-1', { | ||
| name: 'Books API', | ||
| alertChannels: [], | ||
| degradedResponseTime: 10000, // milliseconds | ||
| maxResponseTime: 20000, | ||
| request: { | ||
| url: 'https://danube-web.shop/api/books', | ||
| method: 'GET', | ||
| followRedirects: true, | ||
| skipSSL: false, | ||
| assertions: [ | ||
| AssertionBuilder.statusCode().equals(200), | ||
| AssertionBuilder.jsonBody('$[0].id').isNotNull(), | ||
| ], | ||
| }, | ||
| runParallel: false, | ||
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| import { HeartbeatMonitor } from 'checkly/constructs' | ||
|
|
||
| // Heartbeat monitors allow you to monitor jobs or recurring tasks. | ||
| // After you deploy this check, you'll get a ping URL for your check | ||
| // from the Checkly CLI. This check will generate alerts if it's not | ||
| // getting pings at the generated URL, so it's deactivated for now. | ||
| // Further documentation: https://www.checklyhq.com/docs/heartbeat-monitors/ | ||
|
|
||
| new HeartbeatMonitor('heartbeat-1', { | ||
| name: 'Send weekly newsletter job', | ||
| activated: false, | ||
| period: 1, | ||
| periodUnit: 'hours', | ||
| grace: 30, | ||
| graceUnit: 'minutes', | ||
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| import { test, expect } from '@playwright/test' | ||
|
|
||
| // This test is being used as a Browser check | ||
| // See browserCheck.testMatch in your checkly.config.ts to configure | ||
|
|
||
| test('Visit webshop homepage', async ({ page }) => { | ||
| // The baseURL for Browser checks can be set in the playwrightConfig of your checkly.config.ts | ||
| const response = await page.goto('/') | ||
| expect(response?.status()).toBeLessThan(400) | ||
| await expect(page).toHaveTitle(/Danube WebShop/) | ||
| await page.screenshot({ path: 'homepage.jpg' }) | ||
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import { UrlAssertionBuilder, UrlMonitor } from 'checkly/constructs' | ||
|
|
||
| new UrlMonitor('books-url-check', { | ||
| name: 'Books URL', | ||
| activated: true, | ||
| maxResponseTime: 10000, | ||
| degradedResponseTime: 5000, | ||
| request: { | ||
| url: 'https://www.danube-web.shop/', | ||
| followRedirects: true, | ||
| assertions: [ | ||
| UrlAssertionBuilder.statusCode().equals(200), | ||
| ] | ||
| } | ||
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable files