Sha256: 3541ded09ae934306823d2ee0d98a7dd6ccb5c05074652857ff49c5e5247b79d

Contents?: true

Size: 1.87 KB

Versions: 1

Compression:

Stored size: 1.87 KB

Contents

## Trafficlogger

Trafficlogger is a Rails Engine with Rack Middleware to track HTTP Requests on your site and log them.
The gem tracks incoming HTTP requests coming to your site and logs them with detailed information about the Request into DB Table for Analysis.Every incoming requests where Content Type is `text/html` gets logged with detailed information about the request
- SERVER_NAME
- PATH_INFO
- REMOTE_HOST
- HTTP_ACCEPT_ENCODING
- HTTP_USER_AGENT
- HTTP_HOST
- REMOTE_ADDR
- SERVER_SOFTWARE
- HTTP_REFERER
- HTTP_COOKIE
- REQUEST_URI
- SERVER_PORT
- GATEWAY_INTERFACE
- QUERY_STRING
- REQUEST_METHOD
- HTTP_CONNECTION
And More!

## Demonstration

Sample App - https://github.com/raycoding/rTracker

Once integrated with your App you can see the log entries in DB Table and also there is Search Analytics Dashboard which will be located at URL `/tracklogger` inside your Application

## Installation Steps 

 -  In your Gemfile 
    `gem 'trafficlogger','~>1.0.0'`

 -  `bundle install`

 -	routes.rb
 		Add the following line `mount Trafficlogger::Engine => "/trafficlogger"`

 -	After you run your app's `rake:db:migrate` run `rake trafficlogger:install:migrations`
 		This is will copy all necessary migrations from Trafficlogger Engine to your app, post which run 
 		`rake:db:migrate` again, this will not run migrations from engine.

 -  In your `config/application.rb`
    Add the following line `config.middleware.use 'Trafficlogger::AnalyticFilter'`
    This will add the Rack Middleware from Trafficlogger Engine in your App.

 - You are all set!


## Dependencies

  - Ruby 1.9.3+
  - Rails 3.2.13
  - MySQL
  - will_paginate

### ToDo

 Porting this for Rails 2.x is not difficult as only few scope conditions at model level needs to changed ; which are for Rails 3 but does not work for Rails 2, feel free to fork it and contribute for Rails 2.x platforms, also it should work on Ruby 1.8.7+

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
trafficlogger-1.0.0 README.md