Git Product home page Git Product logo

nginxlog's Introduction

NGINX LOGGING

One of my first attempts to make Rust work.

This projects aims to read nginx logs and mirror it to a database using async and multi threads processors. I will use this for cambackup.com to check if a hls stream is active. (I use nginx-rtmp module)

####Usage

build it using cargo build --release

  • create an environment variable nginx_path like this export nginx_path='path/to/your/access.log'
  • run the executable like this ./path-to-executable/nglog

In nginx I have something like this :

location /hls {
			access_log access.log;
		            # Serve HLS fragments
		            types {
		                application/vnd.apple.mpegurl m3u8;
		            }
		            add_header Cache-Control no-cache;
		        }

The log is in standard format.

#####Why Rust language ? I fell in love with Rust language the same way I felt in love with Python some years ago, and this is my effort to learn it and do some advanced things like memory management, borrowing. Rust is a low level programming language that means it is fast (some claims faster then C++). I have plan to migrate some heavy code that is written in Python on cambackup.com to Rust.

Rust = Faster + less resource usage

####TODO :

  • Make postgres work
  • Environment variable for postgres

nginxlog's People

Contributors

royendgel avatar

Watchers

James Cloos 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.