├── .gitignore ├── LICENSE ├── README.md ├── common.lua ├── example.conf ├── functions.lua ├── index_template ├── inifile.lua ├── init.lua ├── init_worker.lua ├── log.lua ├── logging.ini └── pump_data.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/README.md -------------------------------------------------------------------------------- /common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/common.lua -------------------------------------------------------------------------------- /example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/example.conf -------------------------------------------------------------------------------- /functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/functions.lua -------------------------------------------------------------------------------- /index_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/index_template -------------------------------------------------------------------------------- /inifile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/inifile.lua -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/init.lua -------------------------------------------------------------------------------- /init_worker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/init_worker.lua -------------------------------------------------------------------------------- /log.lua: -------------------------------------------------------------------------------- 1 | handlers.log() -------------------------------------------------------------------------------- /logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/logging.ini -------------------------------------------------------------------------------- /pump_data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdeak/nginx-log-elasticsearch-lua/HEAD/pump_data.pl --------------------------------------------------------------------------------