--- !ruby/object:Gem::Specification
name: request-log-analyzer
version: !ruby/object:Gem::Version
  version: 1.12.6
  prerelease: 
platform: ruby
authors:
- Willem van Bergen
- Bart ten Brinke
autorequire: 
bindir: bin
cert_chain: []
date: 2012-12-10 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
  name: rake
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
  type: :development
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
- !ruby/object:Gem::Dependency
  name: rspec
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ~>
      - !ruby/object:Gem::Version
        version: '2.8'
  type: :development
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ~>
      - !ruby/object:Gem::Version
        version: '2.8'
- !ruby/object:Gem::Dependency
  name: activerecord
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
  type: :development
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
- !ruby/object:Gem::Dependency
  name: sqlite3
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
  type: :development
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
description: ! "    Request log analyzer's purpose is to find out how your web application
  is being used, how it performs and to\n    focus your optimization efforts. This
  tool will parse all requests in the application's log file and aggregate the \n
  \   information. Once it is finished parsing the log file(s), it will show the requests
  that take op most server time \n    using various metrics. It can also insert all
  parsed request information into a database so you can roll your own\n    analysis.
  It supports Rails-, Merb- and Rack-based applications logs, Apache and Amazon S3
  access logs and MySQL \n    slow query logs out of the box, but file formats of
  other applications can easily be supported by supplying an \n    easy to write log
  file format definition.\n"
