- Curator Index Management:
- About
- Getting Started
- Command Line
- Configuration
- Actions
- Options
- allocation_type
- extra_settings
- continue_if_exception
- count
- delay
- delete_aliases
- disable_action
- ignore_empty_list
- ignore_unavailable
- include_aliases
- include_global_state
- key
- max_num_segments
- name
- partial
- rename_pattern
- rename_replacement
- repository
- retry_count
- retry_interval
- skip_repo_fs_check
- timeout_override
- value
- wait_for_completion
- Filters
- Filter Elements
- Frequently Asked Questions
- Q: How can I report an error in the documentation?
- Q: Can I delete only certain data from within indices?
- Q: Can Curator handle index names with strange characters?
- Q: I’m getting
DistributionNotFound
andentry_point
errors when I try to run Curator. What am I doing wrong? - Q: Snapshots seem to be working. Why am I getting
SnapshotMissingException
messages?
source
editsource
editThe source from which to derive the index or snapshot age. Can be one of
name
, creation_date
, or field_stats
.
When using the age filtertype, source requires
direction, unit, unit_count,
and additionally, the optional setting, epoch.
name
editSetting source to name
tells Curator to derive an epoch timestamp from an
index or snapshot name based on a timestring. This was the
only available behavior in previous versions of Curator.
This source requires timestring to be set, in addition to direction, unit, and unit_count.
creation_date
editSetting source to creation_date
tells Curator to reference the index or
snapshot creation time, as stored in the cluster metadata.
This source requires direction, unit, and unit_count.
field_stats
editSetting source to field_stats
tells Curator to use a newer Elasticsearch API
call which returns the minimum and maximum value of a field in an index. Curator
will only use timestamp fields, which should be mapped in Elasticsearch as type
date
.
The field and stats_result settings are
required to use the field_stats
source.
Source field_stats
only works with indices.
On this page