Storm docs logo
Search the docs.../
Explore Storm Products

Server Status

Returns current status and resource usage of the streaming server.

Request

PropertyValue
MethodGET
URL/api/server/status
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X GET "{BASE_URL}/api/server/status" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response Body

General

ParameterTypeDescription
data.launchDateintegerServer launch time (Unix timestamp in ms)

CPU

ParameterTypeDescription
data.cpuUsagePercentstringCurrent CPU usage percentage

Memory

ParameterTypeDescription
data.memory.totalMemoryintegerTotal available memory in bytes
data.memory.currentMemoryintegerCurrently used memory in bytes
data.memory.usagePercentstringMemory usage percentage

Network

ParameterTypeDescription
data.network.inBandwidthintegerIncoming bandwidth in bytes/sec
data.network.outBandwidthintegerOutgoing bandwidth in bytes/sec
data.network.inTotalBytesintegerTotal incoming bytes
data.network.outTotalBytesintegerTotal outgoing bytes

Thread Pools

ParameterTypeDescription
data.threadpools.workersTotalCountintegerTotal number of worker threads
data.threadpools.workersActiveCountintegerActive worker threads
data.threadpools.readersTotalCountintegerTotal number of reader threads
data.threadpools.readersActiveCountintegerActive reader threads
data.threadpools.sendersTotalCountintegerTotal number of sender threads
data.threadpools.sendersActiveCountintegerActive sender threads
data.threadpools.transportTotalCountintegerTotal number of transport threads
data.threadpools.transportActiveCountintegerActive transport threads

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "launchDate": 1764671260701,
    "cpuUsagePercent": "12.37",
    "memory": {
      "totalMemory": 25769803776,
      "currentMemory": 2900055168,
      "usagePercent": "11.25"
    },
    "network": {
      "inBandwidth": 1518148,
      "outBandwidth": 2337342,
      "inTotalBytes": 163826169682,
      "outTotalBytes": 243354257269
    },
    "threadpools": {
      "workersTotalCount": 96,
      "workersActiveCount": 1,
      "readersTotalCount": 48,
      "readersActiveCount": 0,
      "sendersTotalCount": 144,
      "sendersActiveCount": 1,
      "transportTotalCount": 96,
      "transportActiveCount": 1
    }
  },
  "meta": {
    "executionTime": 1,
    "generatedAt": 1764846064279
  }
}

Error Response (4xx/5xx)

ParameterTypeDescription
messagestringHuman-readable error message
Error Response
Code iconjson
{
  "message": "Error message"
}
Support Needed?

Create a free ticket and our support team will provide you necessary assistance.

Blog
Support
About us
Patents
Term of use
Privacy policy
Contact
©2026 Storm Streaming Media. All Rights Reserved.