email:
- willem@railsdoctors.com
- bart@railsdoctors.com
executables:
- request-log-analyzer
extensions: []
extra_rdoc_files:
- README.rdoc
files:
- .gitignore
- .infinity_test
- .travis.yml
- DESIGN.rdoc
- Gemfile
- LICENSE
- README.rdoc
- Rakefile
- bin/request-log-analyzer
- lib/cli/command_line_arguments.rb
- lib/cli/database_console.rb
- lib/cli/database_console_init.rb
- lib/cli/progressbar.rb
- lib/cli/tools.rb
- lib/other/ordered_hash.rb
- lib/request_log_analyzer.rb
- lib/request_log_analyzer/aggregator.rb
- lib/request_log_analyzer/aggregator/database_inserter.rb
- lib/request_log_analyzer/aggregator/echo.rb
- lib/request_log_analyzer/aggregator/summarizer.rb
- lib/request_log_analyzer/controller.rb
- lib/request_log_analyzer/database.rb
- lib/request_log_analyzer/database/base.rb
- lib/request_log_analyzer/database/connection.rb
- lib/request_log_analyzer/database/request.rb
- lib/request_log_analyzer/database/source.rb
- lib/request_log_analyzer/database/warning.rb
- lib/request_log_analyzer/file_format.rb
- lib/request_log_analyzer/file_format/amazon_s3.rb
- lib/request_log_analyzer/file_format/apache.rb
- lib/request_log_analyzer/file_format/delayed_job.rb
- lib/request_log_analyzer/file_format/delayed_job2.rb
- lib/request_log_analyzer/file_format/delayed_job21.rb
- lib/request_log_analyzer/file_format/haproxy.rb
- lib/request_log_analyzer/file_format/merb.rb
- lib/request_log_analyzer/file_format/mysql.rb
- lib/request_log_analyzer/file_format/nginx.rb
- lib/request_log_analyzer/file_format/oink.rb
- lib/request_log_analyzer/file_format/postgresql.rb
- lib/request_log_analyzer/file_format/rack.rb
- lib/request_log_analyzer/file_format/rails.rb
- lib/request_log_analyzer/file_format/rails3.rb
- lib/request_log_analyzer/file_format/rails_development.rb
- lib/request_log_analyzer/file_format/w3c.rb
- lib/request_log_analyzer/filter.rb
- lib/request_log_analyzer/filter/anonymize.rb
- lib/request_log_analyzer/filter/field.rb
- lib/request_log_analyzer/filter/timespan.rb
- lib/request_log_analyzer/line_definition.rb
- lib/request_log_analyzer/log_processor.rb
- lib/request_log_analyzer/mailer.rb
- lib/request_log_analyzer/output.rb
- lib/request_log_analyzer/output/fixed_width.rb
- lib/request_log_analyzer/output/html.rb
- lib/request_log_analyzer/request.rb
- lib/request_log_analyzer/source.rb
- lib/request_log_analyzer/source/log_parser.rb
- lib/request_log_analyzer/tracker.rb
- lib/request_log_analyzer/tracker/duration.rb
- lib/request_log_analyzer/tracker/frequency.rb
- lib/request_log_analyzer/tracker/hourly_spread.rb
- lib/request_log_analyzer/tracker/numeric_value.rb
- lib/request_log_analyzer/tracker/timespan.rb
- lib/request_log_analyzer/tracker/traffic.rb
- request-log-analyzer.gemspec
- spec/database.yml
- spec/fixtures/apache_combined.log
- spec/fixtures/apache_common.log
- spec/fixtures/decompression.log
- spec/fixtures/decompression.log.bz2
- spec/fixtures/decompression.log.gz
- spec/fixtures/decompression.log.zip
- spec/fixtures/decompression.tar.gz
- spec/fixtures/decompression.tgz
- spec/fixtures/header_and_footer.log
- spec/fixtures/merb.log
- spec/fixtures/merb_prefixed.log
- spec/fixtures/multiple_files_1.log
- spec/fixtures/multiple_files_2.log
- spec/fixtures/mysql_slow_query.log
- spec/fixtures/oink_22.log
- spec/fixtures/oink_22_failure.log
- spec/fixtures/postgresql.log
- spec/fixtures/rails.db
- spec/fixtures/rails_1x.log
- spec/fixtures/rails_22.log
- spec/fixtures/rails_22_cached.log
- spec/fixtures/rails_3_partials.log
- spec/fixtures/rails_unordered.log
- spec/fixtures/s3_logs/2012-10-05-16-18-11-F9AAC5D1A55AEBAD
- spec/fixtures/s3_logs/2012-10-05-16-26-06-15314AF7F0651839
- spec/fixtures/sinatra.log
- spec/fixtures/syslog_1x.log
- spec/fixtures/test_file_format.log
- spec/fixtures/test_language_combined.log
- spec/fixtures/test_order.log
- spec/integration/command_line_usage_spec.rb
- spec/integration/mailer_spec.rb
- spec/integration/munin_plugins_rails_spec.rb
- spec/integration/scout_spec.rb
- spec/lib/helpers.rb
- spec/lib/macros.rb
- spec/lib/matchers.rb
- spec/lib/mocks.rb
- spec/lib/testing_format.rb
- spec/spec_helper.rb
- spec/unit/aggregator/database_inserter_spec.rb
- spec/unit/aggregator/summarizer_spec.rb
- spec/unit/controller/controller_spec.rb
- spec/unit/controller/log_processor_spec.rb
- spec/unit/database/base_class_spec.rb
- spec/unit/database/connection_spec.rb
- spec/unit/database/database_spec.rb
- spec/unit/file_format/amazon_s3_format_spec.rb
- spec/unit/file_format/apache_format_spec.rb
- spec/unit/file_format/common_regular_expressions_spec.rb
- spec/unit/file_format/delayed_job21_format_spec.rb
- spec/unit/file_format/delayed_job2_format_spec.rb
- spec/unit/file_format/delayed_job_format_spec.rb
- spec/unit/file_format/file_format_api_spec.rb
- spec/unit/file_format/format_autodetection_spec.rb
- spec/unit/file_format/haproxy_format_spec.rb
- spec/unit/file_format/line_definition_spec.rb
- spec/unit/file_format/merb_format_spec.rb
- spec/unit/file_format/mysql_format_spec.rb
- spec/unit/file_format/oink_format_spec.rb
- spec/unit/file_format/postgresql_format_spec.rb
- spec/unit/file_format/rack_format_spec.rb
- spec/unit/file_format/rails3_format_spec.rb
- spec/unit/file_format/rails_format_spec.rb
- spec/unit/file_format/w3c_format_spec.rb
- spec/unit/filter/anonymize_filter_spec.rb
- spec/unit/filter/field_filter_spec.rb
- spec/unit/filter/filter_spec.rb
- spec/unit/filter/timespan_filter_spec.rb
- spec/unit/mailer_spec.rb
- spec/unit/request_spec.rb
- spec/unit/source/log_parser_spec.rb
- spec/unit/tracker/duration_tracker_spec.rb
- spec/unit/tracker/frequency_tracker_spec.rb
- spec/unit/tracker/hourly_spread_spec.rb
- spec/unit/tracker/numeric_value_tracker_spec.rb
- spec/unit/tracker/timespan_tracker_spec.rb
- spec/unit/tracker/tracker_api_spec.rb
- spec/unit/tracker/traffic_tracker_spec.rb
- tasks/github-gem.rake
- tasks/request_log_analyzer.rake
homepage: http://railsdoctors.com
licenses: []
post_install_message: 
rdoc_options:
- --title
- request-log-analyzer
- --main
- README.rdoc
- --line-numbers
- --inline-source
require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
  none: false
  requirements:
  - - ! '>='
    - !ruby/object:Gem::Version
      version: '0'
