Metadata-Version: 2.1
Name: elasticsearch-curator
Version: 8.0.2
Summary: Tending your Elasticsearch indices and snapshots
Project-URL: Homepage, https://github.com/elastic/curator
Project-URL: Bug Tracker, https://github.com/elastic/curator/issues
Author-email: Elastic <info@elastic.co>
License: Apache-2.0
License-File: LICENSE
License-File: NOTICE
Keywords: elasticsearch,index-expiry,indexed,time-series
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Requires-Dist: certifi>=2022.12.7
Requires-Dist: click==8.1.3
Requires-Dist: ecs-logging==2.0.0
Requires-Dist: elasticsearch8==8.6.1
Requires-Dist: es-client==8.6.1.post1
Requires-Dist: pyyaml==6.0.0
Requires-Dist: six>=1.16.0
Requires-Dist: voluptuous>=0.13.1
Provides-Extra: doc
Requires-Dist: sphinx; extra == 'doc'
Requires-Dist: sphinx-rtd-theme; extra == 'doc'
Provides-Extra: test
Requires-Dist: mock; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest>=7.2.1; extra == 'test'
Requires-Dist: requests; extra == 'test'
Description-Content-Type: text/x-rst

.. _readme:


Curator
=======

Have indices in Elasticsearch? This is the tool for you!

Like a museum curator manages the exhibits and collections on display,
Elasticsearch Curator helps you curate, or manage your indices.

ANNOUNCEMENT
------------

Curator is breaking into version dependent releases. Curator 6.x will work with
Elasticsearch 6.x, Curator 7.x will work with Elasticsearch 7.x, and when it is
released, Curator 8.x will work with Elasticsearch 8.x.

Watch this space for updates when that is coming.

New Client Configuration
------------------------

Curator now connects using the ``es_client`` Python module. This separation makes it much easier
to update the client connection portion separate from Curator. It is largely derived from the
original Curator client configuration, but with important updates.

The updated configuration file structure requires ``elasticsearch`` at the root level::

    ---
    elasticsearch:
      client:
        hosts: https://10.11.12.13:9200
        cloud_id:
        bearer_auth:
        opaque_id:
        request_timeout: 60
        http_compress:
        verify_certs:
        ca_certs:
        client_cert:
        client_key:
        ssl_assert_hostname:
        ssl_assert_fingerprint:
        ssl_version:
      other_settings:
        master_only:
        skip_version_test:
        username:
        password:
        api_key:
          id:
          api_key:

    logging:
      loglevel: INFO
      logfile: /path/to/file.log
      logformat: default
      blacklist: []

Action File Configuration
-------------------------

Action file structure is unchanged, for now. A few actions may have had the options modified a bit.
