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

Cluster Journal

Returns a paginated list of cluster journal entries (events and messages from cluster operations).

Request

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

Query Parameters

ParameterTypeRequiredDefaultDescription
pageintegerNo1Page number
rowsPerPageintegerNo20Number of items per page
orderBystringNo-Field name to sort by
orderstring"asc" | "desc"-Sort order
With query parameters
Code iconbash
curl -X GET "{BASE_URL}/api/cluster/journal?page=value&rowsPerPage=value&orderBy=value" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response Body

CodeDescription
200Success
401Unauthorized - Invalid or missing token
429Too Many Requests - Rate limit exceeded
500Internal Server Error

Pagination

ParameterTypeDescription
data.totalItemsintegerTotal number of journal entries
data.itemsPerPageintegerNumber of items per page
data.totalPagesintegerTotal number of pages
data.currentPageintegerCurrent page number
data.hasPreviousbooleanIndicates if a previous page exists
data.hasNextbooleanIndicates if a next page exists
data.lastTimestampintegerTimestamp of the most recent entry (Unix timestamp in ms)

Journal Entry Object

ParameterTypeDescription
data.list[].idintegerUnique identifier of the journal entry
data.list[].objectNamestringName of the object/service that generated the entry
data.list[].messagestringJournal message
data.list[].threadNamestringName of the thread that generated the entry
data.list[].createDateintegerEntry creation timestamp (Unix timestamp in ms)

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "totalItems": 4,
    "itemsPerPage": 20,
    "totalPages": 1,
    "currentPage": 1,
    "hasPrevious": false,
    "hasNext": false,
    "lastTimestamp": 1767011493554,
    "list": [
      {
        "id": 3,
        "objectName": "ClusterStreamService",
        "message": "New Cluster Connection: 127.0.0.1",
        "threadName": "WorkerPool-thread-004",
        "createDate": 1767011493554
      },
      {
        "id": 2,
        "objectName": "ClusterStreamService",
        "message": "New Cluster Connection: 127.0.0.1",
        "threadName": "WorkerPool-thread-005",
        "createDate": 1767011493553
      },
      {
        "id": 1,
        "objectName": "ClusterStreamService",
        "message": "New Cluster Connection: 127.0.0.1",
        "threadName": "WorkerPool-thread-006",
        "createDate": 1767011493553
      },
      {
        "id": 0,
        "objectName": "ClusterStreamService",
        "message": "Cluster Stream Server has been started!",
        "threadName": "main",
        "createDate": 1767011488014
      }
    ]
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1767345695261
  }
}

Error Response (4xx/5xx)

ParameterTypeDescription
messagestringHuman-readable error message
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.