Openstatus www.openstatus.dev

🔥 few improvements (#796)

authored by

Thibault Le Ouay and committed by
GitHub
e0c621bb f934d775

+7 -7
+4 -5
README.md
··· 2 2 3 3 <h3 align="center">OpenStatus</h3> 4 4 5 - <p align="center"> 6 - The Open-Source website & API monitoring platform. 5 + <p align="center"> The Open-Source synthetic and Real User Monitoring monitoring platform. 7 6 <br /> 8 7 <a href="https://www.openstatus.dev"><strong>Learn more »</strong></a> 9 8 <br /> ··· 20 19 21 20 ## About OpenStatus 🏓 22 21 23 - OpenStatus is open-source synthetic monitoring platform with beautiful status 24 - page and incident management. We are building it publicly for everyone to see 25 - our progress. We believe great softwares are built this way. 22 + OpenStatus is open-source synthetic and real user monitoring platform with 23 + beautiful status page and incident management. We are building it publicly for 24 + everyone to see our progress. We believe great softwares are built this way. 26 25 27 26 You can choose to host it yourself or use our hosted version at 28 27 [openstatus.dev](https://www.openstatus.dev)
+1
apps/web/src/middleware.ts
··· 90 90 "/monitors/(.*)", // used when trying subdomain slug via status.documenso.com/monitors/123 91 91 "/verify/(.*)", // used when trying subdomain slug via status.documenso.com/incidents 92 92 "/public/(.*)", 93 + "/badge", // used when trying subdomain slug via status.documenso.com/badge to get the badge 93 94 ], 94 95 ignoredRoutes: ["/api/og", "/discord", "/github", "/status-page/(.*)"], // FIXME: we should check the `publicRoutes` 95 96 beforeAuth: before,
+2 -2
packages/api/src/router/rum/index.ts
··· 27 27 query: ` 28 28 select 29 29 event_name, 30 - quantile(0.5)(value) as median 30 + quantile(0.75)(value) as median 31 31 from cwv 32 32 where 33 33 dsn = '${opts.ctx.workspace.dsn}' ··· 83 83 const pageData = await opts.ctx.clickhouseClient.query({ 84 84 query: ` 85 85 select 86 - quantile(0.5)(value) as value, 86 + quantile(0.75)(value) as value, 87 87 event_name 88 88 from 89 89 cwv