Cribl · Schema

EdgeDestination

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the edge destination
type string The destination type such as cribl_http, splunk, s3, syslog, or filesystem
disabled boolean Whether the destination is disabled
host string The target host address
port integer The target port number
description string A human-readable description
View JSON Schema on GitHub

JSON Schema

cribl-edgedestination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EdgeDestination",
  "title": "EdgeDestination",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the edge destination"
    },
    "type": {
      "type": "string",
      "description": "The destination type such as cribl_http, splunk, s3, syslog, or filesystem"
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether the destination is disabled"
    },
    "host": {
      "type": "string",
      "description": "The target host address"
    },
    "port": {
      "type": "integer",
      "description": "The target port number"
    },
    "description": {
      "type": "string",
      "description": "A human-readable description"
    }
  }
}