lackac-request-log-analyzer 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ desc 'Unit test request-log-analyzer.'
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.pattern = 'test/**/*_test.rb'
6
+ t.verbose = true
7
+ t.libs << 'test'
8
+ end
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lackac-request-log-analyzer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - Willem van Bergen
8
+ - Bart ten Brinke
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2008-10-06 00:00:00 -07:00
14
+ default_executable: request-log-analyzer
15
+ dependencies: []
16
+
17
+ description: Rails log analyzer's purpose is to find what actions are best candidates for optimization. This tool will parse all requests in the Rails logfile and aggregate the information. Once it is finished parsing the log file, it will show the requests that take op most server time using various metrics.
18
+ email: willem@vanbergen.org
19
+ executables:
20
+ - request-log-analyzer
21
+ - request-log-database
22
+ extensions: []
23
+
24
+ extra_rdoc_files: []
25
+
26
+ files:
27
+ - LICENSE
28
+ - README
29
+ - Rakefile
30
+ - TODO
31
+ - bin
32
+ - bin/request-log-analyzer
33
+ - bin/request-log-database
34
+ - lib
35
+ - lib/base
36
+ - lib/base/log_parser.rb
37
+ - lib/base/record_inserter.rb
38
+ - lib/base/summarizer.rb
39
+ - lib/bashcolorizer.rb
40
+ - lib/command_line
41
+ - lib/command_line/arguments.rb
42
+ - lib/command_line/exceptions.rb
43
+ - lib/command_line/flag.rb
44
+ - lib/merb_analyzer
45
+ - lib/merb_analyzer/log_parser.rb
46
+ - lib/merb_analyzer/summarizer.rb
47
+ - lib/rails_analyzer
48
+ - lib/rails_analyzer/log_parser.rb
49
+ - lib/rails_analyzer/record_inserter.rb
50
+ - lib/rails_analyzer/summarizer.rb
51
+ - lib/ruby-progressbar
52
+ - lib/ruby-progressbar/progressbar.en.rd
53
+ - lib/ruby-progressbar/progressbar.ja.rd
54
+ - lib/ruby-progressbar/progressbar.rb
55
+ - output
56
+ - output/blockers.rb
57
+ - output/errors.rb
58
+ - output/hourly_spread.rb
59
+ - output/mean_db_time.rb
60
+ - output/mean_rendering_time.rb
61
+ - output/mean_time.rb
62
+ - output/most_requested.rb
63
+ - output/timespan.rb
64
+ - output/total_db_time.rb
65
+ - output/total_time.rb
66
+ - output/usage.rb
67
+ - test
68
+ - test/log_fragments
69
+ - test/log_fragments/fragment_1.log
70
+ - test/log_fragments/fragment_2.log
71
+ - test/log_fragments/merb_1.log
72
+ - test/merb_log_parser_test.rb
73
+ - test/rails_log_parser_test.rb
74
+ - test/record_inserter_test.rb
75
+ - test/tasks.rake
76
+ has_rdoc: false
77
+ homepage: http://github.com/wvanbergen/request-log-analyzer/wikis
78
+ post_install_message:
79
+ rdoc_options: []
80
+
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: "0"
88
+ version:
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: "0"
94
+ version:
95
+ requirements: []
96
+
97
+ rubyforge_project:
98
+ rubygems_version: 1.2.0
99
+ signing_key:
100
+ specification_version: 2
101
+ summary: A command line tool to analyze Rails logs
102
+ test_files:
103
+ - test/rails_log_parser_test.rb
104
+ - test/merb_log_parser_test.rb
105
+ - test/record_inserter_test.rb