Cribl · Schema

RetentionPolicy

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
retentionDays integer Number of days to retain data before cleanup
enabled boolean Whether automatic retention cleanup is enabled
cleanupSchedule string Cron schedule for running retention cleanup
View JSON Schema on GitHub

JSON Schema

cribl-retentionpolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RetentionPolicy",
  "title": "RetentionPolicy",
  "type": "object",
  "properties": {
    "retentionDays": {
      "type": "integer",
      "description": "Number of days to retain data before cleanup",
      "minimum": 1
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether automatic retention cleanup is enabled"
    },
    "cleanupSchedule": {
      "type": "string",
      "description": "Cron schedule for running retention cleanup"
    }
  }
}