curator-opensearch


Namecurator-opensearch JSON
Version 0.0.12 PyPI version JSON
download
home_pagehttps://github.com/uzhinskiy/curator-opensearch
SummaryTending your Elasticsearch indices
upload_time2023-05-03 12:52:41
maintainer
docs_urlNone
authorUzhinsky
requires_python
licenseApache License, Version 2.0
keywords elasticsearch time-series indexed index-expiry
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. _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.


`Curator API Documentation`_
----------------------------

Curator ships with both an API and a wrapper script (which is actually defined
as an entry point).  The API allows you to write your own scripts to accomplish
similar goals, or even new and different things with the `Curator API`_, and
the `Elasticsearch Python API`_.

.. _Curator API: http://curator.readthedocs.io/

.. _Curator API Documentation: `Curator API`_

.. _Elasticsearch Python API: http://elasticsearch-py.readthedocs.io/


`Curator CLI Documentation`_
----------------------------

The `Curator CLI Documentation`_ is now a part of the document repository at
http://elastic.co/guide at http://www.elastic.co/guide/en/elasticsearch/client/curator/current/index.html

.. _Curator CLI Documentation: http://www.elastic.co/guide/en/elasticsearch/client/curator/current/index.html

`Getting Started`_
------------------

.. _Getting Started: https://www.elastic.co/guide/en/elasticsearch/client/curator/current/about.html

See the `Installation guide <https://www.elastic.co/guide/en/elasticsearch/client/curator/current/installation.html>`_
and the `command-line usage guide <https://www.elastic.co/guide/en/elasticsearch/client/curator/current/command-line.html>`_

Running ``curator --help`` will also show usage information.

Contributing
------------

* fork the repo
* make changes in your fork
* add tests to cover your changes (if necessary)
* run tests
* sign the `CLA <http://elastic.co/contributor-agreement/>`_
* send a pull request!

To run from source, use the ``run_curator.py`` script in the root directory of
the project.

Running Tests
-------------

To run the test suite just run ``python setup.py test``

When changing code, contributing new code or fixing a bug please make sure you
include tests in your PR (or mark it as without tests so that someone else can
pick it up to add the tests). When fixing a bug please make sure the test
actually tests the bug - it should fail without the code changes and pass after
they're applied (it can still be one commit of course).

The tests will try to connect to your local elasticsearch instance and run
integration tests against it. This will delete all the data stored there! You
can use the env variable ``TEST_ES_SERVER`` to point to a different instance
(for example, 'otherhost:9203').


Origins
-------

Curator was first called ``clearESindices.py`` [1]_ and was almost immediately
renamed to ``logstash_index_cleaner.py`` [1]_.  After a time it was migrated
under the `logstash <https://github.com/elastic/logstash>`_ repository as
``expire_logs``.  Soon thereafter, Jordan Sissel was hired by Elasticsearch, as
was the original author of this tool.  It became Elasticsearch Curator after
that and is now hosted at `elastic/curator <https://github.com/elastic/curator>`_.

