Cribl · Schema

Cribl Route

A Cribl route that applies filter expressions on incoming data events to direct matching results to the appropriate pipeline and destination for processing and delivery.

ConfigurationData LakeData PipelineData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the route
name string Human-readable display name for the route
filter string JavaScript filter expression that determines which events match this route. Use true to match all events.
pipeline string The pipeline identifier to process matching events through
output string The destination identifier where processed events are sent
final boolean Whether matching events stop being evaluated by subsequent routes in the route table
disabled boolean Whether this route is disabled and should be skipped during evaluation
description string A human-readable description of the route purpose and behavior
groups object Worker group or fleet-specific route configuration overrides
clones array Additional pipeline and destination pairs that receive copies of matching events
View JSON Schema on GitHub

JSON Schema

cribl-route-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.cribl.io/schemas/cribl/route.json",
  "title": "Cribl Route",
  "description": "A Cribl route that applies filter expressions on incoming data events to direct matching results to the appropriate pipeline and destination for processing and delivery.",
  "type": "object",
  "required": ["id", "filter"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the route",
      "pattern": "^[a-zA-Z0-9_-]+$"
    },
    "name": {
      "type": "string",
      "description": "Human-readable display name for the route"
    },
    "filter": {
      "type": "string",
      "description": "JavaScript filter expression that determines which events match this route. Use true to match all events."
    },
    "pipeline": {
      "type": "string",
      "description": "The pipeline identifier to process matching events through"
    },
    "output": {
      "type": "string",
      "description": "The destination identifier where processed events are sent"
    },
    "final": {
      "type": "boolean",
      "description": "Whether matching events stop being evaluated by subsequent routes in the route table",
      "default": true
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether this route is disabled and should be skipped during evaluation",
      "default": false
    },
    "description": {
      "type": "string",
      "description": "A human-readable description of the route purpose and behavior"
    },
    "groups": {
      "type": "object",
      "description": "Worker group or fleet-specific route configuration overrides",
      "additionalProperties": {
        "type": "object",
        "description": "Group-specific route settings"
      }
    },
    "clones": {
      "type": "array",
      "description": "Additional pipeline and destination pairs that receive copies of matching events",
      "items": {
        "$ref": "#/$defs/RouteClone"
      }
    }
  },
  "$defs": {
    "RouteClone": {
      "type": "object",
      "description": "A clone destination that receives a copy of events matching the parent route.",
      "properties": {
        "pipeline": {
          "type": "string",
          "description": "The pipeline identifier for processing cloned events"
        },
        "output": {
          "type": "string",
          "description": "The destination identifier for the cloned events"
        },
        "filter": {
          "type": "string",
          "description": "Additional filter expression for this clone"
        }
      }
    }
  }
}

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-route"
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 email required.

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