Splunk · Schema
IndexCreateRequest
AnalyticsData AnalysisLoggingMachine DataMonitoringObservabilityPlatformSecuritySIEM
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name for the new index |
| datatype | string | Type of data the index will hold |
| homePath | string | Absolute path for hot and warm bucket storage |
| coldPath | string | Absolute path for cold bucket storage |
| thawedPath | string | Absolute path for thawed bucket storage |
| maxTotalDataSizeMB | integer | Maximum total size of the index in MB |
| maxDataSize | string | Maximum size of a hot bucket |
| frozenTimePeriodInSecs | integer | Seconds until data is frozen |
| maxHotBuckets | integer | Maximum number of hot buckets |
| maxWarmDBCount | integer | Maximum number of warm buckets |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "IndexCreateRequest",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name for the new index"
},
"datatype": {
"type": "string",
"description": "Type of data the index will hold"
},
"homePath": {
"type": "string",
"description": "Absolute path for hot and warm bucket storage"
},
"coldPath": {
"type": "string",
"description": "Absolute path for cold bucket storage"
},
"thawedPath": {
"type": "string",
"description": "Absolute path for thawed bucket storage"
},
"maxTotalDataSizeMB": {
"type": "integer",
"description": "Maximum total size of the index in MB"
},
"maxDataSize": {
"type": "string",
"description": "Maximum size of a hot bucket"
},
"frozenTimePeriodInSecs": {
"type": "integer",
"description": "Seconds until data is frozen"
},
"maxHotBuckets": {
"type": "integer",
"description": "Maximum number of hot buckets"
},
"maxWarmDBCount": {
"type": "integer",
"description": "Maximum number of warm buckets"
}
}
}