Coder Social home page Coder Social logo

nginx-logs-to-postgres's Introduction

nginx-logs-to-postgres

A simple program to store nginx logs to PostgreSQL.

Usage

git clone [email protected]:SqrtMinusOne/nginx-logs-to-postgres.git
cd ./nginx-logs-to-postgres
go build nginx-logs

Set nginx log format as follows:

log_format json_combined '{"time_local": "$time_local", '
    '"path": "$request_uri", '   
    '"ip": "$remote_addr", '
    '"server_name": "$server_name", '
    '"remote_user": "$remote_user", '
    '"remote_port": "$remote_port", '
    '"time": "$time_iso8601", '
    '"user_agent": "$http_user_agent", '
    '"user_id_got": "$uid_got", '
    '"user_id_set": "$uid_set", '
    '"request": "$request", '
    '"status": "$status", '
    '"body_bytes_sent": "$body_bytes_sent", '
    '"request_time": "$request_time", '
    '"request_method": "$request_method", '
    '"geoip_country_code": "$geoip_country_code", '
    '"http_referrer": "$http_referer" }';
access_log /var/log/nginx/access.log json_combined;

To change the set of fields, edit the createTemplate string, parseLine and storeLogs functions.

Set the following variables to .env file:

  • DATABASE_URL - PostgreSQL connection URI
  • TABLE_SCHEMA, TABLE_NAME
  • LOG_FILE - path to the nginx log file. Make sure it exists and the program can read it
  • FLUSH_MS - rate limit to inserts

Run the program

./nginx-logs

Example supervisor config

[program:nginx-logs]
command=/home/pavel/bin/nginx-logs-to-postgres/nginx-logs
directory=/home/pavel/bin/nginx-logs-to-postgres/
autostart=true

nginx-logs-to-postgres's People

Contributors

sqrtminusone avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.