Trace sessions

Trace sessions

get
Authorizations
Path parameters
pipelineIDstring · uuidRequired
Responses
200
OK
application/json
get
GET /v1/pipelines/{pipelineID}/trace_sessions HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "pipelineID": "123e4567-e89b-12d3-a456-426614174000",
    "plugins": [
      "dummy.0"
    ],
    "lifespan": "10m",
    "createdAt": "2025-06-28T01:21:56.618Z",
    "updatedAt": "2025-06-28T01:21:56.618Z"
  }
]

Create trace session

post
Authorizations
Path parameters
pipelineIDstring · uuidRequired
Body

Request body to create a new trace session on a pipeline.

pluginsstring[]Required

List of Fluent-bit plugin IDs ar aliases to trace.

Example: dummy.0
lifespanstring · durationRequired

For how long will this session be active and process records.

Example: 10m
Responses
201
Created
application/json
post
POST /v1/pipelines/{pipelineID}/trace_sessions HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "plugins": [
    "dummy.0"
  ],
  "lifespan": "10m"
}
201

Created

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "createdAt": "2025-06-28T01:21:56.618Z"
}