Openstatus www.openstatus.dev

add docs dns monitoring (#1594)

* add docs dns monitoring

* fix link

authored by

Thibault Le Ouay and committed by
GitHub
f989c21e 562a9b97

+35
+4
apps/docs/astro.config.mjs
··· 156 156 }, 157 157 }, 158 158 { 159 + label: "DNS Monitor", 160 + slug: "reference/dns-monitor", 161 + }, 162 + { 159 163 label: "HTTP Monitor", 160 164 slug: "reference/http-monitor", 161 165 },
+22
apps/docs/src/content/docs/reference/dns-monitor.mdx
··· 1 + --- 2 + title: DNS Monitor 3 + --- 4 + 5 + A DNS Monitor is a component that allows you to monitor the status of DNS records. It can be used to monitor the status of a domain name, a subdomain, or any other DNS record. 6 + 7 + It will fetch the following DNS record types: 8 + - A 9 + - AAAA 10 + - CNAME 11 + - MX 12 + - NS 13 + - TXT 14 + 15 + ## Configuration 16 + 17 + ### URI 18 + The domain or subdomain you want to monitor e.g `openstat.us` 19 + 20 + ### Regions 21 + 22 + The regions where we are triggering the DNS request.
+7
apps/docs/src/content/docs/reference/status-page.mdx
··· 26 26 ### Favicon 27 27 28 28 You can add a favicon for your status page. 29 + 30 + 31 + ### JSON Feed 32 + 33 + You can access your status page data in JSON format by appending `/feed/json` to your status page URL. 34 + 35 + Example: `https://status.openstatus.dev/feed/json`
+2
apps/web/src/content/changelog/json-status-page.mdx apps/web/src/content/pages/changelog/json-status-page.mdx
··· 3 3 description: Get your status page data as JSON. 4 4 image: /assets/changelog/json-status-page.png 5 5 publishedAt: 2025-11-27 6 + author: "openstatus" 7 + category: "statuspage" 6 8 --- 7 9 We're excited to announce that you can now access your status page data in JSON format! This feature allows you to create exciting tool/integration using your status page data. 8 10