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 (for example, <code>status=='healthy'</code>).

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 (for example, <code>{"field":"status","op":"eq","value":"healthy"}</code>).

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. Returned when offset/limit query parameters are provided.

limitinteger

Pagination limit. Returned when offset/limit query parameters are provided.

totalCountinteger

Total number of items available. Returned when offset/limit query parameters are provided.

Example response

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

Changes