Cribl · Schema

Cribl Pipeline

A Cribl processing pipeline that defines an ordered sequence of functions for transforming, filtering, and enriching observability data events in real time.

ConfigurationData LakeData PipelineData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the pipeline
conf object Pipeline configuration containing functions and settings
View JSON Schema on GitHub

JSON Schema

cribl-pipeline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.cribl.io/schemas/cribl/pipeline.json",
  "title": "Cribl Pipeline",
  "description": "A Cribl processing pipeline that defines an ordered sequence of functions for transforming, filtering, and enriching observability data events in real time.",
  "type": "object",
  "required": ["id"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the pipeline",
      "pattern": "^[a-zA-Z0-9_-]+$"
    },
    "conf": {
      "type": "object",
      "description": "Pipeline configuration containing functions and settings",
      "properties": {
        "functions": {
          "type": "array",
          "description": "Ordered list of processing functions that events pass through sequentially",
          "items": {
            "$ref": "#/$defs/PipelineFunction"
          }
        },
        "description": {
          "type": "string",
          "description": "A human-readable description of the pipeline purpose"
        },
        "asyncFuncTimeout": {
          "type": "integer",
          "description": "Timeout for asynchronous functions in milliseconds",
          "minimum": 0,
          "maximum": 300000
        },
        "output": {
          "type": "string",
          "description": "Default output destination for processed events"
        },
        "streamtags": {
          "type": "array",
          "description": "Tags applied to all events processed by this pipeline",
          "items": {
            "type": "string"
          }
        },
        "groups": {
          "type": "object",
          "description": "Worker group or fleet-specific configuration overrides",
          "additionalProperties": {
            "type": "object",
            "description": "Group-specific pipeline settings"
          }
        }
      }
    }
  },
  "$defs": {
    "PipelineFunction": {
      "type": "object",
      "description": "A processing function within a pipeline that performs a specific data transformation operation.",
      "required": ["id"],
      "properties": {
        "id": {
          "type": "string",
          "description": "The function type identifier such as eval, regex_extract, rename, mask, aggregate, or serialize"
        },
        "filter": {
          "type": "string",
          "description": "JavaScript expression that determines which events this function processes. Returns true to process, false to skip."
        },
        "disabled": {
          "type": "boolean",
          "description": "Whether this function is disabled and should be skipped during processing",
          "default": false
        },
        "conf": {
          "type": "object",
          "description": "Function-specific configuration parameters that vary by function type"
        },
        "description": {
          "type": "string",
          "description": "A human-readable description of what this function does"
        },
        "final": {
          "type": "boolean",
          "description": "Whether to stop processing subsequent functions after this one",
          "default": false
        },
        "groupId": {
          "type": "string",
          "description": "Group identifier for visually grouping functions in the UI"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/cribl-pipeline"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.