Cribl · Schema
SearchDataset
ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the search dataset |
| name | string | Display name of the dataset |
| description | string | A human-readable description |
| type | string | The data source type |
| connectionConfig | object | Connection configuration specific to the data source type |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SearchDataset",
"title": "SearchDataset",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the search dataset"
},
"name": {
"type": "string",
"description": "Display name of the dataset"
},
"description": {
"type": "string",
"description": "A human-readable description"
},
"type": {
"type": "string",
"description": "The data source type",
"enum": [
"cribl_lake",
"splunk",
"s3",
"elasticsearch",
"datadog"
]
},
"connectionConfig": {
"type": "object",
"description": "Connection configuration specific to the data source type",
"properties": {
"host": {
"type": "string",
"description": "The data source host address"
},
"port": {
"type": "integer",
"description": "The data source port"
},
"index": {
"type": "string",
"description": "The index or bucket to search"
}
}
}
}
}