Skip to content

Commit ce56b40

Browse files
Merge branch 'main' into claudeCodeGuide
2 parents 5fa1bf2 + eeef4d6 commit ce56b40

File tree

9 files changed

+515
-1
lines changed

9 files changed

+515
-1
lines changed
361 KB
Loading
328 KB
Loading
217 KB
Loading
246 KB
Loading
764 KB
Loading
431 KB
Loading

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ npx checkly deploy
147147
```
148148

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

site/content/docs/terraform-provider/checks-groups.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,34 @@ For example, a Multistep check can look as follows:
169169
}
170170
```
171171

172+
### Url Monitors
173+
174+
URL monitors check the availability and response time of HTTP(S) endpoints. They are ideal for simple uptime checks and ensure that your endpoints return expected status codes within the configured thresholds.
175+
176+
Below is a sample configuration for a URL monitor using Terraform:
177+
178+
```terraform
179+
resource "checkly_url_monitor" "example-url-monitor" {
180+
name = "Example URL monitor"
181+
activated = true
182+
frequency = 2
183+
use_global_alert_settings = true
184+
185+
locations = [
186+
"eu-west-1"
187+
]
188+
189+
request {
190+
url = "https://welcome.checklyhq.com"
191+
192+
assertion {
193+
source = "STATUS_CODE"
194+
comparison = "EQUALS"
195+
target = "200"
196+
}
197+
}
198+
}
199+
```
172200

173201
### Tcp Monitors
174202

site/content/guides/startup-guide-detect-communiate-resolve.md

Lines changed: 487 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)