Openstatus www.openstatus.dev

chore: docs (#1111)

* chore: meta image

* chore: clone monitor docs

authored by

Maximilian Kaske and committed by
GitHub
403afa93 80379c8c

+23 -1
+4 -1
apps/docs/astro.config.mjs
··· 1 1 import sitemap from "@astrojs/sitemap"; 2 2 import starlight from "@astrojs/starlight"; 3 3 import tailwind from "@astrojs/tailwind"; 4 - // @ts-check 5 4 import { defineConfig } from "astro/config"; 6 5 import starlightSidebarTopics from "starlight-sidebar-topics"; 7 6 import Icons from "unplugin-icons/vite"; ··· 68 67 { 69 68 label: "Group your monitors", 70 69 slug: "monitoring/group-monitor-tag", 70 + }, 71 + { 72 + label: "Clone a monitor", 73 + slug: "monitoring/clone-monitor", 71 74 }, 72 75 { 73 76 label: "Monitor Types",
apps/docs/src/assets/monitor/clone-monitor.png

This is a binary file and will not be displayed.

+1
apps/docs/src/components/Head.astro
··· 10 10 <Default {...Astro.props}><slot /></Default> 11 11 12 12 <meta property="og:image" content={url} /> 13 + <meta name="twitter:image" content={url} /> 13 14 14 15 15 16 <script is:inline defer data-domain="docs.openstatus.dev" src="https://plausible.io/js/script.js" />
+18
apps/docs/src/content/docs/monitoring/clone-monitor.mdx
··· 1 + --- 2 + title: How to clone a monitor? 3 + description: "How to clone your first monitor with OpenStatus.dev" 4 + --- 5 + 6 + import { Image } from 'astro:assets'; 7 + import monitorDetail from '../../../assets/monitor/clone-monitor.png'; 8 + 9 + 10 + Go to the **Monitors** page, click on three dots and the select the **Clone** button. This will create a new monitor with the same settings as the original monitor (including Status Page, Notifications and Tags). 11 + 12 + By default, the cloned monitor will be in the **inactive** state to allow you to review the settings before activating it. 13 + 14 + <Image 15 + src={monitorDetail} 16 + alt="Charts with status code and response time" 17 + /> 18 +