request-log-analyzer 1.7.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -1
- data/DESIGN.rdoc +0 -1
- data/Gemfile +2 -0
- data/README.rdoc +16 -5
- data/bin/request-log-analyzer +4 -2
- data/lib/cli/database_console_init.rb +1 -1
- data/lib/cli/tools.rb +2 -1
- data/lib/mixins/gets_memory_protection.rb +1 -1
- data/lib/request_log_analyzer/aggregator/summarizer.rb +2 -2
- data/lib/request_log_analyzer/aggregator.rb +3 -3
- data/lib/request_log_analyzer/controller.rb +42 -36
- data/lib/request_log_analyzer/database.rb +5 -3
- data/lib/request_log_analyzer/file_format/apache.rb +19 -28
- data/lib/request_log_analyzer/file_format/delayed_job2.rb +38 -0
- data/lib/request_log_analyzer/file_format/delayed_job21.rb +39 -0
- data/lib/request_log_analyzer/file_format/haproxy.rb +138 -0
- data/lib/request_log_analyzer/file_format/oink.rb +96 -0
- data/lib/request_log_analyzer/file_format/postgresql.rb +7 -6
- data/lib/request_log_analyzer/file_format/rails.rb +4 -4
- data/lib/request_log_analyzer/file_format/rails3.rb +34 -11
- data/lib/request_log_analyzer/file_format/w3c.rb +56 -0
- data/lib/request_log_analyzer/file_format.rb +33 -10
- data/lib/request_log_analyzer/filter.rb +3 -5
- data/lib/request_log_analyzer/output/fancy_html.rb +0 -5
- data/lib/request_log_analyzer/output.rb +6 -7
- data/lib/request_log_analyzer/request.rb +17 -3
- data/lib/request_log_analyzer/source/log_parser.rb +3 -1
- data/lib/request_log_analyzer/source.rb +2 -6
- data/lib/request_log_analyzer/tracker/duration.rb +7 -0
- data/lib/request_log_analyzer/tracker/numeric_value.rb +123 -12
- data/lib/request_log_analyzer/tracker/traffic.rb +7 -0
- data/lib/request_log_analyzer/tracker.rb +6 -5
- data/lib/request_log_analyzer.rb +36 -17
- data/request-log-analyzer.gemspec +9 -6
- data/spec/fixtures/oink_22.log +19 -0
- data/spec/fixtures/oink_22_failure.log +17 -0
- data/spec/fixtures/postgresql.log +29 -2980
- data/spec/integration/command_line_usage_spec.rb +4 -4
- data/spec/integration/mailer_spec.rb +20 -4
- data/spec/integration/munin_plugins_rails_spec.rb +1 -1
- data/spec/integration/scout_spec.rb +1 -1
- data/spec/lib/helpers.rb +2 -2
- data/spec/lib/macros.rb +1 -1
- data/spec/lib/matchers.rb +1 -1
- data/spec/lib/mocks.rb +1 -1
- data/spec/spec_helper.rb +10 -10
- data/spec/unit/aggregator/database_inserter_spec.rb +1 -1
- data/spec/unit/aggregator/summarizer_spec.rb +1 -1
- data/spec/unit/controller/controller_spec.rb +1 -1
- data/spec/unit/controller/log_processor_spec.rb +1 -1
- data/spec/unit/database/base_class_spec.rb +1 -1
- data/spec/unit/database/connection_spec.rb +1 -1
- data/spec/unit/database/database_spec.rb +1 -1
- data/spec/unit/file_format/amazon_s3_format_spec.rb +1 -1
- data/spec/unit/file_format/apache_format_spec.rb +18 -1
- data/spec/unit/file_format/common_regular_expressions_spec.rb +1 -1
- data/spec/unit/file_format/delayed_job21_format_spec.rb +60 -0
- data/spec/unit/file_format/delayed_job2_format_spec.rb +60 -0
- data/spec/unit/file_format/delayed_job_format_spec.rb +2 -2
- data/spec/unit/file_format/file_format_api_spec.rb +2 -2
- data/spec/unit/file_format/format_autodetection_spec.rb +7 -7
- data/spec/unit/file_format/haproxy_format_spec.rb +84 -0
- data/spec/unit/file_format/line_definition_spec.rb +1 -1
- data/spec/unit/file_format/merb_format_spec.rb +1 -1
- data/spec/unit/file_format/mysql_format_spec.rb +1 -1
- data/spec/unit/file_format/oink_format_spec.rb +105 -0
- data/spec/unit/file_format/postgresql_format_spec.rb +24 -46
- data/spec/unit/file_format/rack_format_spec.rb +1 -1
- data/spec/unit/file_format/rails3_format_spec.rb +41 -14
- data/spec/unit/file_format/rails_format_spec.rb +11 -1
- data/spec/unit/file_format/w3c_format_spec.rb +46 -0
- data/spec/unit/filter/anonymize_filter_spec.rb +1 -1
- data/spec/unit/filter/field_filter_spec.rb +1 -1
- data/spec/unit/filter/filter_spec.rb +1 -1
- data/spec/unit/filter/timespan_filter_spec.rb +1 -1
- data/spec/unit/mailer_spec.rb +1 -1
- data/spec/unit/request_spec.rb +1 -1
- data/spec/unit/source/log_parser_spec.rb +1 -1
- data/spec/unit/tracker/duration_tracker_spec.rb +4 -2
- data/spec/unit/tracker/frequency_tracker_spec.rb +1 -1
- data/spec/unit/tracker/hourly_spread_spec.rb +1 -1
- data/spec/unit/tracker/numeric_value_tracker_spec.rb +38 -17
- data/spec/unit/tracker/timespan_tracker_spec.rb +1 -1
- data/spec/unit/tracker/tracker_api_spec.rb +1 -1
- data/spec/unit/tracker/traffic_tracker_spec.rb +1 -1
- data/tasks/github-gem.rake +97 -60
- data/tasks/request_log_analyzer.rake +102 -0
- metadata +198 -153
metadata
CHANGED
|
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
|
-
-
|
|
7
|
+
- 10
|
|
8
8
|
- 0
|
|
9
|
-
version: 1.
|
|
9
|
+
version: 1.10.0
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Willem van Bergen
|
|
@@ -15,37 +15,62 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2011-02-26 00:00:00 -05:00
|
|
19
19
|
default_executable: request-log-analyzer
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
|
-
name:
|
|
22
|
+
name: rake
|
|
23
23
|
prerelease: false
|
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
25
26
|
requirements:
|
|
26
27
|
- - ">="
|
|
27
28
|
- !ruby/object:Gem::Version
|
|
28
29
|
segments:
|
|
29
|
-
-
|
|
30
|
-
|
|
31
|
-
- 4
|
|
32
|
-
version: 1.2.4
|
|
30
|
+
- 0
|
|
31
|
+
version: "0"
|
|
33
32
|
type: :development
|
|
34
33
|
version_requirements: *id001
|
|
35
34
|
- !ruby/object:Gem::Dependency
|
|
36
|
-
name:
|
|
35
|
+
name: rspec
|
|
37
36
|
prerelease: false
|
|
38
37
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
38
|
+
none: false
|
|
39
39
|
requirements:
|
|
40
|
-
- -
|
|
40
|
+
- - ~>
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
42
|
segments:
|
|
43
|
-
-
|
|
44
|
-
- 1
|
|
43
|
+
- 2
|
|
45
44
|
- 0
|
|
46
|
-
version:
|
|
45
|
+
version: "2.0"
|
|
47
46
|
type: :development
|
|
48
47
|
version_requirements: *id002
|
|
48
|
+
- !ruby/object:Gem::Dependency
|
|
49
|
+
name: activerecord
|
|
50
|
+
prerelease: false
|
|
51
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
52
|
+
none: false
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
segments:
|
|
57
|
+
- 0
|
|
58
|
+
version: "0"
|
|
59
|
+
type: :development
|
|
60
|
+
version_requirements: *id003
|
|
61
|
+
- !ruby/object:Gem::Dependency
|
|
62
|
+
name: sqlite3-ruby
|
|
63
|
+
prerelease: false
|
|
64
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
65
|
+
none: false
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
segments:
|
|
70
|
+
- 0
|
|
71
|
+
version: "0"
|
|
72
|
+
type: :development
|
|
73
|
+
version_requirements: *id004
|
|
49
74
|
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"
|
|
50
75
|
email:
|
|
51
76
|
- willem@railsdoctors.com
|
|
@@ -57,136 +82,149 @@ extensions: []
|
|
|
57
82
|
extra_rdoc_files:
|
|
58
83
|
- README.rdoc
|
|
59
84
|
files:
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
85
|
+
- .gitignore
|
|
86
|
+
- DESIGN.rdoc
|
|
87
|
+
- Gemfile
|
|
88
|
+
- LICENSE
|
|
64
89
|
- README.rdoc
|
|
90
|
+
- Rakefile
|
|
91
|
+
- bin/request-log-analyzer
|
|
92
|
+
- lib/cli/command_line_arguments.rb
|
|
93
|
+
- lib/cli/database_console.rb
|
|
94
|
+
- lib/cli/database_console_init.rb
|
|
65
95
|
- lib/cli/progressbar.rb
|
|
66
|
-
-
|
|
67
|
-
- lib/request_log_analyzer/file_format/rails_development.rb
|
|
68
|
-
- spec/fixtures/rails_22.log
|
|
69
|
-
- spec/fixtures/test_order.log
|
|
70
|
-
- spec/fixtures/header_and_footer.log
|
|
96
|
+
- lib/cli/tools.rb
|
|
71
97
|
- lib/mixins/gets_memory_protection.rb
|
|
72
|
-
-
|
|
73
|
-
-
|
|
74
|
-
- lib/request_log_analyzer/
|
|
75
|
-
- lib/request_log_analyzer/
|
|
76
|
-
- lib/request_log_analyzer/
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
- spec/unit/filter/filter_spec.rb
|
|
80
|
-
- spec/unit/aggregator/summarizer_spec.rb
|
|
81
|
-
- lib/request_log_analyzer/file_format/rails.rb
|
|
82
|
-
- spec/database.yml
|
|
83
|
-
- spec/unit/tracker/numeric_value_tracker_spec.rb
|
|
84
|
-
- spec/spec_helper.rb
|
|
98
|
+
- lib/request_log_analyzer.rb
|
|
99
|
+
- lib/request_log_analyzer/aggregator.rb
|
|
100
|
+
- lib/request_log_analyzer/aggregator/database_inserter.rb
|
|
101
|
+
- lib/request_log_analyzer/aggregator/echo.rb
|
|
102
|
+
- lib/request_log_analyzer/aggregator/summarizer.rb
|
|
103
|
+
- lib/request_log_analyzer/controller.rb
|
|
104
|
+
- lib/request_log_analyzer/database.rb
|
|
85
105
|
- lib/request_log_analyzer/database/base.rb
|
|
86
|
-
-
|
|
87
|
-
-
|
|
88
|
-
-
|
|
89
|
-
- spec/fixtures/sinatra.log
|
|
106
|
+
- lib/request_log_analyzer/database/connection.rb
|
|
107
|
+
- lib/request_log_analyzer/database/request.rb
|
|
108
|
+
- lib/request_log_analyzer/database/source.rb
|
|
90
109
|
- lib/request_log_analyzer/database/warning.rb
|
|
91
|
-
-
|
|
92
|
-
-
|
|
93
|
-
- lib/request_log_analyzer/
|
|
94
|
-
- spec/fixtures/rails_22_cached.log
|
|
95
|
-
- lib/request_log_analyzer/tracker/traffic.rb
|
|
96
|
-
- spec/unit/file_format/format_autodetection_spec.rb
|
|
97
|
-
- lib/request_log_analyzer/filter/field.rb
|
|
110
|
+
- lib/request_log_analyzer/file_format.rb
|
|
111
|
+
- lib/request_log_analyzer/file_format/amazon_s3.rb
|
|
112
|
+
- lib/request_log_analyzer/file_format/apache.rb
|
|
98
113
|
- lib/request_log_analyzer/file_format/delayed_job.rb
|
|
114
|
+
- lib/request_log_analyzer/file_format/delayed_job2.rb
|
|
115
|
+
- lib/request_log_analyzer/file_format/delayed_job21.rb
|
|
116
|
+
- lib/request_log_analyzer/file_format/haproxy.rb
|
|
99
117
|
- lib/request_log_analyzer/file_format/merb.rb
|
|
118
|
+
- lib/request_log_analyzer/file_format/mysql.rb
|
|
119
|
+
- lib/request_log_analyzer/file_format/oink.rb
|
|
120
|
+
- lib/request_log_analyzer/file_format/postgresql.rb
|
|
121
|
+
- lib/request_log_analyzer/file_format/rack.rb
|
|
122
|
+
- lib/request_log_analyzer/file_format/rails.rb
|
|
123
|
+
- lib/request_log_analyzer/file_format/rails3.rb
|
|
124
|
+
- lib/request_log_analyzer/file_format/rails_development.rb
|
|
125
|
+
- lib/request_log_analyzer/file_format/w3c.rb
|
|
126
|
+
- lib/request_log_analyzer/filter.rb
|
|
100
127
|
- lib/request_log_analyzer/filter/anonymize.rb
|
|
101
|
-
- lib/request_log_analyzer/
|
|
102
|
-
-
|
|
103
|
-
- lib/request_log_analyzer/file_format.rb
|
|
104
|
-
- lib/cli/database_console.rb
|
|
105
|
-
- spec/integration/mailer_spec.rb
|
|
106
|
-
- spec/fixtures/merb.log
|
|
128
|
+
- lib/request_log_analyzer/filter/field.rb
|
|
129
|
+
- lib/request_log_analyzer/filter/timespan.rb
|
|
107
130
|
- lib/request_log_analyzer/line_definition.rb
|
|
108
|
-
- spec/unit/tracker/frequency_tracker_spec.rb
|
|
109
|
-
- spec/unit/mailer_spec.rb
|
|
110
|
-
- spec/fixtures/postgresql.log
|
|
111
|
-
- spec/lib/mocks.rb
|
|
112
|
-
- lib/request_log_analyzer/tracker/hourly_spread.rb
|
|
113
|
-
- spec/fixtures/syslog_1x.log
|
|
114
|
-
- spec/unit/file_format/rails3_format_spec.rb
|
|
115
|
-
- lib/request_log_analyzer/source.rb
|
|
116
|
-
- lib/request_log_analyzer/file_format/rails3.rb
|
|
117
|
-
- spec/unit/controller/log_processor_spec.rb
|
|
118
|
-
- spec/unit/tracker/hourly_spread_spec.rb
|
|
119
|
-
- spec/unit/filter/field_filter_spec.rb
|
|
120
|
-
- DESIGN.rdoc
|
|
121
131
|
- lib/request_log_analyzer/log_processor.rb
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
- spec/unit/database/base_class_spec.rb
|
|
126
|
-
- lib/request_log_analyzer/aggregator/database_inserter.rb
|
|
127
|
-
- lib/request_log_analyzer/database/connection.rb
|
|
128
|
-
- lib/request_log_analyzer/aggregator.rb
|
|
129
|
-
- lib/request_log_analyzer/database.rb
|
|
130
|
-
- spec/unit/file_format/rails_format_spec.rb
|
|
131
|
-
- lib/request_log_analyzer/source/database_loader.rb
|
|
132
|
+
- lib/request_log_analyzer/mailer.rb
|
|
133
|
+
- lib/request_log_analyzer/output.rb
|
|
134
|
+
- lib/request_log_analyzer/output/fancy_html.rb
|
|
132
135
|
- lib/request_log_analyzer/output/fixed_width.rb
|
|
133
|
-
- spec/integration/command_line_usage_spec.rb
|
|
134
|
-
- tasks/request_log_analyzer.rake
|
|
135
|
-
- lib/request_log_analyzer/tracker/duration.rb
|
|
136
|
-
- spec/fixtures/test_language_combined.log
|
|
137
|
-
- bin/request-log-analyzer
|
|
138
|
-
- lib/request_log_analyzer/tracker.rb
|
|
139
|
-
- tasks/github-gem.rake
|
|
140
|
-
- lib/cli/command_line_arguments.rb
|
|
141
|
-
- lib/request_log_analyzer.rb
|
|
142
|
-
- .gitignore
|
|
143
136
|
- lib/request_log_analyzer/output/html.rb
|
|
144
|
-
- lib/request_log_analyzer/
|
|
145
|
-
- lib/
|
|
146
|
-
- lib/request_log_analyzer/
|
|
147
|
-
-
|
|
148
|
-
- lib/request_log_analyzer/
|
|
149
|
-
-
|
|
150
|
-
- spec/unit/tracker/duration_tracker_spec.rb
|
|
151
|
-
- spec/fixtures/test_file_format.log
|
|
152
|
-
- lib/request_log_analyzer/aggregator/summarizer.rb
|
|
153
|
-
- spec/unit/filter/timespan_filter_spec.rb
|
|
154
|
-
- spec/unit/file_format/common_regular_expressions_spec.rb
|
|
155
|
-
- spec/unit/file_format/merb_format_spec.rb
|
|
156
|
-
- spec/unit/file_format/file_format_api_spec.rb
|
|
157
|
-
- lib/request_log_analyzer/file_format/mysql.rb
|
|
158
|
-
- spec/unit/file_format/rack_format_spec.rb
|
|
159
|
-
- spec/unit/file_format/mysql_format_spec.rb
|
|
160
|
-
- spec/fixtures/decompression.log.gz
|
|
137
|
+
- lib/request_log_analyzer/request.rb
|
|
138
|
+
- lib/request_log_analyzer/source.rb
|
|
139
|
+
- lib/request_log_analyzer/source/database_loader.rb
|
|
140
|
+
- lib/request_log_analyzer/source/log_parser.rb
|
|
141
|
+
- lib/request_log_analyzer/tracker.rb
|
|
142
|
+
- lib/request_log_analyzer/tracker/duration.rb
|
|
161
143
|
- lib/request_log_analyzer/tracker/frequency.rb
|
|
144
|
+
- lib/request_log_analyzer/tracker/hourly_spread.rb
|
|
145
|
+
- lib/request_log_analyzer/tracker/numeric_value.rb
|
|
146
|
+
- lib/request_log_analyzer/tracker/timespan.rb
|
|
147
|
+
- lib/request_log_analyzer/tracker/traffic.rb
|
|
162
148
|
- request-log-analyzer.gemspec
|
|
149
|
+
- spec/database.yml
|
|
150
|
+
- spec/fixtures/apache_combined.log
|
|
163
151
|
- spec/fixtures/apache_common.log
|
|
164
|
-
-
|
|
165
|
-
- spec/
|
|
166
|
-
-
|
|
167
|
-
- lib/request_log_analyzer/tracker/timespan.rb
|
|
168
|
-
- spec/lib/macros.rb
|
|
169
|
-
- spec/integration/scout_spec.rb
|
|
170
|
-
- spec/unit/controller/controller_spec.rb
|
|
171
|
-
- lib/request_log_analyzer/mailer.rb
|
|
172
|
-
- lib/cli/tools.rb
|
|
173
|
-
- spec/unit/tracker/timespan_tracker_spec.rb
|
|
174
|
-
- spec/lib/testing_format.rb
|
|
175
|
-
- spec/lib/matchers.rb
|
|
176
|
-
- lib/request_log_analyzer/controller.rb
|
|
177
|
-
- spec/unit/tracker/tracker_api_spec.rb
|
|
178
|
-
- lib/request_log_analyzer/request.rb
|
|
179
|
-
- spec/fixtures/multiple_files_2.log
|
|
180
|
-
- spec/unit/database/database_spec.rb
|
|
152
|
+
- spec/fixtures/decompression.log
|
|
153
|
+
- spec/fixtures/decompression.log.bz2
|
|
154
|
+
- spec/fixtures/decompression.log.gz
|
|
181
155
|
- spec/fixtures/decompression.log.zip
|
|
156
|
+
- spec/fixtures/decompression.tar.gz
|
|
182
157
|
- spec/fixtures/decompression.tgz
|
|
183
|
-
-
|
|
184
|
-
- spec/
|
|
158
|
+
- spec/fixtures/header_and_footer.log
|
|
159
|
+
- spec/fixtures/merb.log
|
|
160
|
+
- spec/fixtures/merb_prefixed.log
|
|
161
|
+
- spec/fixtures/multiple_files_1.log
|
|
162
|
+
- spec/fixtures/multiple_files_2.log
|
|
185
163
|
- spec/fixtures/mysql_slow_query.log
|
|
164
|
+
- spec/fixtures/oink_22.log
|
|
165
|
+
- spec/fixtures/oink_22_failure.log
|
|
166
|
+
- spec/fixtures/postgresql.log
|
|
167
|
+
- spec/fixtures/rails.db
|
|
168
|
+
- spec/fixtures/rails_1x.log
|
|
169
|
+
- spec/fixtures/rails_22.log
|
|
170
|
+
- spec/fixtures/rails_22_cached.log
|
|
171
|
+
- spec/fixtures/rails_unordered.log
|
|
172
|
+
- spec/fixtures/sinatra.log
|
|
173
|
+
- spec/fixtures/syslog_1x.log
|
|
174
|
+
- spec/fixtures/test_file_format.log
|
|
175
|
+
- spec/fixtures/test_language_combined.log
|
|
176
|
+
- spec/fixtures/test_order.log
|
|
177
|
+
- spec/integration/command_line_usage_spec.rb
|
|
178
|
+
- spec/integration/mailer_spec.rb
|
|
179
|
+
- spec/integration/munin_plugins_rails_spec.rb
|
|
180
|
+
- spec/integration/scout_spec.rb
|
|
186
181
|
- spec/lib/helpers.rb
|
|
187
|
-
- lib/
|
|
188
|
-
- lib/
|
|
182
|
+
- spec/lib/macros.rb
|
|
183
|
+
- spec/lib/matchers.rb
|
|
184
|
+
- spec/lib/mocks.rb
|
|
185
|
+
- spec/lib/testing_format.rb
|
|
186
|
+
- spec/spec_helper.rb
|
|
187
|
+
- spec/unit/aggregator/database_inserter_spec.rb
|
|
188
|
+
- spec/unit/aggregator/summarizer_spec.rb
|
|
189
|
+
- spec/unit/controller/controller_spec.rb
|
|
190
|
+
- spec/unit/controller/log_processor_spec.rb
|
|
191
|
+
- spec/unit/database/base_class_spec.rb
|
|
192
|
+
- spec/unit/database/connection_spec.rb
|
|
193
|
+
- spec/unit/database/database_spec.rb
|
|
194
|
+
- spec/unit/file_format/amazon_s3_format_spec.rb
|
|
189
195
|
- spec/unit/file_format/apache_format_spec.rb
|
|
196
|
+
- spec/unit/file_format/common_regular_expressions_spec.rb
|
|
197
|
+
- spec/unit/file_format/delayed_job21_format_spec.rb
|
|
198
|
+
- spec/unit/file_format/delayed_job2_format_spec.rb
|
|
199
|
+
- spec/unit/file_format/delayed_job_format_spec.rb
|
|
200
|
+
- spec/unit/file_format/file_format_api_spec.rb
|
|
201
|
+
- spec/unit/file_format/format_autodetection_spec.rb
|
|
202
|
+
- spec/unit/file_format/haproxy_format_spec.rb
|
|
203
|
+
- spec/unit/file_format/line_definition_spec.rb
|
|
204
|
+
- spec/unit/file_format/merb_format_spec.rb
|
|
205
|
+
- spec/unit/file_format/mysql_format_spec.rb
|
|
206
|
+
- spec/unit/file_format/oink_format_spec.rb
|
|
207
|
+
- spec/unit/file_format/postgresql_format_spec.rb
|
|
208
|
+
- spec/unit/file_format/rack_format_spec.rb
|
|
209
|
+
- spec/unit/file_format/rails3_format_spec.rb
|
|
210
|
+
- spec/unit/file_format/rails_format_spec.rb
|
|
211
|
+
- spec/unit/file_format/w3c_format_spec.rb
|
|
212
|
+
- spec/unit/filter/anonymize_filter_spec.rb
|
|
213
|
+
- spec/unit/filter/field_filter_spec.rb
|
|
214
|
+
- spec/unit/filter/filter_spec.rb
|
|
215
|
+
- spec/unit/filter/timespan_filter_spec.rb
|
|
216
|
+
- spec/unit/mailer_spec.rb
|
|
217
|
+
- spec/unit/request_spec.rb
|
|
218
|
+
- spec/unit/source/log_parser_spec.rb
|
|
219
|
+
- spec/unit/tracker/duration_tracker_spec.rb
|
|
220
|
+
- spec/unit/tracker/frequency_tracker_spec.rb
|
|
221
|
+
- spec/unit/tracker/hourly_spread_spec.rb
|
|
222
|
+
- spec/unit/tracker/numeric_value_tracker_spec.rb
|
|
223
|
+
- spec/unit/tracker/timespan_tracker_spec.rb
|
|
224
|
+
- spec/unit/tracker/tracker_api_spec.rb
|
|
225
|
+
- spec/unit/tracker/traffic_tracker_spec.rb
|
|
226
|
+
- tasks/github-gem.rake
|
|
227
|
+
- tasks/request_log_analyzer.rake
|
|
190
228
|
has_rdoc: true
|
|
191
229
|
homepage: http://railsdoctors.com
|
|
192
230
|
licenses: []
|
|
@@ -202,6 +240,7 @@ rdoc_options:
|
|
|
202
240
|
require_paths:
|
|
203
241
|
- lib
|
|
204
242
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
243
|
+
none: false
|
|
205
244
|
requirements:
|
|
206
245
|
- - ">="
|
|
207
246
|
- !ruby/object:Gem::Version
|
|
@@ -209,6 +248,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
209
248
|
- 0
|
|
210
249
|
version: "0"
|
|
211
250
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
251
|
+
none: false
|
|
212
252
|
requirements:
|
|
213
253
|
- - ">="
|
|
214
254
|
- !ruby/object:Gem::Version
|
|
@@ -218,46 +258,51 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
218
258
|
requirements:
|
|
219
259
|
- To use the database inserter, ActiveRecord and an appropriate database adapter are required.
|
|
220
260
|
rubyforge_project: r-l-a
|
|
221
|
-
rubygems_version: 1.3.
|
|
261
|
+
rubygems_version: 1.3.7
|
|
222
262
|
signing_key:
|
|
223
263
|
specification_version: 3
|
|
224
264
|
summary: A command line tool to analyze request logs for Apache, Rails, Merb, MySQL and other web application servers
|
|
225
265
|
test_files:
|
|
226
|
-
- spec/
|
|
227
|
-
- spec/unit/filter/anonymize_filter_spec.rb
|
|
228
|
-
- spec/unit/file_format/line_definition_spec.rb
|
|
229
|
-
- spec/unit/request_spec.rb
|
|
230
|
-
- spec/unit/filter/filter_spec.rb
|
|
231
|
-
- spec/unit/aggregator/summarizer_spec.rb
|
|
232
|
-
- spec/unit/tracker/numeric_value_tracker_spec.rb
|
|
233
|
-
- spec/unit/aggregator/database_inserter_spec.rb
|
|
234
|
-
- spec/unit/database/connection_spec.rb
|
|
235
|
-
- spec/unit/file_format/postgresql_format_spec.rb
|
|
236
|
-
- spec/unit/file_format/format_autodetection_spec.rb
|
|
266
|
+
- spec/integration/command_line_usage_spec.rb
|
|
237
267
|
- spec/integration/mailer_spec.rb
|
|
238
|
-
- spec/
|
|
239
|
-
- spec/
|
|
240
|
-
- spec/unit/
|
|
268
|
+
- spec/integration/munin_plugins_rails_spec.rb
|
|
269
|
+
- spec/integration/scout_spec.rb
|
|
270
|
+
- spec/unit/aggregator/database_inserter_spec.rb
|
|
271
|
+
- spec/unit/aggregator/summarizer_spec.rb
|
|
272
|
+
- spec/unit/controller/controller_spec.rb
|
|
241
273
|
- spec/unit/controller/log_processor_spec.rb
|
|
242
|
-
- spec/unit/tracker/hourly_spread_spec.rb
|
|
243
|
-
- spec/unit/filter/field_filter_spec.rb
|
|
244
|
-
- spec/unit/source/log_parser_spec.rb
|
|
245
274
|
- spec/unit/database/base_class_spec.rb
|
|
246
|
-
- spec/unit/
|
|
247
|
-
- spec/
|
|
275
|
+
- spec/unit/database/connection_spec.rb
|
|
276
|
+
- spec/unit/database/database_spec.rb
|
|
248
277
|
- spec/unit/file_format/amazon_s3_format_spec.rb
|
|
249
|
-
- spec/unit/
|
|
250
|
-
- spec/unit/filter/timespan_filter_spec.rb
|
|
278
|
+
- spec/unit/file_format/apache_format_spec.rb
|
|
251
279
|
- spec/unit/file_format/common_regular_expressions_spec.rb
|
|
252
|
-
- spec/unit/file_format/
|
|
280
|
+
- spec/unit/file_format/delayed_job21_format_spec.rb
|
|
281
|
+
- spec/unit/file_format/delayed_job2_format_spec.rb
|
|
282
|
+
- spec/unit/file_format/delayed_job_format_spec.rb
|
|
253
283
|
- spec/unit/file_format/file_format_api_spec.rb
|
|
254
|
-
- spec/unit/file_format/
|
|
284
|
+
- spec/unit/file_format/format_autodetection_spec.rb
|
|
285
|
+
- spec/unit/file_format/haproxy_format_spec.rb
|
|
286
|
+
- spec/unit/file_format/line_definition_spec.rb
|
|
287
|
+
- spec/unit/file_format/merb_format_spec.rb
|
|
255
288
|
- spec/unit/file_format/mysql_format_spec.rb
|
|
256
|
-
- spec/unit/
|
|
257
|
-
- spec/
|
|
258
|
-
- spec/unit/
|
|
289
|
+
- spec/unit/file_format/oink_format_spec.rb
|
|
290
|
+
- spec/unit/file_format/postgresql_format_spec.rb
|
|
291
|
+
- spec/unit/file_format/rack_format_spec.rb
|
|
292
|
+
- spec/unit/file_format/rails3_format_spec.rb
|
|
293
|
+
- spec/unit/file_format/rails_format_spec.rb
|
|
294
|
+
- spec/unit/file_format/w3c_format_spec.rb
|
|
295
|
+
- spec/unit/filter/anonymize_filter_spec.rb
|
|
296
|
+
- spec/unit/filter/field_filter_spec.rb
|
|
297
|
+
- spec/unit/filter/filter_spec.rb
|
|
298
|
+
- spec/unit/filter/timespan_filter_spec.rb
|
|
299
|
+
- spec/unit/mailer_spec.rb
|
|
300
|
+
- spec/unit/request_spec.rb
|
|
301
|
+
- spec/unit/source/log_parser_spec.rb
|
|
302
|
+
- spec/unit/tracker/duration_tracker_spec.rb
|
|
303
|
+
- spec/unit/tracker/frequency_tracker_spec.rb
|
|
304
|
+
- spec/unit/tracker/hourly_spread_spec.rb
|
|
305
|
+
- spec/unit/tracker/numeric_value_tracker_spec.rb
|
|
259
306
|
- spec/unit/tracker/timespan_tracker_spec.rb
|
|
260
307
|
- spec/unit/tracker/tracker_api_spec.rb
|
|
261
|
-
- spec/unit/
|
|
262
|
-
- spec/integration/munin_plugins_rails_spec.rb
|
|
263
|
-
- spec/unit/file_format/apache_format_spec.rb
|
|
308
|
+
- spec/unit/tracker/traffic_tracker_spec.rb
|