获取总体状态

获取 /status.json

检索整个页面的总体状态汇总。

响应

  • 200 application/json

    已成功检索总体状态

    隐藏响应属性 显示响应属性 对象
    • page 对象 必需
      隐藏页面属性 显示页面属性 对象
      • id 字符串 必需

        页面的唯一标识符

      • 名称 字符串 必需

        状态页面的名称

      • url string(uri) 必需

        状态页面的URL

      • updated_at string(date-time) 必需

        上次更新页面的时间戳 (ISO 8601)

    • 状态 对象 必需
      隐藏状态属性 显示状态属性 对象
      • 描述 字符串 必需

        人类可读的描述

      • 指示器 字符串 必需

        状态指示器级别

        取值为 noneminormajorcritical

  • 404 application/json

    未找到请求的资源

    隐藏响应属性 显示响应属性 对象
    • message 字符串 必需

      错误消息

    • 代码 整型

      错误代码

  • 500 application/json

    服务器内部错误

    隐藏响应属性 显示响应属性 对象
    • message 字符串 必需

      错误消息

    • 代码 整型

      错误代码

GET /status.json
curl \
 --request GET 'https://status.mongodb.com/api/v2/status.json'
响应示例 (200)
{
  "page": {
    "id": "y2j98763l56x",
    "url": "https://status.mongodb.com",
    "name": "MongoDB Cloud Status",
    "updated_at": "2025-03-11T00:52:20-07:00"
  },
  "status": {
    "indicator": "none",
    "description": "All Systems Operational"
  }
}
响应示例 (404)
{
  "code": 404,
  "message": "Resource not found"
}
响应示例 (500)
{
  "code": 500,
  "message": "Internal server error"
}