Cribl · Schema

EdgeSource

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the edge source
type string The source type such as file_monitor, windows_event_log, system_metrics, appscope, syslog, or journald
disabled boolean Whether the source is disabled
description string A human-readable description
pipeline string The pipeline to process events
streamtags array Tags applied to events from this source
View JSON Schema on GitHub

JSON Schema

cribl-edgesource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EdgeSource",
  "title": "EdgeSource",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the edge source"
    },
    "type": {
      "type": "string",
      "description": "The source type such as file_monitor, windows_event_log, system_metrics, appscope, syslog, or journald"
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether the source is disabled"
    },
    "description": {
      "type": "string",
      "description": "A human-readable description"
    },
    "pipeline": {
      "type": "string",
      "description": "The pipeline to process events"
    },
    "streamtags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags applied to events from this source"
    }
  }
}