···4455Here's some content for the getting started with OpenStatus.
6677-- How to use OpenStatus to test latency in GitHub Actions
77+- [How to use OpenStatus to test latency in GitHub Actions](/guides/test-latency-cf-workers-in-github-actions)
88
···77 <Shell className="flex flex-col gap-8">
88 <HeaderPlay
99 title="Is your endpoint fast?"
1010- description="Check the performance of your website, API from the different continents."
1010+ description="Test the performance of your website, API from the different continents."
1111 />
1212 <div className="mx-auto grid w-full max-w-xl gap-6">
1313 <CheckerForm />
+6-1
apps/web/src/app/play/checker/page.tsx
···66export const metadata: Metadata = {
77 title: "Speed Checker",
88 description:
99- "Get speed insights for your api, website from multiple regions.",
99+ "Test the performance your api, website from multiple regions. Get speed insights for free.",
1010+ openGraph: {
1111+ title: "Speed Checker",
1212+ description:
1313+ "Test the performance your api, website from multiple regions. Get speed insights for free.",
1414+ },
1015};
11161217export default async function PlayPage() {
+2-2
apps/web/src/app/public/monitors/[id]/page.tsx
···4646 value
4747 ?.trim()
4848 ?.split(",")
4949- .filter((i) => flyRegions.includes(i as Region)) ?? flyRegions,
4949+ .filter((i) => flyRegions.includes(i as Region)) ?? []
5050 ),
5151});
5252···119119 period={period}
120120 quantile={quantile}
121121 interval={interval}
122122- regions={regions as Region[]} // FIXME: not properly reseted after filtered
122122+ regions={regions.length ? (regions as Region[]) : monitor.regions} // FIXME: not properly reseted after filtered
123123 monitor={monitor}
124124 isQuantileDisabled={isQuantileDisabled}
125125 metricsByRegion={metricsByRegion}