CloudIO Platform
cloudio.ioVersion 3.0 Docs
  • CloudIO Platform
  • Architecture
  • Service Architecture
  • Scalability
  • Installation
  • Getting Started
    • Overview
    • How Tos
  • UI
    • App Controller
    • Page Controller
    • Controller Component
    • Custom Component
      • Sample Property Definitions
      • Custom Component Types
  • DataSource
    • Server Side Scripts
      • Sample Scripts
      • Module Imports
    • WHO Columns
  • REST APIs
    • Authentication
    • Query
    • Post
    • Status
    • API Playground
  • Workflow REST APIs
    • Introduction
    • PUT
    • GET
    • Instance PUT
    • Instance GET
    • Increment and GET
    • Instance Increment and GET
  • App Deployment
    • CloudIO CLI
    • Patch Management
    • SQL Migrations
    • Component Help
    • Email Setup
    • Configure SSO/OAuth
      • OAUTH 2.0
        • GOOGLE
      • SAML
        • AUTH0
        • AZURE AD
        • OKTA
      • Auto User Creation
    • Test Automation
    • On Premise Agent
  • Oracle Instant client
    • Setup
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. REST APIs

Status

Status

GET https://next.cloudio.io/v1/status

This endpoint allows you to get current status of the server that can be used for health checks.

{
  "dbStatus": {
    "active": 0,
    "connectionErrors": 0,
    "doneWaitingCount": 25070,
    "totalFetchRowCount": 110196,
    "totalPostCount": 18641,
    "totalPostRowCount": 18745,
    "totalQueryCount": 10579,
    "waiting": 0,
    "waitingCount": 25070,
    "processStats": {
      "cpuTimeUser": {
        "secs": 4511,
        "nanos": 470000000
      },
      "cpuTimeKernel": {
        "secs": 575,
        "nanos": 460000000
      },
      "memoryUsageBytes": 281223168
    }
  },
  "runningRequests": 0,
  "status": "OK",
  "totalRequests": 117,
  "upTime": "6 days 12 hours 38 minutes ago",
  "wsStatus": {
    "active": 0,
    "connectCount": 179,
    "disconnectCount": 179,
    "enterCount": 3124,
    "exitCount": 2626,
    "kafkaDisconnectCount": 179,
    "totalRequests": 10651,
    "totalSessions": 0,
    "totalUsers": 0,
    "totalDevelopers": 0
  },
  "jsStatus": {
    "active": 0,
    "contexts": []
  }
}
PreviousPostNextAPI Playground

Last updated 3 years ago

Was this helpful?