All Projects → customink → central_log_viewer

customink / central_log_viewer

Licence: other
Web based log viewer for the Central Logger

Programming Languages

ruby
36898 projects - #4 most used programming language
coffeescript
4710 projects
javascript
184084 projects - #8 most used programming language

Synopsis

The central log viewer provides a straightforward interface for viewing log data from the central logger.

  1. find() queries using the mongo driver API
  2. grep functionality using find({"key" => /regexp/}) queries
  3. tail -f behavior
  4. A configurable listing

Installation

  1. git clone git://github.com/customink/central_log_viewer.git
  2. cd central_log_viewer
  3. cp config/database.yml.sample config/database.yml
  4. Configure database.yml to point to your mongo db log. See the central_logger README for configuration options and defaults.
  5. bundle install

Usage

  1. The following columns can be specified in the "Listing Fields" text area, separated by comma: action application_name controller ip messages params. path request_time runtime url

  2. Other parameters in a logged request can be specified using the "params.<key>" format.

  3. Checking Tail -f will execute the query every second, appending a {"_id" => {"$gt" => ObjectId("last_object_id")}} clause to the query

Code Overview

This is a Rails 3 application that uses the central_logger gem to configure the mongo driver. A single trivial controller eval()'s the find query and returns JSON to the client for formatting by Handlebars templates. BistroCar is used to dynamically generate JS from several CoffeeScript classes in app/scripts.

Dependencies

  • Ruby 1.9.2 (rvm recommended)
  • Git 1.6+
  • Bundler 1.0+ for dependency management
  • haml/sass

Deployment

Author

Alex Stupka

Copyright (c) 2011 CustomInk, released under the MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].