@page @model Status.Pages.Admin.SettingsModel @{ ViewData["Title"] = "Settings"; ViewData["Page"] = "admin-settings"; var pwParts = (Model.PasswordMessage ?? "").Split(':', 2); var pwType = pwParts.Length > 1 ? pwParts[0] : ""; var pwMsg = pwParts.Length > 1 ? pwParts[1] : pwParts.ElementAtOrDefault(0) ?? ""; } @if (!string.IsNullOrEmpty(Model.Message)) {
✓ @Model.Message
}
General Settings
Change Password
@if (!string.IsNullOrEmpty(pwMsg)) {
@pwMsg
}
API Endpoints

Use these endpoints to ingest logs or query status from external applications.

POST /api/logs/ingest
GET /api/logs/ingest (batch via GET body)
GET /api/status/summary
GET /api/monitors/{id}/check
View Ingest Docs →