Status Pages
Create status pages to share your service’s uptime with your users.
Creating a Status Page
Section titled “Creating a Status Page”Create a new page from the “Status Pages” menu in the dashboard.
Basic Settings
Section titled “Basic Settings”| Field | Description |
|---|---|
| Page Name | Title of the status page |
| Slug | URL path (e.g., my-service). Only lowercase alphanumeric characters and hyphens |
| Description | Overview description of the service |
| Visibility | Toggle between public / private |
Linking Monitors
Section titled “Linking Monitors”Select the monitors to display on the status page. You can group multiple monitors together.
Public URL
Section titled “Public URL”Status pages are published at the following URL:
https://status.manako.dev/{slug}Displayed Content
Section titled “Displayed Content”The status page displays the following information:
- Current status of each monitor (Operational / Down / Degraded / Unknown)
- Degraded: The current HTTP / TCP / Ping monitors only return up / down, so this state does not occur
- Uptime history bar (daily uptime for the past 90 days)
- Active incidents (only incidents linked to this specific status page are shown)
- Auto-detected incidents: When a monitor is registered on a status page, incidents detected by that monitor are automatically displayed
- Manual incidents: You select which status pages to display on when creating the incident (at least one required)
Uptime History Bar
Section titled “Uptime History Bar”Below each monitor, a color bar displays the uptime status for the past 90 days.
| Color | Meaning |
|---|---|
| Green | 100% uptime |
| Light green | Over 99% uptime (minor issues) |
| Yellow | Over 95% uptime (performance degradation) |
| Red | Below 95% (major outage) |
| Gray | No data |
The overall 90-day uptime percentage is displayed at the right end of the bar.
Status Badges
Section titled “Status Badges”SVG status badges are available for embedding in READMEs and external sites. No authentication required, cached for 60 seconds.
Page-wide Badge
Section titled “Page-wide Badge”Displays the aggregated status of all monitors linked to the status page.
https://status.manako.dev/{slug}/badge.svgDisplayed statuses:
| Status | Condition |
|---|---|
| operational | All monitors are up |
| partial outage | Some monitors are down |
| degraded | Some monitors are degraded (no outages). The current HTTP / TCP / Ping monitors only return up / down, so this state does not occur |
| unknown | No monitors registered or status unknown |
Individual Monitor Badge
Section titled “Individual Monitor Badge”Displays the status of a specific monitor. The monitor name is used as the label.
https://status.manako.dev/{slug}/monitors/{monitorId}/badge.svgQuery Parameters
Section titled “Query Parameters”Customize the badge appearance.
| Parameter | Description | Default |
|---|---|---|
label | Left side label text | Page name or monitor name |
style | flat or flat-square | flat |
color | Right side background color (hex, without #) | Status-dependent color |
labelColor | Left side background color (hex, without #) | 555 |
Example:
https://status.manako.dev/my-service/badge.svg?label=My+Service&style=flat-squareEmbedding Examples
Section titled “Embedding Examples”Markdown:
HTML:
<img src="https://status.manako.dev/my-service/badge.svg" alt="Status" />