Openstatus
www.openstatus.dev
1export const monitors = [
2 {
3 id: 1,
4 name: "OpenStatus Marketing",
5 description: "Marketing website for OpenStatus",
6 public: false,
7 active: true,
8 status: "Normal" as const,
9 url: "https://openstatus.dev",
10 tags: ["Production"],
11 lastIncident: undefined,
12 p50: 110,
13 p90: 200,
14 p99: 250,
15 },
16 {
17 id: 2,
18 name: "OpenStatus API",
19 description: "API for OpenStatus",
20 public: false,
21 active: true,
22 status: "Normal" as const,
23 url: "https://api.openstatus.dev/v1/ping",
24 tags: ["Production", "API"],
25 lastIncident: undefined,
26 p50: 34,
27 p90: 201,
28 p99: 530,
29 },
30 {
31 id: 3,
32 name: "OpenStatus App",
33 description: "Dashboard for OpenStatus",
34 public: false,
35 active: true,
36 status: "Failing" as const,
37 url: "https://openstatus.dev/app",
38 tags: ["Production"],
39 lastIncident: "10 minutes ago",
40 p50: 130,
41 p90: 200,
42 p99: 250,
43 },
44 {
45 id: 4,
46 name: "Lightweight OS",
47 description: "Lightweight Operations System",
48 public: false,
49 active: false,
50 status: "Inactive" as const,
51 url: "https://data-table.openstatus.dev/light",
52 tags: ["Development"],
53 lastIncident: undefined,
54 p50: undefined,
55 p90: undefined,
56 p99: undefined,
57 },
58 {
59 id: 5,
60 name: "Astro Status Page",
61 description: "Status page for Astro",
62 public: false,
63 active: true,
64 status: "Degraded" as const,
65 url: "https://status.openstat.us",
66 tags: ["Development"],
67 lastIncident: undefined,
68 p50: 130,
69 p90: 201,
70 p99: 250,
71 },
72 {
73 id: 6,
74 name: "Vercel Edge Ping",
75 description: "Ping for Vercel Edge",
76 public: false,
77 active: true,
78 status: "Normal" as const,
79 url: "https://light.openstatus.dev",
80 tags: ["Staging"],
81 lastIncident: "15 days ago",
82 p50: 30,
83 p90: 240,
84 p99: 400,
85 },
86];
87
88export type Monitor = (typeof monitors)[number];