.. [1] `LOGSTASH-211 <https://logstash.jira.com/browse/LOGSTASH-211>`_.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/uzhinskiy/curator-opensearch",
    "name": "curator-opensearch",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "elasticsearch time-series indexed index-expiry",
    "author": "Uzhinsky",
    "author_email": "lspci@mail.ru",
    "download_url": "https://files.pythonhosted.org/packages/f6/98/e5d71e1c2083423ddac81e3499b39696cae3c9c1a6af695d1c85c6bd9869/curator-opensearch-0.0.12.tar.gz",
    "platform": null,
    "description": ".. _readme:\n\n\nCurator\n=======\n\nHave indices in Elasticsearch? This is the tool for you!\n\nLike a museum curator manages the exhibits and collections on display,\nElasticsearch Curator helps you curate, or manage your indices.\n\n\n`Curator API Documentation`_\n----------------------------\n\nCurator ships with both an API and a wrapper script (which is actually defined\nas an entry point).  The API allows you to write your own scripts to accomplish\nsimilar goals, or even new and different things with the `Curator API`_, and\nthe `Elasticsearch Python API`_.\n\n.. _Curator API: http://curator.readthedocs.io/\n\n.. _Curator API Documentation: `Curator API`_\n\n.. _Elasticsearch Python API: http://elasticsearch-py.readthedocs.io/\n\n\n`Curator CLI Documentation`_\n----------------------------\n\nThe `Curator CLI Documentation`_ is now a part of the document repository at\nhttp://elastic.co/guide at http://www.elastic.co/guide/en/elasticsearch/client/curator/current/index.html\n\n.. _Curator CLI Documentation: http://www.elastic.co/guide/en/elasticsearch/client/curator/current/index.html\n\n`Getting Started`_\n------------------\n\n.. _Getting Started: https://www.elastic.co/guide/en/elasticsearch/client/curator/current/about.html\n\nSee the `Installation guide <https://www.elastic.co/guide/en/elasticsearch/client/curator/current/installation.html>`_\nand the `command-line usage guide <https://www.elastic.co/guide/en/elasticsearch/client/curator/current/command-line.html>`_\n\nRunning ``curator --help`` will also show usage information.\n\nContributing\n------------\n\n* fork the repo\n* make changes in your fork\n* add tests to cover your changes (if necessary)\n* run tests\n* sign the `CLA <http://elastic.co/contributor-agreement/>`_\n* send a pull request!\n\nTo run from source, use the ``run_curator.py`` script in the root directory of\nthe project.\n\nRunning Tests\n-------------\n\nTo run the test suite just run ``python setup.py test``\n\nWhen changing code, contributing new code or fixing a bug please make sure you\ninclude tests in your PR (or mark it as without tests so that someone else can\npick it up to add the tests). When fixing a bug please make sure the test\nactually tests the bug - it should fail without the code changes and pass after\nthey're applied (it can still be one commit of course).\n\nThe tests will try to connect to your local elasticsearch instance and run\nintegration tests against it. This will delete all the data stored there! You\ncan use the env variable ``TEST_ES_SERVER`` to point to a different instance\n(for example, 'otherhost:9203').\n\n\nOrigins\n-------\n\nCurator was first called ``clearESindices.py`` [1]_ and was almost immediately\nrenamed to ``logstash_index_cleaner.py`` [1]_.  After a time it was migrated\nunder the `logstash <https://github.com/elastic/logstash>`_ repository as\n``expire_logs``.  Soon thereafter, Jordan Sissel was hired by Elasticsearch, as\nwas the original author of this tool.  It became Elasticsearch Curator after\nthat and is now hosted at `elastic/curator <https://github.com/elastic/curator>`_.\n\n.. [1] `LOGSTASH-211 <https://logstash.jira.com/browse/LOGSTASH-211>`_.\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "Tending your Elasticsearch indices",
    "version": "0.0.12",
    "project_urls": {
        "Download": "https://github.com/uzhinskiy/curator-opensearch/releases/tag/0.0.12",
        "Homepage": "https://github.com/uzhinskiy/curator-opensearch"
    },
    "split_keywords": [
        "elasticsearch",
        "time-series",
        "indexed",
        "index-expiry"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd0853cf0731ff5b47b062f636265b2593ab667175062bcfd1035bfe24ed7340",
                "md5": "1bbae6fcae81f0ca5b0b567181859d5a",
                "sha256": "a284addcb616e2257f8042d764195917c22c046ae930011150717040412f890a"
            },
            "downloads": -1,
            "filename": "curator_opensearch-0.0.12-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1bbae6fcae81f0ca5b0b567181859d5a",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 107475,
            "upload_time": "2023-05-03T12:52:38",
            "upload_time_iso_8601": "2023-05-03T12:52:38.683058Z",
            "url": "https://files.pythonhosted.org/packages/fd/08/53cf0731ff5b47b062f636265b2593ab667175062bcfd1035bfe24ed7340/curator_opensearch-0.0.12-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f698e5d71e1c2083423ddac81e3499b39696cae3c9c1a6af695d1c85c6bd9869",
                "md5": "5412b9f5328a49a1c28f7bd4ba4be281",
                "sha256": "46917513cd67b354d1d657c5091bfac3b809beae731d85737b6bc4f73aad2639"
            },
            "downloads": -1,
            "filename": "curator-opensearch-0.0.12.tar.gz",
            "has_sig": false,
            "md5_digest": "5412b9f5328a49a1c28f7bd4ba4be281",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 236616,
            "upload_time": "2023-05-03T12:52:41",
            "upload_time_iso_8601": "2023-05-03T12:52:41.619476Z",
            "url": "https://files.pythonhosted.org/packages/f6/98/e5d71e1c2083423ddac81e3499b39696cae3c9c1a6af695d1c85c6bd9869/curator-opensearch-0.0.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-03 12:52:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "uzhinskiy",
    "github_project": "curator-opensearch",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "curator-opensearch"
}
        
Elapsed time: 0.06218s