Products Information on version 3.0.0 for Uptime

Auri

Administrator
Staff member
Administrator
Uptime (3) is in progress, we hope to have the following features

1. Historical data
2. Real-time monitoring (not with an external service like UptimeRobot)
3. Redesigned dashboard
4. New JSON format with more data and customizability
5. 3 new themes

We hope to do testing in May 2025 with an official release in June or July 2025.

Note: uptimematrix.js (2.x) will not work with the 3.x versions. Make sure if you make modifications that they are done in custom.js and not uptimematrix.js

Example of a 3.x data.json file:
Warning: 3.x is still in development, this JSON is not finalized or confirmed.
JSON:
{
  "generated_at": "2025-03-24T21:22:00.916Z",
  "services": [
    {
      "name": "test",
      "description": "ttest",
      "category": "lyrdy",
      "status": "up",
      "last_checked": "2025-03-24 21:22:00",
      "uptime_history": [
        {
          "date": "2025-03-25",
          "uptime": 100
        },
        {
          "date": "2025-03-24",
          "uptime": 100
        }
      ]
    }
  ],
  "incidents": [
    {
      "id": 2,
      "title": "test",
      "description": "test incident",
      "status": "resolved",
      "impact": "high",
      "started_at": "2025-03-24T19:03",
      "resolved_at": "2025-03-24T15:43",
      "postmortem": null,
      "is_maintenance": 0,
      "created_at": "2025-03-24 19:03:28",
      "updated_at": "2025-03-24 19:43:10",
      "updates": [
        {
          "id": 2,
          "incident_id": 2,
          "message": "init",
          "created_at": "2025-03-24 19:03:28"
        }
      ],
      "affected_services": [
        {
          "name": "test",
          "category": "lyrdy"
        }
      ]
    }
  ],
  "announcements": []
}
 
Back
Top