v51

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-011189403.1 MB
workers

Get detailed metadata for Worker, Edge, or Outpost Nodes

Get detailed metadata for Worker, Edge, or Outpost Nodes for the specified Cribl product.

get/products/{product}/workers

Path parameters

product'stream' | 'edge' | 'outpost' required

Name of the Cribl product to get Worker, Edge, or Outpost Nodes for.

Query parameters

filterExpstring

Filter expression to evaluate against Nodes for inclusion in the response.

Example:group=="default"

Filter expression to evaluate against Nodes for inclusion in the response.

sortExpstring

Sorting expression to evaluate against Nodes to specify the sort order for the response.

filterstring

JSON-stringified filter object to evaluate against Nodes for inclusion in the response.

Example:%7B%22field%22%3A%22group%22%2C%22op%22%3A%22is%22%2C%22value%22%3A%22default%22%7D

JSON-stringified filter object to evaluate against Nodes for inclusion in the response.

sortstring

JSON-stringified sorting object to evaluate against Nodes to specify the sort order for the response.

limitinteger

Maximum number of Nodes to return in the response for this request. Use with <code>offset</code> to paginate the response into manageable batches.

offsetinteger

Starting point from which to retrieve results for this request. Use with <code>limit</code> to paginate the response into manageable batches.

Response

List of MasterWorkerEntry objects.

countinteger required

Number of items present in the items array

offsetinteger

Pagination offset

limitinteger

Pagination limit

totalCountinteger

Total number of items available (present when limit is set)

Example response

{
  "items": [
    {
      "info": {
        "architecture": "x64",
        "cribl": {
          "distMode": "worker"
        },
        "platform": "linux"
      }
    }
  ]
}