required_rubygems_version: !ruby/object:Gem::Requirement
  none: false
  requirements:
  - - ! '>='
    - !ruby/object:Gem::Version
      version: '0'
requirements:
- To use the database inserter, ActiveRecord and an appropriate database adapter are
  required.
rubyforge_project: r-l-a
rubygems_version: 1.8.24
signing_key: 
specification_version: 3
summary: A command line tool to analyze request logs for Apache, Rails, Merb, MySQL
  and other web application servers
test_files:
- spec/integration/command_line_usage_spec.rb
- spec/integration/mailer_spec.rb
- spec/integration/munin_plugins_rails_spec.rb
- spec/integration/scout_spec.rb
- spec/unit/aggregator/database_inserter_spec.rb
- spec/unit/aggregator/summarizer_spec.rb
- spec/unit/controller/controller_spec.rb
- spec/unit/controller/log_processor_spec.rb
- spec/unit/database/base_class_spec.rb
- spec/unit/database/connection_spec.rb
- spec/unit/database/database_spec.rb
- spec/unit/file_format/amazon_s3_format_spec.rb
- spec/unit/file_format/apache_format_spec.rb
- spec/unit/file_format/common_regular_expressions_spec.rb
- spec/unit/file_format/delayed_job21_format_spec.rb
- spec/unit/file_format/delayed_job2_format_spec.rb
- spec/unit/file_format/delayed_job_format_spec.rb
- spec/unit/file_format/file_format_api_spec.rb
- spec/unit/file_format/format_autodetection_spec.rb
- spec/unit/file_format/haproxy_format_spec.rb
- spec/unit/file_format/line_definition_spec.rb
- spec/unit/file_format/merb_format_spec.rb
- spec/unit/file_format/mysql_format_spec.rb
- spec/unit/file_format/oink_format_spec.rb
- spec/unit/file_format/postgresql_format_spec.rb
- spec/unit/file_format/rack_format_spec.rb
- spec/unit/file_format/rails3_format_spec.rb
- spec/unit/file_format/rails_format_spec.rb
- spec/unit/file_format/w3c_format_spec.rb
- spec/unit/filter/anonymize_filter_spec.rb
- spec/unit/filter/field_filter_spec.rb
- spec/unit/filter/filter_spec.rb
- spec/unit/filter/timespan_filter_spec.rb
- spec/unit/mailer_spec.rb
- spec/unit/request_spec.rb
- spec/unit/source/log_parser_spec.rb
- spec/unit/tracker/duration_tracker_spec.rb
- spec/unit/tracker/frequency_tracker_spec.rb
- spec/unit/tracker/hourly_spread_spec.rb
- spec/unit/tracker/numeric_value_tracker_spec.rb
- spec/unit/tracker/timespan_tracker_spec.rb
- spec/unit/tracker/tracker_api_spec.rb
- spec/unit/tracker/traffic_tracker_spec.rb