export const monitors = [ { id: 1, name: "OpenStatus Marketing", description: "Marketing website for OpenStatus", public: false, active: true, status: "Normal" as const, url: "https://openstatus.dev", tags: ["Production"], lastIncident: undefined, p50: 110, p90: 200, p99: 250, }, { id: 2, name: "OpenStatus API", description: "API for OpenStatus", public: false, active: true, status: "Normal" as const, url: "https://api.openstatus.dev/v1/ping", tags: ["Production", "API"], lastIncident: undefined, p50: 34, p90: 201, p99: 530, }, { id: 3, name: "OpenStatus App", description: "Dashboard for OpenStatus", public: false, active: true, status: "Failing" as const, url: "https://openstatus.dev/app", tags: ["Production"], lastIncident: "10 minutes ago", p50: 130, p90: 200, p99: 250, }, { id: 4, name: "Lightweight OS", description: "Lightweight Operations System", public: false, active: false, status: "Inactive" as const, url: "https://data-table.openstatus.dev/light", tags: ["Development"], lastIncident: undefined, p50: undefined, p90: undefined, p99: undefined, }, { id: 5, name: "Astro Status Page", description: "Status page for Astro", public: false, active: true, status: "Degraded" as const, url: "https://status.openstat.us", tags: ["Development"], lastIncident: undefined, p50: 130, p90: 201, p99: 250, }, { id: 6, name: "Vercel Edge Ping", description: "Ping for Vercel Edge", public: false, active: true, status: "Normal" as const, url: "https://light.openstatus.dev", tags: ["Staging"], lastIncident: "15 days ago", p50: 30, p90: 240, p99: 400, }, ]; export type Monitor = (typeof monitors)[number];