Module: GlTail

Defined in:
lib/gl_tail.rb,
lib/gl_tail/config.rb,
lib/gl_tail/engine.rb,
lib/gl_tail/sources/ssh.rb,
lib/gl_tail/sources/base.rb,
lib/gl_tail/sources/local.rb,
lib/gl_tail/config/yaml_parser.rb,
lib/gl_tail/config/configurable.rb

Overview

gl_tail.rb - OpenGL visualization of your server traffic Copyright 2007 Erlend Simonsen <[email protected]>

Licensed under the General Public License v2 (see LICENSE)

Defined Under Namespace

Modules: Configurable, Source Classes: Column, Config, Engine, Screen, YamlParser

Constant Summary collapse

VERSION =
'0.1.5'
CONFIG_OPTIONS =
{ }
COLORS =
{
  'white'   => %w{ 255 255 255 255 },
  'red'     => %w{ 255   0   0 255 },
  'green'   => %w{   0 255   0 255 },
  'blue'    => %w{   0   0 255 255 },
  'yellow'  => %w{ 255 255   0 255 },
  'cyan'    => %w{   0 255 255 255 },
  'magenta' => %w{ 255   0 255 255 },

  'purple'  => %w{ 128   0 255 255 },
  'orange'  => %w{ 255 128   0 255 },
  'pink'    => %w{ 255   0 128 255 },
}