Skip to content

Commit b6eaf54

Browse files
committed
docs(overview): update screenshots with add description button for all check/monitor types
1 parent fd4cf6a commit b6eaf54

25 files changed

+82
-12
lines changed

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,16 @@ sidebarTitle: 'Overview'
99
</Tip>
1010

1111
<Frame>
12-
<img src="/images/browser-check-ide.png" alt="Browser check overview" />
12+
<img
13+
className="block dark:hidden"
14+
src="/images/next/browser-check-overview-light.png"
15+
alt="Browser check overview"
16+
/>
17+
<img
18+
className="hidden dark:block"
19+
src="/images/next/browser-check-overview-dark.png"
20+
alt="Browser check overview"
21+
/>
1322
</Frame>
1423

1524
## What are Browser Checks?

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,19 @@ import GenericRuntimeVariablesTable from '/snippets/generic-runtime-variables-ta
1010
**Monitoring as Code**: Learn more about the [Multistep Check Construct](/constructs/multistep-check).
1111
</Tip>
1212

13+
<Frame>
14+
<img
15+
className="block dark:hidden"
16+
src="/images/next/multistep-check-overview-light.png"
17+
alt="Multistep check overview"
18+
/>
19+
<img
20+
className="hidden dark:block"
21+
src="/images/next/multistep-check-overview-dark.png"
22+
alt="Multistep check overview"
23+
/>
24+
</Frame>
25+
1326
## What are Multistep Checks?
1427

1528
Multistep checks are API-focused tests that perform multiple sequential HTTP requests within a single check. They're designed to test complete user workflows that span multiple API endpoints, ensuring that complex business processes work correctly from start to finish.

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ description: 'Run your Playwright end-to-end test suite as synthetic production
55
tags: ['synthetic-monitoring', 'playwright-checks']
66
---
77

8+
<Frame>
9+
<img
10+
className="block dark:hidden"
11+
src="/images/next/playwright-check-overview-light.png"
12+
alt="Playwright check overview"
13+
/>
14+
<img
15+
className="hidden dark:block"
16+
src="/images/next/playwright-check-overview-dark.png"
17+
alt="Playwright check overview"
18+
/>
19+
</Frame>
20+
821
## What are Playwright Check Suites?
922

1023
**Playwright Check Suites turn your Playwright end-to-end tests into production monitors.** Run entire test suites, specific projects, or tagged tests globally without modifying your existing code or configuration.

detect/uptime-monitoring/dns-monitors/overview.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ sidebarTitle: Overview
55
---
66

77

8+
<Frame>
9+
<img
10+
className="block dark:hidden"
11+
src="/images/next/dns-monitor-overview-light.png"
12+
alt="DNS monitor overview"
13+
/>
14+
<img
15+
className="hidden dark:block"
16+
src="/images/next/dns-monitor-overview-dark.png"
17+
alt="DNS monitor overview"
18+
/>
19+
</Frame>
20+
821
## What are DNS Monitors?
922

1023
DNS monitors check that your DNS records resolve as expected. They help you catch misconfigurations, expired records, or propagation issues before they impact your users.

detect/uptime-monitoring/icmp-monitors/overview.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ sidebarTitle: Overview
77
**Monitoring as Code**: Learn more about the [ICMP Monitor Construct](/constructs/icmp-monitor).
88
</Tip>
99

10+
<Frame>
11+
<img
12+
className="block dark:hidden"
13+
src="/images/next/icmp-monitor-overview-light.png"
14+
alt="ICMP monitor overview"
15+
/>
16+
<img
17+
className="hidden dark:block"
18+
src="/images/next/icmp-monitor-overview-dark.png"
19+
alt="ICMP monitor overview"
20+
/>
21+
</Frame>
22+
1023
## What are ICMP Monitors?
1124

1225
ICMP monitors check if a host is reachable by sending ICMP Echo Requests (pings). Typical use cases include:

detect/uptime-monitoring/tcp-monitors/overview.mdx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,18 @@ For example, use these checks to verify that:
1818
* Your FTP server responds correctly to commands
1919
* Your custom TCP-based service returns the expected response when sent a health check message
2020

21-
![TCP monitor interface showing connection status](/images/docs/images/tcp-monitors/tcp-check-overview.png)
21+
<Frame>
22+
<img
23+
className="block dark:hidden"
24+
src="/images/next/tcp-monitor-overview-light.png"
25+
alt="TCP monitor overview"
26+
/>
27+
<img
28+
className="hidden dark:block"
29+
src="/images/next/tcp-monitor-overview-dark.png"
30+
alt="TCP monitor overview"
31+
/>
32+
</Frame>
2233

2334
## How TCP Monitoring Works
2435

detect/uptime-monitoring/url-monitors/overview.mdx

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,16 @@ sidebarTitle: Overview
1111

1212
URL monitors track the availability of your HTTP-based services by sending requests to specified URLs and validating avaliability and performance.
1313

14-
<Frame>
15-
<img
16-
className="block dark:hidden"
17-
src="/images/next/url-monitor-overview-light.png"
18-
alt="URL monitor overview"
14+
<img
15+
className="block dark:hidden"
16+
src="/images/next/url-monitor-overview-light.png"
17+
alt="URL monitor overview"
1918
/>
20-
<img
21-
className="hidden dark:block"
22-
src="/images/next/url-monitor-overview-dark.png"
23-
alt="URL monitor overview"
19+
<img
20+
className="hidden dark:block"
21+
src="/images/next/url-monitor-overview-dark.png"
22+
alt="URL monitor overview"
2423
/>
25-
</Frame>
2624

2725
**Typical Use Cases Include:**
2826

images/api-check-dark.png

-76.8 KB
Loading

images/api-check-light.png

-74.7 KB
Loading
342 KB
Loading

0 commit comments

Comments
 (0)