Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ“ minor updtae (#1262)

* ๐Ÿ“ minor updtae

* add redirect

* ci: apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

Thibault Le Ouay
autofix-ci[bot]
and committed by
GitHub
50573c26 e0f4351c

+12 -10
-5
README.md
··· 47 47 call<br/><br/> 48 48 <a href="https://cal.com/team/openstatus/30min"><img alt="Book us with Cal.com" src="https://cal.com/book-with-cal-dark.svg" /></a> 49 49 50 - ## Roadmap ๐Ÿ—บ๏ธ 51 - 52 - Here's our [roadmap](https://openstatus.productlane.com/roadmap) feel free to 53 - contribute to it. 54 - 55 50 ## Contributing ๐Ÿค 56 51 57 52 If you want to help us building the best status page and alerting system, you
+2 -2
apps/docs/src/content/docs/index.mdx
··· 14 14 15 15 ### What is OpenStatus? 16 16 17 - [OpenStatus](https://www.openstatus.dev) is an open-source synthetic monitoring tool that helps you monitor the availability and performance of your website, API, servers, or anything that can be monitored from various locations around the world. 17 + [OpenStatus](https://www.openstatus.dev) is an open-source synthetic monitoring tool that helps you monitor the availability and performance of your website, API, servers, or anything that can be monitored from various locations around the world. 18 18 19 19 We also provide beautiful [status pages](/status-page/overview) to keep your users informed about the status of your services. 20 20 ··· 47 47 <CardGrid> 48 48 <LinkCard href="https://www.openstatus.dev/discord" title="Discord"/> 49 49 <LinkCard href="https://bsky.app/profile/openstatus.dev" title="Bluesky" /> 50 - </CardGrid> 50 + </CardGrid>
+3 -2
apps/server/src/routes/v1/monitors/schema.ts
··· 194 194 .default(false) 195 195 .openapi({ description: "If the monitor is public" }), 196 196 degradedAfter: z.number().nullish().openapi({ 197 - description: "The time after the monitor is considered degraded", 197 + description: 198 + "The time after the monitor is considered degraded in milliseconds", 198 199 }), 199 200 timeout: z.number().nullish().default(45000).openapi({ 200 - description: "The timeout of the request", 201 + description: "The timeout of the request in milliseconds", 201 202 }), 202 203 jobType: z.enum(monitorJobTypes).optional().default("http").openapi({ 203 204 description: "The type of the monitor",
-1
apps/web/src/app/(content)/(landing)/[slug]/page.tsx
··· 6 6 import { landingsConfig } from "@/config/landings"; 7 7 import { Button } from "@openstatus/ui"; 8 8 import type { Metadata } from "next"; 9 - import Image from "next/image"; 10 9 import Link from "next/link"; 11 10 import { notFound } from "next/navigation"; 12 11
+7
apps/web/src/app/(redirect)/schema.json/page.tsx
··· 1 + import { redirect } from "next/navigation"; 2 + 3 + export default function SchemaJsonRedirect() { 4 + return redirect( 5 + "https://github.com/openstatusHQ/json-schema/releases/latest/download/schema.json", 6 + ); 7 + }