1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
Elasticsearch Curator Python API
================================
The Elasticsearch Curator Python API helps you manage your indices and
snapshots.
.. note::
This documentation is for the Elasticsearch Curator Python API. Documentation
for the Elasticsearch Curator *CLI* -- which uses this API and is installed
as an entry_point as part of the package -- is available in the
`Elastic guide`_.
.. _Elastic guide: http://www.elastic.co/guide/en/elasticsearch/client/curator/current/index.html
Compatibility
-------------
The Elasticsearch Curator Python API is compatible with Elasticsearch versions 2.x
through 5.0, and supports Python versions 2.6 and later.
Example Usage
-------------
::
import elasticsearch
import curator
client = elasticsearch.Elasticsearch()
ilo = curator.IndexList(client)
ilo.filter_by_regex(kind='prefix', value='logstash-')
ilo.filter_by_age(source='name', direction='older', timestring='%Y.%m.%d', unit='days', unit_count=30)
delete_indices = curator.DeleteIndices(ilo)
delete_indices.do_action()
.. TIP::
See more examples in the :doc:`Examples </examples>` page.
Features
--------
The API methods fall into the following categories:
* :doc:`Object Classes </objectclasses>` build and filter index list or snapshot list objects.
* :doc:`Action Classes </actionclasses>` act on object classes.
* :doc:`Utilities </utilities>` are helper methods.
Logging
~~~~~~~
The Elasticsearch Curator Python API uses the standard `logging library`_ from Python.
It inherits two loggers from ``elasticsearch-py``: ``elasticsearch`` and
``elasticsearch.trace``. Clients use the ``elasticsearch`` logger to log
standard activity, depending on the log level. The ``elasticsearch.trace``
logger logs requests to the server in JSON format as pretty-printed ``curl``
commands that you can execute from the command line. The ``elasticsearch.trace``
logger is not inherited from the base logger and must be activated separately.
.. _logging library: http://docs.python.org/3.5/library/logging.html
Contents
--------
.. toctree::
:maxdepth: 2
objectclasses
actionclasses
filters
utilities
examples
Changelog
License
-------
Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Indices and tables
------------------
* :ref:`genindex`
* :ref:`search`
|