├── .dockerignore ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── issue_template.md └── workflows │ ├── docs-build.yml │ └── docs-cleanup.yml ├── .gitignore ├── .readthedocs.yaml ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── Dockerfile ├── LICENSE ├── NOTICE ├── README.rst ├── alpine4docker.sh ├── curator ├── __init__.py ├── _version.py ├── actions │ ├── __init__.py │ ├── alias.py │ ├── allocation.py │ ├── close.py │ ├── cluster_routing.py │ ├── cold2frozen.py │ ├── create_index.py │ ├── delete_indices.py │ ├── forcemerge.py │ ├── index_settings.py │ ├── open.py │ ├── reindex.py │ ├── replicas.py │ ├── rollover.py │ ├── shrink.py │ └── snapshot.py ├── classdef.py ├── cli.py ├── cli_singletons │ ├── __init__.py │ ├── alias.py │ ├── allocation.py │ ├── close.py │ ├── delete.py │ ├── forcemerge.py │ ├── object_class.py │ ├── open_indices.py │ ├── replicas.py │ ├── restore.py │ ├── rollover.py │ ├── show.py │ ├── shrink.py │ ├── snapshot.py │ └── utils.py ├── debug.py ├── defaults │ ├── __init__.py │ ├── filter_elements.py │ ├── filtertypes.py │ ├── option_defaults.py │ └── settings.py ├── exceptions.py ├── helpers │ ├── __init__.py │ ├── date_ops.py │ ├── getters.py │ ├── testers.py │ ├── utils.py │ └── waiters.py ├── indexlist.py ├── repomgrcli.py ├── singletons.py ├── snapshotlist.py └── validators │ ├── __init__.py │ ├── actions.py │ ├── filter_functions.py │ └── options.py ├── docker_test └── scripts │ ├── create.sh │ └── destroy.sh ├── docs ├── Changelog.rst ├── Makefile ├── about.rst ├── actions.rst ├── api.rst ├── asciidoc │ ├── about.asciidoc │ ├── actions.asciidoc │ ├── command-line.asciidoc │ ├── configuration.asciidoc │ ├── examples.asciidoc │ ├── faq.asciidoc │ ├── filter_elements.asciidoc │ ├── filters.asciidoc │ ├── ilm.asciidoc │ ├── inc_datemath.asciidoc │ ├── inc_filepath.asciidoc │ ├── inc_filter_by_aliases.asciidoc │ ├── inc_filter_chaining.asciidoc │ ├── inc_kinds.asciidoc │ ├── inc_sources.asciidoc │ ├── inc_strftime_table.asciidoc │ ├── inc_timestring_regex.asciidoc │ ├── inc_unit_table.asciidoc │ ├── index.asciidoc │ ├── installation.asciidoc │ ├── options.asciidoc │ └── versions.asciidoc ├── classdef.rst ├── conf.py ├── contributing.rst ├── defaults.rst ├── docset.yml ├── examples.rst ├── exceptions.rst ├── helpers.rst ├── index.rst ├── indexlist.rst ├── other_modules.rst ├── reference │ ├── about-api.md │ ├── about-cli.md │ ├── about-contributing.md │ ├── about-features.md │ ├── about-origin.md │ ├── about.md │ ├── actionfile.md │ ├── actions.md │ ├── alias.md │ ├── allocation.md │ ├── cli.md │ ├── close.md │ ├── cluster_routing.md │ ├── cold2frozen.md │ ├── command-line.md │ ├── configfile.md │ ├── configuration.md │ ├── create_index.md │ ├── curator-ilm.md │ ├── delete_indices.md │ ├── delete_snapshots.md │ ├── docker.md │ ├── envvars.md │ ├── ex_alias.md │ ├── ex_allocation.md │ ├── ex_close.md │ ├── ex_cluster_routing.md │ ├── ex_create_index.md │ ├── ex_delete_indices.md │ ├── ex_delete_snapshots.md │ ├── ex_forcemerge.md │ ├── ex_index_settings.md │ ├── ex_open.md │ ├── ex_reindex.md │ ├── ex_replicas.md │ ├── ex_restore.md │ ├── ex_rollover.md │ ├── ex_shrink.md │ ├── ex_snapshot.md │ ├── examples.md │ ├── exit-codes.md │ ├── faq.md │ ├── faq_doc_error.md │ ├── faq_partial_delete.md │ ├── faq_strange_chars.md │ ├── fe_aliases.md │ ├── fe_allocation_type.md │ ├── fe_count.md │ ├── fe_date_from.md │ ├── fe_date_from_format.md │ ├── fe_date_to.md │ ├── fe_date_to_format.md │ ├── fe_direction.md │ ├── fe_disk_space.md │ ├── fe_epoch.md │ ├── fe_exclude.md │ ├── fe_field.md │ ├── fe_intersect.md │ ├── fe_key.md │ ├── fe_kind.md │ ├── fe_max_num_segments.md │ ├── fe_pattern.md │ ├── fe_period_type.md │ ├── fe_range_from.md │ ├── fe_range_to.md │ ├── fe_reverse.md │ ├── fe_source.md │ ├── fe_state.md │ ├── fe_stats_result.md │ ├── fe_threshold_behavior.md │ ├── fe_timestring.md │ ├── fe_unit.md │ ├── fe_unit_count.md │ ├── fe_unit_count_pattern.md │ ├── fe_use_age.md │ ├── fe_value.md │ ├── fe_week_starts_on.md │ ├── filter_elements.md │ ├── filters.md │ ├── filtertype.md │ ├── filtertype_age.md │ ├── filtertype_alias.md │ ├── filtertype_allocated.md │ ├── filtertype_closed.md │ ├── filtertype_count.md │ ├── filtertype_empty.md │ ├── filtertype_forcemerged.md │ ├── filtertype_kibana.md │ ├── filtertype_none.md │ ├── filtertype_opened.md │ ├── filtertype_pattern.md │ ├── filtertype_period.md │ ├── filtertype_space.md │ ├── filtertype_state.md │ ├── forcemerge.md │ ├── ilm-actions.md │ ├── ilm-and-curator.md │ ├── ilm-or-curator.md │ ├── index.md │ ├── index_settings.md │ ├── installation.md │ ├── license.md │ ├── open.md │ ├── option_allocation_type.md │ ├── option_allow_ilm.md │ ├── option_continue.md │ ├── option_copy_aliases.md │ ├── option_count.md │ ├── option_delay.md │ ├── option_delete_after.md │ ├── option_delete_aliases.md │ ├── option_disable.md │ ├── option_extra_settings.md │ ├── option_ignore.md │ ├── option_ignore_empty.md │ ├── option_include_aliases.md │ ├── option_include_gs.md │ ├── option_include_hidden.md │ ├── option_indices.md │ ├── option_key.md │ ├── option_max_age.md │ ├── option_max_docs.md │ ├── option_max_size.md │ ├── option_max_wait.md │ ├── option_migration_prefix.md │ ├── option_migration_suffix.md │ ├── option_mns.md │ ├── option_name.md │ ├── option_new_index.md │ ├── option_node_filters.md │ ├── option_number_of_replicas.md │ ├── option_number_of_shards.md │ ├── option_partial.md │ ├── option_post_allocation.md │ ├── option_preserve_existing.md │ ├── option_refresh.md │ ├── option_remote_certificate.md │ ├── option_remote_client_cert.md │ ├── option_remote_client_key.md │ ├── option_remote_filters.md │ ├── option_remote_url_prefix.md │ ├── option_rename_pattern.md │ ├── option_rename_replacement.md │ ├── option_repository.md │ ├── option_request_body.md │ ├── option_requests_per_second.md │ ├── option_retry_count.md │ ├── option_retry_interval.md │ ├── option_routing_type.md │ ├── option_search_pattern.md │ ├── option_setting.md │ ├── option_shrink_node.md │ ├── option_shrink_prefix.md │ ├── option_shrink_suffix.md │ ├── option_skip_flush.md │ ├── option_skip_fsck.md │ ├── option_slices.md │ ├── option_timeout.md │ ├── option_timeout_override.md │ ├── option_value.md │ ├── option_wait_for_active_shards.md │ ├── option_wait_for_rebalance.md │ ├── option_wait_interval.md │ ├── option_warn_if_no_indices.md │ ├── option_wfc.md │ ├── options.md │ ├── pip.md │ ├── python-source.md │ ├── reindex.md │ ├── replicas.md │ ├── restore.md │ ├── rollover.md │ ├── shrink.md │ ├── singleton-cli.md │ ├── site-corrections.md │ ├── snapshot.md │ └── toc.yml ├── snapshotlist.rst ├── testing.rst ├── usage.rst └── validators.rst ├── examples ├── actions │ ├── alias.yml │ ├── allocation.yml │ ├── close.yml │ ├── create_index.yml │ ├── delete_indices.yml │ ├── delete_snapshots.yml │ ├── forcemerge.yml │ ├── open.yml │ ├── replicas.yml │ ├── restore.yml │ ├── shrink.yml │ └── snapshot.yml └── curator.yml ├── mypy.ini ├── post4docker.py ├── pyproject.toml ├── pytest.ini ├── renovate.json ├── run_curator.py ├── run_es_repo_mgr.py ├── run_singleton.py └── tests ├── __init__.py ├── integration ├── __init__.py ├── test_alias.py ├── test_allocation.py ├── test_cli.py ├── test_close.py ├── test_clusterrouting.py ├── test_cold2frozen.py ├── test_count_pattern.py ├── test_create_index.py ├── test_datemath.py ├── test_delete_indices.py ├── test_delete_snapshots.py ├── test_es_repo_mgr.py ├── test_forcemerge.py ├── test_integrations.py ├── test_open.py ├── test_reindex.py ├── test_replicas.py ├── test_restore.py ├── test_rollover.py ├── test_shrink.py ├── test_snapshot.py └── testvars.py └── unit ├── __init__.py ├── test_action_alias.py ├── test_action_allocation.py ├── test_action_close.py ├── test_action_clusterrouting.py ├── test_action_cold2frozen.py ├── test_action_create_index.py ├── test_action_delete_indices.py ├── test_action_delete_snapshots.py ├── test_action_forcemerge.py ├── test_action_indexsettings.py ├── test_action_open.py ├── test_action_reindex.py ├── test_action_replicas.py ├── test_action_restore.py ├── test_action_rollover.py ├── test_action_shrink.py ├── test_action_snapshot.py ├── test_class_index_list.py ├── test_class_snapshot_list.py ├── test_helpers_date_ops.py ├── test_helpers_getters.py ├── test_helpers_testers.py ├── test_helpers_utils.py ├── test_helpers_waiters.py ├── test_settings.py ├── test_validators.py └── testvars.py /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/docs-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/.github/workflows/docs-build.yml -------------------------------------------------------------------------------- /.github/workflows/docs-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/.github/workflows/docs-cleanup.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/README.rst -------------------------------------------------------------------------------- /alpine4docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/alpine4docker.sh -------------------------------------------------------------------------------- /curator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/__init__.py -------------------------------------------------------------------------------- /curator/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/_version.py -------------------------------------------------------------------------------- /curator/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/__init__.py -------------------------------------------------------------------------------- /curator/actions/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/alias.py -------------------------------------------------------------------------------- /curator/actions/allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/allocation.py -------------------------------------------------------------------------------- /curator/actions/close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/close.py -------------------------------------------------------------------------------- /curator/actions/cluster_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/cluster_routing.py -------------------------------------------------------------------------------- /curator/actions/cold2frozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/cold2frozen.py -------------------------------------------------------------------------------- /curator/actions/create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/create_index.py -------------------------------------------------------------------------------- /curator/actions/delete_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/delete_indices.py -------------------------------------------------------------------------------- /curator/actions/forcemerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/forcemerge.py -------------------------------------------------------------------------------- /curator/actions/index_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/index_settings.py -------------------------------------------------------------------------------- /curator/actions/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/open.py -------------------------------------------------------------------------------- /curator/actions/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/reindex.py -------------------------------------------------------------------------------- /curator/actions/replicas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/replicas.py -------------------------------------------------------------------------------- /curator/actions/rollover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/rollover.py -------------------------------------------------------------------------------- /curator/actions/shrink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/shrink.py -------------------------------------------------------------------------------- /curator/actions/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/actions/snapshot.py -------------------------------------------------------------------------------- /curator/classdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/classdef.py -------------------------------------------------------------------------------- /curator/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli.py -------------------------------------------------------------------------------- /curator/cli_singletons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/__init__.py -------------------------------------------------------------------------------- /curator/cli_singletons/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/alias.py -------------------------------------------------------------------------------- /curator/cli_singletons/allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/allocation.py -------------------------------------------------------------------------------- /curator/cli_singletons/close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/close.py -------------------------------------------------------------------------------- /curator/cli_singletons/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/delete.py -------------------------------------------------------------------------------- /curator/cli_singletons/forcemerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/forcemerge.py -------------------------------------------------------------------------------- /curator/cli_singletons/object_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/object_class.py -------------------------------------------------------------------------------- /curator/cli_singletons/open_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/open_indices.py -------------------------------------------------------------------------------- /curator/cli_singletons/replicas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/replicas.py -------------------------------------------------------------------------------- /curator/cli_singletons/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/restore.py -------------------------------------------------------------------------------- /curator/cli_singletons/rollover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/rollover.py -------------------------------------------------------------------------------- /curator/cli_singletons/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/show.py -------------------------------------------------------------------------------- /curator/cli_singletons/shrink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/shrink.py -------------------------------------------------------------------------------- /curator/cli_singletons/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/snapshot.py -------------------------------------------------------------------------------- /curator/cli_singletons/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/cli_singletons/utils.py -------------------------------------------------------------------------------- /curator/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/debug.py -------------------------------------------------------------------------------- /curator/defaults/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curator/defaults/filter_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/defaults/filter_elements.py -------------------------------------------------------------------------------- /curator/defaults/filtertypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/defaults/filtertypes.py -------------------------------------------------------------------------------- /curator/defaults/option_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/defaults/option_defaults.py -------------------------------------------------------------------------------- /curator/defaults/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/defaults/settings.py -------------------------------------------------------------------------------- /curator/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/exceptions.py -------------------------------------------------------------------------------- /curator/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/helpers/__init__.py -------------------------------------------------------------------------------- /curator/helpers/date_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/helpers/date_ops.py -------------------------------------------------------------------------------- /curator/helpers/getters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/helpers/getters.py -------------------------------------------------------------------------------- /curator/helpers/testers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/helpers/testers.py -------------------------------------------------------------------------------- /curator/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/helpers/utils.py -------------------------------------------------------------------------------- /curator/helpers/waiters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/helpers/waiters.py -------------------------------------------------------------------------------- /curator/indexlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/indexlist.py -------------------------------------------------------------------------------- /curator/repomgrcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/repomgrcli.py -------------------------------------------------------------------------------- /curator/singletons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/singletons.py -------------------------------------------------------------------------------- /curator/snapshotlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/snapshotlist.py -------------------------------------------------------------------------------- /curator/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curator/validators/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/validators/actions.py -------------------------------------------------------------------------------- /curator/validators/filter_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/validators/filter_functions.py -------------------------------------------------------------------------------- /curator/validators/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/curator/validators/options.py -------------------------------------------------------------------------------- /docker_test/scripts/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docker_test/scripts/create.sh -------------------------------------------------------------------------------- /docker_test/scripts/destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docker_test/scripts/destroy.sh -------------------------------------------------------------------------------- /docs/Changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/Changelog.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/about.rst -------------------------------------------------------------------------------- /docs/actions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/actions.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/asciidoc/about.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/about.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/actions.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/actions.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/command-line.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/command-line.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/configuration.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/configuration.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/examples.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/examples.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/faq.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/faq.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/filter_elements.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/filter_elements.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/filters.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/filters.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/ilm.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/ilm.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/inc_datemath.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/inc_datemath.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/inc_filepath.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/inc_filepath.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/inc_filter_by_aliases.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/inc_filter_by_aliases.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/inc_filter_chaining.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/inc_filter_chaining.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/inc_kinds.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/inc_kinds.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/inc_sources.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/inc_sources.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/inc_strftime_table.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/inc_strftime_table.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/inc_timestring_regex.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/inc_timestring_regex.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/inc_unit_table.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/inc_unit_table.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/index.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/index.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/installation.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/installation.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/options.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/options.asciidoc -------------------------------------------------------------------------------- /docs/asciidoc/versions.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/asciidoc/versions.asciidoc -------------------------------------------------------------------------------- /docs/classdef.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/classdef.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/defaults.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/defaults.rst -------------------------------------------------------------------------------- /docs/docset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/docset.yml -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/exceptions.rst -------------------------------------------------------------------------------- /docs/helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/helpers.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/indexlist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/indexlist.rst -------------------------------------------------------------------------------- /docs/other_modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/other_modules.rst -------------------------------------------------------------------------------- /docs/reference/about-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/about-api.md -------------------------------------------------------------------------------- /docs/reference/about-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/about-cli.md -------------------------------------------------------------------------------- /docs/reference/about-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/about-contributing.md -------------------------------------------------------------------------------- /docs/reference/about-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/about-features.md -------------------------------------------------------------------------------- /docs/reference/about-origin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/about-origin.md -------------------------------------------------------------------------------- /docs/reference/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/about.md -------------------------------------------------------------------------------- /docs/reference/actionfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/actionfile.md -------------------------------------------------------------------------------- /docs/reference/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/actions.md -------------------------------------------------------------------------------- /docs/reference/alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/alias.md -------------------------------------------------------------------------------- /docs/reference/allocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/allocation.md -------------------------------------------------------------------------------- /docs/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/cli.md -------------------------------------------------------------------------------- /docs/reference/close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/close.md -------------------------------------------------------------------------------- /docs/reference/cluster_routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/cluster_routing.md -------------------------------------------------------------------------------- /docs/reference/cold2frozen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/cold2frozen.md -------------------------------------------------------------------------------- /docs/reference/command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/command-line.md -------------------------------------------------------------------------------- /docs/reference/configfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/configfile.md -------------------------------------------------------------------------------- /docs/reference/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/configuration.md -------------------------------------------------------------------------------- /docs/reference/create_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/create_index.md -------------------------------------------------------------------------------- /docs/reference/curator-ilm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/curator-ilm.md -------------------------------------------------------------------------------- /docs/reference/delete_indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/delete_indices.md -------------------------------------------------------------------------------- /docs/reference/delete_snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/delete_snapshots.md -------------------------------------------------------------------------------- /docs/reference/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/docker.md -------------------------------------------------------------------------------- /docs/reference/envvars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/envvars.md -------------------------------------------------------------------------------- /docs/reference/ex_alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_alias.md -------------------------------------------------------------------------------- /docs/reference/ex_allocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_allocation.md -------------------------------------------------------------------------------- /docs/reference/ex_close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_close.md -------------------------------------------------------------------------------- /docs/reference/ex_cluster_routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_cluster_routing.md -------------------------------------------------------------------------------- /docs/reference/ex_create_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_create_index.md -------------------------------------------------------------------------------- /docs/reference/ex_delete_indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_delete_indices.md -------------------------------------------------------------------------------- /docs/reference/ex_delete_snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_delete_snapshots.md -------------------------------------------------------------------------------- /docs/reference/ex_forcemerge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_forcemerge.md -------------------------------------------------------------------------------- /docs/reference/ex_index_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_index_settings.md -------------------------------------------------------------------------------- /docs/reference/ex_open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_open.md -------------------------------------------------------------------------------- /docs/reference/ex_reindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_reindex.md -------------------------------------------------------------------------------- /docs/reference/ex_replicas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_replicas.md -------------------------------------------------------------------------------- /docs/reference/ex_restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_restore.md -------------------------------------------------------------------------------- /docs/reference/ex_rollover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_rollover.md -------------------------------------------------------------------------------- /docs/reference/ex_shrink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_shrink.md -------------------------------------------------------------------------------- /docs/reference/ex_snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ex_snapshot.md -------------------------------------------------------------------------------- /docs/reference/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/examples.md -------------------------------------------------------------------------------- /docs/reference/exit-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/exit-codes.md -------------------------------------------------------------------------------- /docs/reference/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/faq.md -------------------------------------------------------------------------------- /docs/reference/faq_doc_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/faq_doc_error.md -------------------------------------------------------------------------------- /docs/reference/faq_partial_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/faq_partial_delete.md -------------------------------------------------------------------------------- /docs/reference/faq_strange_chars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/faq_strange_chars.md -------------------------------------------------------------------------------- /docs/reference/fe_aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_aliases.md -------------------------------------------------------------------------------- /docs/reference/fe_allocation_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_allocation_type.md -------------------------------------------------------------------------------- /docs/reference/fe_count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_count.md -------------------------------------------------------------------------------- /docs/reference/fe_date_from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_date_from.md -------------------------------------------------------------------------------- /docs/reference/fe_date_from_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_date_from_format.md -------------------------------------------------------------------------------- /docs/reference/fe_date_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_date_to.md -------------------------------------------------------------------------------- /docs/reference/fe_date_to_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_date_to_format.md -------------------------------------------------------------------------------- /docs/reference/fe_direction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_direction.md -------------------------------------------------------------------------------- /docs/reference/fe_disk_space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_disk_space.md -------------------------------------------------------------------------------- /docs/reference/fe_epoch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_epoch.md -------------------------------------------------------------------------------- /docs/reference/fe_exclude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_exclude.md -------------------------------------------------------------------------------- /docs/reference/fe_field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_field.md -------------------------------------------------------------------------------- /docs/reference/fe_intersect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_intersect.md -------------------------------------------------------------------------------- /docs/reference/fe_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_key.md -------------------------------------------------------------------------------- /docs/reference/fe_kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_kind.md -------------------------------------------------------------------------------- /docs/reference/fe_max_num_segments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_max_num_segments.md -------------------------------------------------------------------------------- /docs/reference/fe_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_pattern.md -------------------------------------------------------------------------------- /docs/reference/fe_period_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_period_type.md -------------------------------------------------------------------------------- /docs/reference/fe_range_from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_range_from.md -------------------------------------------------------------------------------- /docs/reference/fe_range_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_range_to.md -------------------------------------------------------------------------------- /docs/reference/fe_reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_reverse.md -------------------------------------------------------------------------------- /docs/reference/fe_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_source.md -------------------------------------------------------------------------------- /docs/reference/fe_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_state.md -------------------------------------------------------------------------------- /docs/reference/fe_stats_result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_stats_result.md -------------------------------------------------------------------------------- /docs/reference/fe_threshold_behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_threshold_behavior.md -------------------------------------------------------------------------------- /docs/reference/fe_timestring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_timestring.md -------------------------------------------------------------------------------- /docs/reference/fe_unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_unit.md -------------------------------------------------------------------------------- /docs/reference/fe_unit_count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_unit_count.md -------------------------------------------------------------------------------- /docs/reference/fe_unit_count_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_unit_count_pattern.md -------------------------------------------------------------------------------- /docs/reference/fe_use_age.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_use_age.md -------------------------------------------------------------------------------- /docs/reference/fe_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_value.md -------------------------------------------------------------------------------- /docs/reference/fe_week_starts_on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/fe_week_starts_on.md -------------------------------------------------------------------------------- /docs/reference/filter_elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filter_elements.md -------------------------------------------------------------------------------- /docs/reference/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filters.md -------------------------------------------------------------------------------- /docs/reference/filtertype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype.md -------------------------------------------------------------------------------- /docs/reference/filtertype_age.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_age.md -------------------------------------------------------------------------------- /docs/reference/filtertype_alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_alias.md -------------------------------------------------------------------------------- /docs/reference/filtertype_allocated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_allocated.md -------------------------------------------------------------------------------- /docs/reference/filtertype_closed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_closed.md -------------------------------------------------------------------------------- /docs/reference/filtertype_count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_count.md -------------------------------------------------------------------------------- /docs/reference/filtertype_empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_empty.md -------------------------------------------------------------------------------- /docs/reference/filtertype_forcemerged.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_forcemerged.md -------------------------------------------------------------------------------- /docs/reference/filtertype_kibana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_kibana.md -------------------------------------------------------------------------------- /docs/reference/filtertype_none.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_none.md -------------------------------------------------------------------------------- /docs/reference/filtertype_opened.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_opened.md -------------------------------------------------------------------------------- /docs/reference/filtertype_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_pattern.md -------------------------------------------------------------------------------- /docs/reference/filtertype_period.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_period.md -------------------------------------------------------------------------------- /docs/reference/filtertype_space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_space.md -------------------------------------------------------------------------------- /docs/reference/filtertype_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/filtertype_state.md -------------------------------------------------------------------------------- /docs/reference/forcemerge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/forcemerge.md -------------------------------------------------------------------------------- /docs/reference/ilm-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ilm-actions.md -------------------------------------------------------------------------------- /docs/reference/ilm-and-curator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ilm-and-curator.md -------------------------------------------------------------------------------- /docs/reference/ilm-or-curator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/ilm-or-curator.md -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/index.md -------------------------------------------------------------------------------- /docs/reference/index_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/index_settings.md -------------------------------------------------------------------------------- /docs/reference/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/installation.md -------------------------------------------------------------------------------- /docs/reference/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/license.md -------------------------------------------------------------------------------- /docs/reference/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/open.md -------------------------------------------------------------------------------- /docs/reference/option_allocation_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_allocation_type.md -------------------------------------------------------------------------------- /docs/reference/option_allow_ilm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_allow_ilm.md -------------------------------------------------------------------------------- /docs/reference/option_continue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_continue.md -------------------------------------------------------------------------------- /docs/reference/option_copy_aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_copy_aliases.md -------------------------------------------------------------------------------- /docs/reference/option_count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_count.md -------------------------------------------------------------------------------- /docs/reference/option_delay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_delay.md -------------------------------------------------------------------------------- /docs/reference/option_delete_after.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_delete_after.md -------------------------------------------------------------------------------- /docs/reference/option_delete_aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_delete_aliases.md -------------------------------------------------------------------------------- /docs/reference/option_disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_disable.md -------------------------------------------------------------------------------- /docs/reference/option_extra_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_extra_settings.md -------------------------------------------------------------------------------- /docs/reference/option_ignore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_ignore.md -------------------------------------------------------------------------------- /docs/reference/option_ignore_empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_ignore_empty.md -------------------------------------------------------------------------------- /docs/reference/option_include_aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_include_aliases.md -------------------------------------------------------------------------------- /docs/reference/option_include_gs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_include_gs.md -------------------------------------------------------------------------------- /docs/reference/option_include_hidden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_include_hidden.md -------------------------------------------------------------------------------- /docs/reference/option_indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_indices.md -------------------------------------------------------------------------------- /docs/reference/option_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_key.md -------------------------------------------------------------------------------- /docs/reference/option_max_age.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_max_age.md -------------------------------------------------------------------------------- /docs/reference/option_max_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_max_docs.md -------------------------------------------------------------------------------- /docs/reference/option_max_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_max_size.md -------------------------------------------------------------------------------- /docs/reference/option_max_wait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_max_wait.md -------------------------------------------------------------------------------- /docs/reference/option_migration_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_migration_prefix.md -------------------------------------------------------------------------------- /docs/reference/option_migration_suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_migration_suffix.md -------------------------------------------------------------------------------- /docs/reference/option_mns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_mns.md -------------------------------------------------------------------------------- /docs/reference/option_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_name.md -------------------------------------------------------------------------------- /docs/reference/option_new_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_new_index.md -------------------------------------------------------------------------------- /docs/reference/option_node_filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_node_filters.md -------------------------------------------------------------------------------- /docs/reference/option_number_of_replicas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_number_of_replicas.md -------------------------------------------------------------------------------- /docs/reference/option_number_of_shards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_number_of_shards.md -------------------------------------------------------------------------------- /docs/reference/option_partial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_partial.md -------------------------------------------------------------------------------- /docs/reference/option_post_allocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_post_allocation.md -------------------------------------------------------------------------------- /docs/reference/option_preserve_existing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_preserve_existing.md -------------------------------------------------------------------------------- /docs/reference/option_refresh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_refresh.md -------------------------------------------------------------------------------- /docs/reference/option_remote_certificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_remote_certificate.md -------------------------------------------------------------------------------- /docs/reference/option_remote_client_cert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_remote_client_cert.md -------------------------------------------------------------------------------- /docs/reference/option_remote_client_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_remote_client_key.md -------------------------------------------------------------------------------- /docs/reference/option_remote_filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_remote_filters.md -------------------------------------------------------------------------------- /docs/reference/option_remote_url_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_remote_url_prefix.md -------------------------------------------------------------------------------- /docs/reference/option_rename_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_rename_pattern.md -------------------------------------------------------------------------------- /docs/reference/option_rename_replacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_rename_replacement.md -------------------------------------------------------------------------------- /docs/reference/option_repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_repository.md -------------------------------------------------------------------------------- /docs/reference/option_request_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_request_body.md -------------------------------------------------------------------------------- /docs/reference/option_requests_per_second.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_requests_per_second.md -------------------------------------------------------------------------------- /docs/reference/option_retry_count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_retry_count.md -------------------------------------------------------------------------------- /docs/reference/option_retry_interval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_retry_interval.md -------------------------------------------------------------------------------- /docs/reference/option_routing_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_routing_type.md -------------------------------------------------------------------------------- /docs/reference/option_search_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_search_pattern.md -------------------------------------------------------------------------------- /docs/reference/option_setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_setting.md -------------------------------------------------------------------------------- /docs/reference/option_shrink_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_shrink_node.md -------------------------------------------------------------------------------- /docs/reference/option_shrink_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_shrink_prefix.md -------------------------------------------------------------------------------- /docs/reference/option_shrink_suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_shrink_suffix.md -------------------------------------------------------------------------------- /docs/reference/option_skip_flush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_skip_flush.md -------------------------------------------------------------------------------- /docs/reference/option_skip_fsck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_skip_fsck.md -------------------------------------------------------------------------------- /docs/reference/option_slices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_slices.md -------------------------------------------------------------------------------- /docs/reference/option_timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_timeout.md -------------------------------------------------------------------------------- /docs/reference/option_timeout_override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_timeout_override.md -------------------------------------------------------------------------------- /docs/reference/option_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_value.md -------------------------------------------------------------------------------- /docs/reference/option_wait_for_active_shards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_wait_for_active_shards.md -------------------------------------------------------------------------------- /docs/reference/option_wait_for_rebalance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_wait_for_rebalance.md -------------------------------------------------------------------------------- /docs/reference/option_wait_interval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_wait_interval.md -------------------------------------------------------------------------------- /docs/reference/option_warn_if_no_indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_warn_if_no_indices.md -------------------------------------------------------------------------------- /docs/reference/option_wfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/option_wfc.md -------------------------------------------------------------------------------- /docs/reference/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/options.md -------------------------------------------------------------------------------- /docs/reference/pip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/pip.md -------------------------------------------------------------------------------- /docs/reference/python-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/python-source.md -------------------------------------------------------------------------------- /docs/reference/reindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/reindex.md -------------------------------------------------------------------------------- /docs/reference/replicas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/replicas.md -------------------------------------------------------------------------------- /docs/reference/restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/restore.md -------------------------------------------------------------------------------- /docs/reference/rollover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/rollover.md -------------------------------------------------------------------------------- /docs/reference/shrink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/shrink.md -------------------------------------------------------------------------------- /docs/reference/singleton-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/singleton-cli.md -------------------------------------------------------------------------------- /docs/reference/site-corrections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/site-corrections.md -------------------------------------------------------------------------------- /docs/reference/snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/snapshot.md -------------------------------------------------------------------------------- /docs/reference/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/reference/toc.yml -------------------------------------------------------------------------------- /docs/snapshotlist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/snapshotlist.rst -------------------------------------------------------------------------------- /docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/testing.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /docs/validators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/docs/validators.rst -------------------------------------------------------------------------------- /examples/actions/alias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/alias.yml -------------------------------------------------------------------------------- /examples/actions/allocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/allocation.yml -------------------------------------------------------------------------------- /examples/actions/close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/close.yml -------------------------------------------------------------------------------- /examples/actions/create_index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/create_index.yml -------------------------------------------------------------------------------- /examples/actions/delete_indices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/delete_indices.yml -------------------------------------------------------------------------------- /examples/actions/delete_snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/delete_snapshots.yml -------------------------------------------------------------------------------- /examples/actions/forcemerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/forcemerge.yml -------------------------------------------------------------------------------- /examples/actions/open.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/open.yml -------------------------------------------------------------------------------- /examples/actions/replicas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/replicas.yml -------------------------------------------------------------------------------- /examples/actions/restore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/restore.yml -------------------------------------------------------------------------------- /examples/actions/shrink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/shrink.yml -------------------------------------------------------------------------------- /examples/actions/snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/actions/snapshot.yml -------------------------------------------------------------------------------- /examples/curator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/examples/curator.yml -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/mypy.ini -------------------------------------------------------------------------------- /post4docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/post4docker.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/pytest.ini -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/renovate.json -------------------------------------------------------------------------------- /run_curator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/run_curator.py -------------------------------------------------------------------------------- /run_es_repo_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/run_es_repo_mgr.py -------------------------------------------------------------------------------- /run_singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/run_singleton.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/__init__.py -------------------------------------------------------------------------------- /tests/integration/test_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_alias.py -------------------------------------------------------------------------------- /tests/integration/test_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_allocation.py -------------------------------------------------------------------------------- /tests/integration/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_cli.py -------------------------------------------------------------------------------- /tests/integration/test_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_close.py -------------------------------------------------------------------------------- /tests/integration/test_clusterrouting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_clusterrouting.py -------------------------------------------------------------------------------- /tests/integration/test_cold2frozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_cold2frozen.py -------------------------------------------------------------------------------- /tests/integration/test_count_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_count_pattern.py -------------------------------------------------------------------------------- /tests/integration/test_create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_create_index.py -------------------------------------------------------------------------------- /tests/integration/test_datemath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_datemath.py -------------------------------------------------------------------------------- /tests/integration/test_delete_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_delete_indices.py -------------------------------------------------------------------------------- /tests/integration/test_delete_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_delete_snapshots.py -------------------------------------------------------------------------------- /tests/integration/test_es_repo_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_es_repo_mgr.py -------------------------------------------------------------------------------- /tests/integration/test_forcemerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_forcemerge.py -------------------------------------------------------------------------------- /tests/integration/test_integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_integrations.py -------------------------------------------------------------------------------- /tests/integration/test_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_open.py -------------------------------------------------------------------------------- /tests/integration/test_reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_reindex.py -------------------------------------------------------------------------------- /tests/integration/test_replicas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_replicas.py -------------------------------------------------------------------------------- /tests/integration/test_restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_restore.py -------------------------------------------------------------------------------- /tests/integration/test_rollover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_rollover.py -------------------------------------------------------------------------------- /tests/integration/test_shrink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_shrink.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/test_snapshot.py -------------------------------------------------------------------------------- /tests/integration/testvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/integration/testvars.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/test_action_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_alias.py -------------------------------------------------------------------------------- /tests/unit/test_action_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_allocation.py -------------------------------------------------------------------------------- /tests/unit/test_action_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_close.py -------------------------------------------------------------------------------- /tests/unit/test_action_clusterrouting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_clusterrouting.py -------------------------------------------------------------------------------- /tests/unit/test_action_cold2frozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_cold2frozen.py -------------------------------------------------------------------------------- /tests/unit/test_action_create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_create_index.py -------------------------------------------------------------------------------- /tests/unit/test_action_delete_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_delete_indices.py -------------------------------------------------------------------------------- /tests/unit/test_action_delete_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_delete_snapshots.py -------------------------------------------------------------------------------- /tests/unit/test_action_forcemerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_forcemerge.py -------------------------------------------------------------------------------- /tests/unit/test_action_indexsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_indexsettings.py -------------------------------------------------------------------------------- /tests/unit/test_action_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_open.py -------------------------------------------------------------------------------- /tests/unit/test_action_reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_reindex.py -------------------------------------------------------------------------------- /tests/unit/test_action_replicas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_replicas.py -------------------------------------------------------------------------------- /tests/unit/test_action_restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_restore.py -------------------------------------------------------------------------------- /tests/unit/test_action_rollover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_rollover.py -------------------------------------------------------------------------------- /tests/unit/test_action_shrink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_shrink.py -------------------------------------------------------------------------------- /tests/unit/test_action_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_action_snapshot.py -------------------------------------------------------------------------------- /tests/unit/test_class_index_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_class_index_list.py -------------------------------------------------------------------------------- /tests/unit/test_class_snapshot_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_class_snapshot_list.py -------------------------------------------------------------------------------- /tests/unit/test_helpers_date_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_helpers_date_ops.py -------------------------------------------------------------------------------- /tests/unit/test_helpers_getters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_helpers_getters.py -------------------------------------------------------------------------------- /tests/unit/test_helpers_testers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_helpers_testers.py -------------------------------------------------------------------------------- /tests/unit/test_helpers_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_helpers_utils.py -------------------------------------------------------------------------------- /tests/unit/test_helpers_waiters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_helpers_waiters.py -------------------------------------------------------------------------------- /tests/unit/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_settings.py -------------------------------------------------------------------------------- /tests/unit/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/test_validators.py -------------------------------------------------------------------------------- /tests/unit/testvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/curator/HEAD/tests/unit/testvars.py --------------------------------------------------------------------------------