python-elasticsearch-logger icon indicating copy to clipboard operation
python-elasticsearch-logger copied to clipboard

Python Elasticsearch handler for the standard python logging framework

Results 47 python-elasticsearch-logger issues
Sort by recently updated
recently updated
newest added

Add mapping dict to rename ES records fields. With this changes is possible to rename log records to the expected names for ES.

Add possibility to write index to the exact name specified without any datetime suffixes. I haven't tested the code, just added the logic and tests similar to other parameters Fixes...

I have a custom method to return logstash format. Although initializing it doesn't seem to work. ``` handler = CMRESHandler(hosts=[{'host': 'localhost', 'port': 9200}], auth_type=CMRESHandler.AuthType.NO_AUTH, es_index_name="my_logs") handler.setFormatter(LogstashFormatterVersion1()) ``` I noticed in...

Currently the `tests` directory is installed as a package when using `pip`.

When installing via [Poetry](https://python-poetry.org), the package enum is added to the package lock even though it cannot be installed for newer versions of python. It seems to happen because the...

Pylint now warns that ["Logger is not lazy"](http://pylint-messages.wikidot.com/messages:w1201) when you use `%` to do string formatting, meaning you just pass the strings and replacements directly rather than `% (list, of,...

Hi, it would be great to also support the API KEY auth options. I have prepared a pull request already. Here is the doc for api key auth: https://elasticsearch-py.readthedocs.io/en/master/#apikey-authentication

After installing the CMRESHandler with pip additional package is installed. After executing `pip install CMRESHandler==1.0.0` 2 additional packages installed in site packages VENV/lib/python3.6/site-packages/ First is "cmreslogging" (the good one) and...

Bumps [requests](https://github.com/requests/requests) from 2.18.1 to 2.20.0. Changelog *Sourced from [requests's changelog](https://github.com/psf/requests/blob/master/HISTORY.md).* > 2.20.0 (2018-10-18) > ------------------- > > **Bugfixes** > > - Content-Type header parsing is now case-insensitive (e.g. >...

dependencies

Sometimes there is a need to manually manage index names, for example, in this case: An application writes data to a single named index, which is an alias to the...