OK
List of Fluent-bit plugin IDs ar aliases to trace.
For how long will this session be active and process records.
"10m"
Created
const response = await fetch('https://cloud-api.calyptia.com/v1/pipelines/{pipelineID}/trace_sessions', { method: 'GET', headers: { "Authorization": "Bearer <token>" }, }); const data = await response.json();
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "pipelineID": "123e4567-e89b-12d3-a456-426614174000", "plugins": [ "dummy.0" ], "lifespan": "10m", "createdAt": "2024-11-21T09:38:42.212Z", "updatedAt": "2024-11-21T09:38:42.212Z" } ]
const response = await fetch('https://cloud-api.calyptia.com/v1/pipelines/{pipelineID}/trace_sessions', { method: 'POST', headers: { "Authorization": "Bearer <token>", "Content-Type": "application/json" }, body: JSON.stringify({ "plugins": [ "dummy.0" ], "lifespan": "10m" }), }); const data = await response.json();
{ "id": "123e4567-e89b-12d3-a456-426614174000", "createdAt": "2024-11-21T09:38:42.212Z" }