ATStatus
ATStatus WikiLoading documentation...

Features Settings

Enable and configure optional features for your status page. Access via Admin → Features.

Overview

The Features page allows you to toggle various optional features and configure how certain elements are displayed on your status page. Changes take effect immediately after saving.


Incident Display Position

Control where active incidents appear on your public status page. This setting affects the visual layout without changing incident functionality.

Available Positions

PositionValueDescription
ToptopIncidents appear at the very top of the status page, above the overall system status. Maximum visibility for critical issues.
Below Statusbelow_statusIncidents appear after the overall status indicator but before the component list. Balanced visibility.
Below Componentsbelow_componentsIncidents appear at the bottom, after all components are listed. Component status takes priority.

How to Configure

  1. Navigate to Admin → Features
  2. Find the Incident Display Position section
  3. Select your preferred position from the dropdown
  4. Click Save Changes
Note

This setting affects the display position only. The incident will still update component and group statuses regardless of where it appears on the page.


Component Status from Incidents

When an incident is linked to one or more components, those components automatically display an affected status:

  • Individual Components - Show "Partial Outage" (or incident severity) while incident is active
  • Parent Groups - Groups containing affected components also show affected status
  • Overall Status - System overall status reflects the worst status of any component

Status Calculation

The status displayed follows a "worst wins" approach:

  1. operational - Everything working normally
  2. degraded - Performance issues
  3. partial_outage - Some functionality unavailable
  4. major_outage - Complete service failure
  5. maintenance - Scheduled maintenance in progress
Automatic Recovery

When an incident is resolved, affected components automatically return to their previous (or monitoring-determined) status.


Other Configurable Features

The Features page also includes toggles for:

FeatureDescriptionDefault
Show UptimeDisplay uptime percentages for each componentEnabled
Show Response TimeDisplay response time charts for monitored componentsEnabled
Show HistoryDisplay incident history on the status pageEnabled
Calendar ExportAllow users to export maintenance schedules to calendarDisabled
RSS FeedProvide RSS feed of incidents and maintenanceEnabled
Subscribe ButtonShow email subscription form on status pageEnabled

API Configuration

Feature settings can also be configured via the API:

PUT /api/features
{
  "incidentPosition": "below_status",
  "showUptime": true,
  "showResponseTime": true,
  "showHistory": true,
  "enableCalendarExport": false,
  "showSubscribe": true
}