Skip to content

Commit 43ef151

Browse files
authored
Merge pull request #413 from checkly/docs/general-quickstart-ai-flow
Rework general quickstart around the AI-agent setup flow
2 parents e370a80 + ac87040 commit 43ef151

16 files changed

Lines changed: 689 additions & 163 deletions

File tree

detect/overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ Ready to start monitoring your applications? Choose the approach that best fits
7474
Begin with automated testing for development workflows
7575
</Card>
7676

77-
<Card title="Create Your First Uptime Monitor" href="/quickstarts/url-monitor">
77+
<Card title="Create Your First Uptime Monitor" href="/detect/uptime-monitoring/url-monitors/quickstart">
7878
Set up basic availability monitoring for critical services
7979
</Card>
8080

81-
<Card title="Create Your First Synthetic Check" href="/quickstarts/api-check">
81+
<Card title="Create Your First Synthetic Check" href="/detect/synthetic-monitoring/api-checks/quickstart">
8282
Create comprehensive user experience validation
8383
</Card>
8484
</CardGroup>

quickstarts/openapi-spec.mdx renamed to detect/synthetic-monitoring/api-checks/openapi-spec.mdx

File renamed without changes.

quickstarts/api-check.mdx renamed to detect/synthetic-monitoring/api-checks/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Creating An API Check'
33
description: 'Step-by-step guide to creating your first API check in Checkly using the web UI and CLI.'
4-
sidebarTitle: 'API Check'
4+
sidebarTitle: 'Quickstart'
55
---
66

77
<Tip>

quickstarts/browser-check.mdx renamed to detect/synthetic-monitoring/browser-checks/quickstart.mdx

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Creating A Browser Check'
33
description: 'Get started with Checkly by creating your first Browser Check'
4-
sidebarTitle: 'Browser Check'
4+
sidebarTitle: 'Quickstart'
55
---
66

77
import CliAuth from '/snippets/cli-auth.mdx';
@@ -13,7 +13,7 @@ Learn more about all the [Browser Check capabilities](/detect/synthetic-monitori
1313

1414
This guide will walk you through creating your first Browser Check with Checkly.
1515

16-
Browser Checks are perfect for monitoring realistic user flows within your application or services. If you are looking for monitoring general availability, check out the [Uptime Monitor Quickstart](/quickstarts/url-monitor).
16+
Browser Checks are perfect for monitoring realistic user flows within your application or services. If you are looking for monitoring general availability, check out the [Uptime Monitor Quickstart](/detect/uptime-monitoring/url-monitors/quickstart).
1717

1818
<Accordion title="Prerequisites">
1919
- A Checkly account (sign up at [checklyhq.com](https://checklyhq.com))
@@ -23,10 +23,21 @@ Browser Checks are perfect for monitoring realistic user flows within your appli
2323

2424
<Steps>
2525
<Step title="Create a Browser Check">
26-
27-
28-
- **Head to [Create a Check](https://app.checklyhq.com/accounts/create)**
29-
- **Choose "Browser Check"** for comprehensive website monitoring
26+
<Frame>
27+
<img
28+
className="block dark:hidden"
29+
src="/images/next/quickstart-welcome-light.png"
30+
alt="Light mode interface"
31+
/>
32+
<img
33+
className="hidden dark:block"
34+
src="/images/next/quickstart-welcome-dark.png"
35+
alt="Dark mode interface"
36+
/>
37+
</Frame>
38+
39+
1. **Head to [Create a Check](https://app.checklyhq.com/accounts/create)**
40+
2. **Choose from one of the Browser Check templates** to start from a working example
3041
</Step>
3142

3243
<Step title="Edit Your Test Script">

quickstarts/multistep-check.mdx renamed to detect/synthetic-monitoring/multistep-checks/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Creating A Multistep Check'
33
description: 'Step-by-step guide to creating your first multistep check in Checkly for monitoring complex API workflows and business processes.'
4-
sidebarTitle: 'Multistep Check'
4+
sidebarTitle: 'Quickstart'
55
---
66

77
<Tip>

detect/synthetic-monitoring/playwright-checks/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Customize how your checks run:
112112
## Getting Started
113113

114114
<Columns cols={2}>
115-
<Card title="Quickstart Guide" href="/quickstarts/playwright-check">
115+
<Card title="Quickstart Guide" href="/detect/synthetic-monitoring/playwright-checks/quickstart">
116116
Deploy your first Playwright Check Suite
117117
</Card>
118118

quickstarts/playwright-check.mdx renamed to detect/synthetic-monitoring/playwright-checks/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Creating a Playwright Check Suite'
33
description: 'Turn your Playwright tests into production monitors by creating a checkly.config.ts file'
4-
sidebarTitle: 'Playwright Check Suite'
4+
sidebarTitle: 'Quickstart'
55
---
66

77
import { CopyPromptButton } from "/snippets/copy-prompt-button.jsx";

quickstarts/heartbeat-monitor.mdx renamed to detect/uptime-monitoring/heartbeat-monitors/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Creating A Heartbeat Monitor'
33
description: 'Step-by-step guide to set up your first heartbeat monitor in Checkly. Learn about configuration, timing, alerts, and best practices.'
4-
sidebarTitle: Heartbeat Monitor
4+
sidebarTitle: 'Quickstart'
55
---
66

77
<Tip>

quickstarts/tcp-monitor.mdx renamed to detect/uptime-monitoring/tcp-monitors/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Creating A TCP Monitor'
33
description: 'Step-by-step guide to set up your first TCP monitor and ensure your network services are always available.'
4-
sidebarTitle: 'TCP Monitor'
4+
sidebarTitle: 'Quickstart'
55
---
66

77
<Tip>

quickstarts/url-monitor.mdx renamed to detect/uptime-monitoring/url-monitors/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Creating A URL Monitor'
33
description: 'Step-by-step guide to set up your first URL monitor and ensure your websites and APIs are always accessible.'
4-
sidebarTitle: 'URL Monitor'
4+
sidebarTitle: 'Quickstart'
55
---
66

77
<Tip>

0 commit comments

Comments
 (0)