Skip to content

Status Pages

Create status pages to share your service’s uptime with your users.

Create a new page from the “Status Pages” menu in the dashboard.

FieldDescription
Page NameTitle of the status page
SlugURL path (e.g., my-service). Only lowercase alphanumeric characters and hyphens
DescriptionOverview description of the service
VisibilityToggle between public / private

Select the monitors to display on the status page. You can group multiple monitors together.

Status pages are published at the following URL:

https://status.manako.dev/{slug}

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)

Below each monitor, a color bar displays the uptime status for the past 90 days.

ColorMeaning
Green100% uptime
Light greenOver 99% uptime (minor issues)
YellowOver 95% uptime (performance degradation)
RedBelow 95% (major outage)
GrayNo data

The overall 90-day uptime percentage is displayed at the right end of the bar.

SVG status badges are available for embedding in READMEs and external sites. No authentication required, cached for 60 seconds.

Displays the aggregated status of all monitors linked to the status page.

https://status.manako.dev/{slug}/badge.svg

Displayed statuses:

StatusCondition
operationalAll monitors are up
partial outageSome monitors are down
degradedSome monitors are degraded (no outages). The current HTTP / TCP / Ping monitors only return up / down, so this state does not occur
unknownNo monitors registered or status unknown

Displays the status of a specific monitor. The monitor name is used as the label.

https://status.manako.dev/{slug}/monitors/{monitorId}/badge.svg

Customize the badge appearance.

ParameterDescriptionDefault
labelLeft side label textPage name or monitor name
styleflat or flat-squareflat
colorRight side background color (hex, without #)Status-dependent color
labelColorLeft side background color (hex, without #)555

Example:

https://status.manako.dev/my-service/badge.svg?label=My+Service&style=flat-square

Markdown:

![Status](https://status.manako.dev/my-service/badge.svg)

HTML:

<img src="https://status.manako.dev/my-service/badge.svg" alt="Status" />