Metadata-Version: 2.0
Name: nginx2es
Version: 0.1.0
Summary: Put parsed Nginx access.log to Elasticsearch
Home-page: https://github.com/ei-grad/nginx2es
Author: Andrew Grigorev
Author-email: andrew@ei-grad.ru
License: MIT
Description-Content-Type: UNKNOWN
Keywords: nginx access.log elasticsearch
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Topic :: Internet :: Log Analysis
Classifier: Topic :: System :: Logging
Classifier: Topic :: System :: Monitoring
Requires-Dist: elasticsearch
Requires-Dist: click
Requires-Dist: six
Requires-Dist: python-dateutil

Put parsed Nginx access.log to Elasticsearch
============================================

Nginx access.log have to be formatted with this format:

.. code-block:: nginx

    log_format main_ext
        '$remote_addr $http_host $remote_user [$time_local] "$request" '
        '$status $body_bytes_sent "$http_referer" '
        '"$http_user_agent" "$http_x_forwarded_for" '
        'rt=$request_time ua="$upstream_addr" '
        'us="$upstream_status" ut="$upstream_response_time" '
        'ul="$upstream_response_length" '
        'cs=$upstream_cache_status';

GeoIP
-----

Nginx2es could optionally use the GeoIP database if `geoip` module is installed
and the GeoIPCity.dat database file is available.



