appsignal 0.11.18 → 0.12.beta.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/CHANGELOG.md +4 -38
- data/Rakefile +14 -6
- data/appsignal.gemspec +3 -1
- data/benchmark.rake +12 -16
- data/ext/appsignal_extension.c +183 -0
- data/ext/extconf.rb +39 -0
- data/gemfiles/capistrano2.gemfile +0 -1
- data/gemfiles/capistrano3.gemfile +0 -1
- data/gemfiles/rails-4.2.gemfile +1 -1
- data/lib/appsignal.rb +23 -61
- data/lib/appsignal/capistrano.rb +1 -2
- data/lib/appsignal/config.rb +13 -1
- data/lib/appsignal/event_formatter.rb +67 -0
- data/lib/appsignal/event_formatter/action_view/render_formatter.rb +23 -0
- data/lib/appsignal/event_formatter/active_record/sql_formatter.rb +74 -0
- data/lib/appsignal/event_formatter/moped/query_formatter.rb +80 -0
- data/lib/appsignal/event_formatter/net_http/request_formatter.rb +13 -0
- data/lib/appsignal/instrumentations/net_http.rb +6 -4
- data/lib/appsignal/integrations/resque.rb +2 -10
- data/lib/appsignal/integrations/sidekiq.rb +2 -2
- data/lib/appsignal/integrations/sinatra.rb +1 -0
- data/lib/appsignal/js_exception_transaction.rb +44 -28
- data/lib/appsignal/marker.rb +11 -13
- data/lib/appsignal/params_sanitizer.rb +5 -8
- data/lib/appsignal/rack/instrumentation.rb +2 -0
- data/lib/appsignal/rack/js_exception_catcher.rb +1 -0
- data/lib/appsignal/rack/listener.rb +1 -1
- data/lib/appsignal/rack/sinatra_instrumentation.rb +2 -12
- data/lib/appsignal/subscriber.rb +59 -0
- data/lib/appsignal/transaction.rb +117 -174
- data/lib/appsignal/transmitter.rb +8 -37
- data/lib/appsignal/version.rb +2 -1
- data/spec/lib/appsignal/config_spec.rb +25 -4
- data/spec/lib/appsignal/event_formatter/action_view/render_formatter_spec.rb +42 -0
- data/spec/lib/appsignal/{aggregator/middleware/active_record_sanitizer_spec.rb → event_formatter/active_record/sql_formatter_spec.rb} +61 -61
- data/spec/lib/appsignal/{event/moped_event_spec.rb → event_formatter/moped/query_formatter_spec.rb} +32 -78
- data/spec/lib/appsignal/event_formatter/net_http/request_formatter_spec.rb +26 -0
- data/spec/lib/appsignal/event_formatter_spec.rb +102 -0
- data/spec/lib/appsignal/extension_spec.rb +75 -0
- data/spec/lib/appsignal/instrumentations/net_http_spec.rb +20 -4
- data/spec/lib/appsignal/integrations/delayed_job_spec.rb +3 -2
- data/spec/lib/appsignal/integrations/rails_spec.rb +0 -7
- data/spec/lib/appsignal/integrations/resque_spec.rb +51 -55
- data/spec/lib/appsignal/integrations/sequel_spec.rb +8 -3
- data/spec/lib/appsignal/integrations/sidekiq_spec.rb +4 -21
- data/spec/lib/appsignal/integrations/sinatra_spec.rb +0 -6
- data/spec/lib/appsignal/js_exception_transaction_spec.rb +57 -60
- data/spec/lib/appsignal/params_sanitizer_spec.rb +11 -27
- data/spec/lib/appsignal/rack/listener_spec.rb +6 -6
- data/spec/lib/appsignal/rack/sinatra_instrumentation_spec.rb +2 -43
- data/spec/lib/appsignal/subscriber_spec.rb +162 -0
- data/spec/lib/appsignal/transaction_spec.rb +283 -615
- data/spec/lib/appsignal/transmitter_spec.rb +3 -32
- data/spec/lib/appsignal_spec.rb +41 -90
- data/spec/lib/generators/appsignal/appsignal_generator_spec.rb +0 -17
- data/spec/spec_helper.rb +18 -22
- data/spec/support/helpers/notification_helpers.rb +1 -1
- data/spec/support/helpers/time_helpers.rb +11 -0
- data/spec/support/helpers/transaction_helpers.rb +6 -18
- data/spec/support/project_fixture/config/appsignal.yml +1 -2
- metadata +68 -78
- checksums.yaml +0 -7
- data/gemfiles/padrino-0.13.gemfile +0 -7
- data/gemfiles/resque.gemfile +0 -5
- data/lib/appsignal/agent.rb +0 -217
- data/lib/appsignal/aggregator.rb +0 -67
- data/lib/appsignal/aggregator/middleware.rb +0 -4
- data/lib/appsignal/aggregator/middleware/action_view_sanitizer.rb +0 -23
- data/lib/appsignal/aggregator/middleware/active_record_sanitizer.rb +0 -65
- data/lib/appsignal/aggregator/middleware/chain.rb +0 -101
- data/lib/appsignal/aggregator/middleware/delete_blanks.rb +0 -16
- data/lib/appsignal/aggregator/post_processor.rb +0 -32
- data/lib/appsignal/event.rb +0 -20
- data/lib/appsignal/event/moped_event.rb +0 -90
- data/lib/appsignal/integrations/padrino.rb +0 -64
- data/lib/appsignal/integrations/passenger.rb +0 -13
- data/lib/appsignal/integrations/rake.rb +0 -29
- data/lib/appsignal/integrations/unicorn.rb +0 -25
- data/lib/appsignal/ipc.rb +0 -68
- data/lib/appsignal/transaction/formatter.rb +0 -85
- data/lib/appsignal/transaction/params_sanitizer.rb +0 -4
- data/lib/appsignal/zipped_payload.rb +0 -37
- data/spec/lib/appsignal/agent_spec.rb +0 -592
- data/spec/lib/appsignal/aggregator/middleware/action_view_sanitizer_spec.rb +0 -44
- data/spec/lib/appsignal/aggregator/middleware/chain_spec.rb +0 -168
- data/spec/lib/appsignal/aggregator/middleware/delete_blanks_spec.rb +0 -37
- data/spec/lib/appsignal/aggregator/post_processor_spec.rb +0 -99
- data/spec/lib/appsignal/aggregator_spec.rb +0 -186
- data/spec/lib/appsignal/event_spec.rb +0 -48
- data/spec/lib/appsignal/integrations/padrino_spec.rb +0 -171
- data/spec/lib/appsignal/integrations/passenger_spec.rb +0 -22
- data/spec/lib/appsignal/integrations/rake_spec.rb +0 -92
- data/spec/lib/appsignal/integrations/unicorn_spec.rb +0 -48
- data/spec/lib/appsignal/ipc_spec.rb +0 -128
- data/spec/lib/appsignal/transaction/formatter_spec.rb +0 -247
- data/spec/lib/appsignal/zipped_payload_spec.rb +0 -42
@@ -1,8 +1,4 @@
|
|
1
1
|
module TransactionHelpers
|
2
|
-
def fixed_time
|
3
|
-
@fixed_time ||= Time.utc(2014, 01, 15, 11, 0, 0).to_f
|
4
|
-
end
|
5
|
-
|
6
2
|
def uploaded_file
|
7
3
|
if rails_present?
|
8
4
|
ActionDispatch::Http::UploadedFile.new(:tempfile => '/tmp')
|
@@ -21,7 +17,7 @@ module TransactionHelpers
|
|
21
17
|
File.join(project_fixture_path, 'app/controllers/somethings_controller.rb:10').to_s,
|
22
18
|
'/user/local/ruby/path.rb:8'
|
23
19
|
])
|
24
|
-
o.
|
20
|
+
o.set_exception(exception)
|
25
21
|
end
|
26
22
|
end
|
27
23
|
end
|
@@ -67,34 +63,26 @@ module TransactionHelpers
|
|
67
63
|
'action_dispatch.routes' => 'not_available'
|
68
64
|
}.merge(args)
|
69
65
|
).tap do |o|
|
70
|
-
o.
|
71
|
-
notification_event(
|
72
|
-
:name => 'perform_job.delayed_job',
|
73
|
-
:payload => payload
|
74
|
-
)
|
75
|
-
)
|
66
|
+
o.set_root_event('perform_job.delayed_job', payload )
|
76
67
|
end
|
77
68
|
end
|
78
69
|
|
79
70
|
def appsignal_transaction(args={})
|
80
71
|
process_action_event = args.delete(:process_action_event)
|
81
|
-
|
72
|
+
args.delete(:events) || [
|
82
73
|
notification_event(:name => 'query.mongoid')
|
83
74
|
]
|
84
75
|
exception = args.delete(:exception)
|
85
|
-
defaults = args.delete(:defaults) || {}
|
86
76
|
Appsignal::Transaction.create(
|
87
77
|
'1',
|
88
78
|
{
|
89
79
|
'HTTP_USER_AGENT' => 'IE6',
|
90
80
|
'SERVER_NAME' => 'localhost',
|
91
81
|
'action_dispatch.routes' => 'not_available'
|
92
|
-
}.merge(args)
|
93
|
-
defaults
|
82
|
+
}.merge(args)
|
94
83
|
).tap do |o|
|
95
|
-
o.
|
96
|
-
o.
|
97
|
-
events.each { |event| o.add_event(event) }
|
84
|
+
o.set_root_event(process_action_event.name, process_action_event.payload)
|
85
|
+
o.set_exception(exception) if exception
|
98
86
|
end
|
99
87
|
end
|
100
88
|
end
|
@@ -1,7 +1,6 @@
|
|
1
1
|
default: &defaults
|
2
2
|
push_api_key: "abc"
|
3
3
|
name: "TestApp"
|
4
|
-
slow_request_threshold: 200
|
5
4
|
|
6
5
|
production:
|
7
6
|
<<: *defaults
|
@@ -13,7 +12,7 @@ development:
|
|
13
12
|
|
14
13
|
test:
|
15
14
|
<<: *defaults
|
16
|
-
endpoint: "http://localhost:3000
|
15
|
+
endpoint: "http://localhost:3000"
|
17
16
|
debug: true
|
18
17
|
active: true
|
19
18
|
|
metadata
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appsignal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.beta.0
|
5
|
+
prerelease: 5
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Robert Beekman
|
@@ -12,104 +13,118 @@ authors:
|
|
12
13
|
autorequire:
|
13
14
|
bindir: bin
|
14
15
|
cert_chain: []
|
15
|
-
date:
|
16
|
+
date: 2015-05-21 00:00:00.000000000 Z
|
16
17
|
dependencies:
|
17
18
|
- !ruby/object:Gem::Dependency
|
18
19
|
name: rack
|
19
20
|
requirement: !ruby/object:Gem::Requirement
|
21
|
+
none: false
|
20
22
|
requirements:
|
21
|
-
- -
|
23
|
+
- - ! '>='
|
22
24
|
- !ruby/object:Gem::Version
|
23
25
|
version: '0'
|
24
26
|
type: :runtime
|
25
27
|
prerelease: false
|
26
28
|
version_requirements: !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
27
30
|
requirements:
|
28
|
-
- -
|
31
|
+
- - ! '>='
|
29
32
|
- !ruby/object:Gem::Version
|
30
33
|
version: '0'
|
31
34
|
- !ruby/object:Gem::Dependency
|
32
35
|
name: thread_safe
|
33
36
|
requirement: !ruby/object:Gem::Requirement
|
37
|
+
none: false
|
34
38
|
requirements:
|
35
|
-
- -
|
39
|
+
- - ! '>='
|
36
40
|
- !ruby/object:Gem::Version
|
37
41
|
version: '0'
|
38
42
|
type: :runtime
|
39
43
|
prerelease: false
|
40
44
|
version_requirements: !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
41
46
|
requirements:
|
42
|
-
- -
|
47
|
+
- - ! '>='
|
43
48
|
- !ruby/object:Gem::Version
|
44
49
|
version: '0'
|
45
50
|
- !ruby/object:Gem::Dependency
|
46
51
|
name: rake
|
47
52
|
requirement: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
48
54
|
requirements:
|
49
|
-
- -
|
55
|
+
- - ! '>='
|
50
56
|
- !ruby/object:Gem::Version
|
51
57
|
version: '0'
|
52
58
|
type: :development
|
53
59
|
prerelease: false
|
54
60
|
version_requirements: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
55
62
|
requirements:
|
56
|
-
- -
|
63
|
+
- - ! '>='
|
57
64
|
- !ruby/object:Gem::Version
|
58
65
|
version: '0'
|
59
66
|
- !ruby/object:Gem::Dependency
|
60
67
|
name: rspec
|
61
68
|
requirement: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
62
70
|
requirements:
|
63
|
-
- -
|
71
|
+
- - ~>
|
64
72
|
- !ruby/object:Gem::Version
|
65
73
|
version: 2.14.1
|
66
74
|
type: :development
|
67
75
|
prerelease: false
|
68
76
|
version_requirements: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
69
78
|
requirements:
|
70
|
-
- -
|
79
|
+
- - ~>
|
71
80
|
- !ruby/object:Gem::Version
|
72
81
|
version: 2.14.1
|
73
82
|
- !ruby/object:Gem::Dependency
|
74
83
|
name: pry
|
75
84
|
requirement: !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
76
86
|
requirements:
|
77
|
-
- -
|
87
|
+
- - ! '>='
|
78
88
|
- !ruby/object:Gem::Version
|
79
89
|
version: '0'
|
80
90
|
type: :development
|
81
91
|
prerelease: false
|
82
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
none: false
|
83
94
|
requirements:
|
84
|
-
- -
|
95
|
+
- - ! '>='
|
85
96
|
- !ruby/object:Gem::Version
|
86
97
|
version: '0'
|
87
98
|
- !ruby/object:Gem::Dependency
|
88
99
|
name: timecop
|
89
100
|
requirement: !ruby/object:Gem::Requirement
|
101
|
+
none: false
|
90
102
|
requirements:
|
91
|
-
- -
|
103
|
+
- - ! '>='
|
92
104
|
- !ruby/object:Gem::Version
|
93
105
|
version: '0'
|
94
106
|
type: :development
|
95
107
|
prerelease: false
|
96
108
|
version_requirements: !ruby/object:Gem::Requirement
|
109
|
+
none: false
|
97
110
|
requirements:
|
98
|
-
- -
|
111
|
+
- - ! '>='
|
99
112
|
- !ruby/object:Gem::Version
|
100
113
|
version: '0'
|
101
114
|
- !ruby/object:Gem::Dependency
|
102
115
|
name: webmock
|
103
116
|
requirement: !ruby/object:Gem::Requirement
|
117
|
+
none: false
|
104
118
|
requirements:
|
105
|
-
- -
|
119
|
+
- - ! '>='
|
106
120
|
- !ruby/object:Gem::Version
|
107
121
|
version: '0'
|
108
122
|
type: :development
|
109
123
|
prerelease: false
|
110
124
|
version_requirements: !ruby/object:Gem::Requirement
|
125
|
+
none: false
|
111
126
|
requirements:
|
112
|
-
- -
|
127
|
+
- - ! '>='
|
113
128
|
- !ruby/object:Gem::Version
|
114
129
|
version: '0'
|
115
130
|
description: The official appsignal.com gem
|
@@ -117,12 +132,13 @@ email:
|
|
117
132
|
- support@appsignal.com
|
118
133
|
executables:
|
119
134
|
- appsignal
|
120
|
-
extensions:
|
135
|
+
extensions:
|
136
|
+
- ext/extconf.rb
|
121
137
|
extra_rdoc_files: []
|
122
138
|
files:
|
123
|
-
-
|
124
|
-
-
|
125
|
-
-
|
139
|
+
- .gitignore
|
140
|
+
- .rspec
|
141
|
+
- .travis.yml
|
126
142
|
- CHANGELOG.md
|
127
143
|
- Gemfile
|
128
144
|
- LICENSE
|
@@ -131,49 +147,39 @@ files:
|
|
131
147
|
- appsignal.gemspec
|
132
148
|
- benchmark.rake
|
133
149
|
- bin/appsignal
|
150
|
+
- ext/appsignal_extension.c
|
151
|
+
- ext/extconf.rb
|
134
152
|
- gemfiles/capistrano2.gemfile
|
135
153
|
- gemfiles/capistrano3.gemfile
|
136
154
|
- gemfiles/no_dependencies.gemfile
|
137
|
-
- gemfiles/padrino-0.13.gemfile
|
138
155
|
- gemfiles/rails-3.0.gemfile
|
139
156
|
- gemfiles/rails-3.1.gemfile
|
140
157
|
- gemfiles/rails-3.2.gemfile
|
141
158
|
- gemfiles/rails-4.0.gemfile
|
142
159
|
- gemfiles/rails-4.1.gemfile
|
143
160
|
- gemfiles/rails-4.2.gemfile
|
144
|
-
- gemfiles/resque.gemfile
|
145
161
|
- gemfiles/sequel.gemfile
|
146
162
|
- gemfiles/sinatra.gemfile
|
147
163
|
- lib/appsignal.rb
|
148
|
-
- lib/appsignal/agent.rb
|
149
|
-
- lib/appsignal/aggregator.rb
|
150
|
-
- lib/appsignal/aggregator/middleware.rb
|
151
|
-
- lib/appsignal/aggregator/middleware/action_view_sanitizer.rb
|
152
|
-
- lib/appsignal/aggregator/middleware/active_record_sanitizer.rb
|
153
|
-
- lib/appsignal/aggregator/middleware/chain.rb
|
154
|
-
- lib/appsignal/aggregator/middleware/delete_blanks.rb
|
155
|
-
- lib/appsignal/aggregator/post_processor.rb
|
156
164
|
- lib/appsignal/auth_check.rb
|
157
165
|
- lib/appsignal/capistrano.rb
|
158
166
|
- lib/appsignal/cli.rb
|
159
167
|
- lib/appsignal/config.rb
|
160
|
-
- lib/appsignal/
|
161
|
-
- lib/appsignal/
|
168
|
+
- lib/appsignal/event_formatter.rb
|
169
|
+
- lib/appsignal/event_formatter/action_view/render_formatter.rb
|
170
|
+
- lib/appsignal/event_formatter/active_record/sql_formatter.rb
|
171
|
+
- lib/appsignal/event_formatter/moped/query_formatter.rb
|
172
|
+
- lib/appsignal/event_formatter/net_http/request_formatter.rb
|
162
173
|
- lib/appsignal/instrumentations/net_http.rb
|
163
174
|
- lib/appsignal/integrations/capistrano/appsignal.cap
|
164
175
|
- lib/appsignal/integrations/capistrano/capistrano_2_tasks.rb
|
165
176
|
- lib/appsignal/integrations/capistrano/careful_logger.rb
|
166
177
|
- lib/appsignal/integrations/delayed_job.rb
|
167
|
-
- lib/appsignal/integrations/padrino.rb
|
168
|
-
- lib/appsignal/integrations/passenger.rb
|
169
178
|
- lib/appsignal/integrations/rails.rb
|
170
|
-
- lib/appsignal/integrations/rake.rb
|
171
179
|
- lib/appsignal/integrations/resque.rb
|
172
180
|
- lib/appsignal/integrations/sequel.rb
|
173
181
|
- lib/appsignal/integrations/sidekiq.rb
|
174
182
|
- lib/appsignal/integrations/sinatra.rb
|
175
|
-
- lib/appsignal/integrations/unicorn.rb
|
176
|
-
- lib/appsignal/ipc.rb
|
177
183
|
- lib/appsignal/js_exception_transaction.rb
|
178
184
|
- lib/appsignal/marker.rb
|
179
185
|
- lib/appsignal/params_sanitizer.rb
|
@@ -181,12 +187,10 @@ files:
|
|
181
187
|
- lib/appsignal/rack/js_exception_catcher.rb
|
182
188
|
- lib/appsignal/rack/listener.rb
|
183
189
|
- lib/appsignal/rack/sinatra_instrumentation.rb
|
190
|
+
- lib/appsignal/subscriber.rb
|
184
191
|
- lib/appsignal/transaction.rb
|
185
|
-
- lib/appsignal/transaction/formatter.rb
|
186
|
-
- lib/appsignal/transaction/params_sanitizer.rb
|
187
192
|
- lib/appsignal/transmitter.rb
|
188
193
|
- lib/appsignal/version.rb
|
189
|
-
- lib/appsignal/zipped_payload.rb
|
190
194
|
- lib/generators/appsignal/USAGE
|
191
195
|
- lib/generators/appsignal/appsignal_generator.rb
|
192
196
|
- lib/generators/appsignal/templates/appsignal.yml
|
@@ -196,32 +200,24 @@ files:
|
|
196
200
|
- lib/vendor/active_support/notifications/instrumenter.rb
|
197
201
|
- lib/vendor/active_support/per_thread_registry.rb
|
198
202
|
- resources/cacert.pem
|
199
|
-
- spec/lib/appsignal/agent_spec.rb
|
200
|
-
- spec/lib/appsignal/aggregator/middleware/action_view_sanitizer_spec.rb
|
201
|
-
- spec/lib/appsignal/aggregator/middleware/active_record_sanitizer_spec.rb
|
202
|
-
- spec/lib/appsignal/aggregator/middleware/chain_spec.rb
|
203
|
-
- spec/lib/appsignal/aggregator/middleware/delete_blanks_spec.rb
|
204
|
-
- spec/lib/appsignal/aggregator/post_processor_spec.rb
|
205
|
-
- spec/lib/appsignal/aggregator_spec.rb
|
206
203
|
- spec/lib/appsignal/auth_check_spec.rb
|
207
204
|
- spec/lib/appsignal/cli_spec.rb
|
208
205
|
- spec/lib/appsignal/config_spec.rb
|
209
|
-
- spec/lib/appsignal/
|
210
|
-
- spec/lib/appsignal/
|
206
|
+
- spec/lib/appsignal/event_formatter/action_view/render_formatter_spec.rb
|
207
|
+
- spec/lib/appsignal/event_formatter/active_record/sql_formatter_spec.rb
|
208
|
+
- spec/lib/appsignal/event_formatter/moped/query_formatter_spec.rb
|
209
|
+
- spec/lib/appsignal/event_formatter/net_http/request_formatter_spec.rb
|
210
|
+
- spec/lib/appsignal/event_formatter_spec.rb
|
211
|
+
- spec/lib/appsignal/extension_spec.rb
|
211
212
|
- spec/lib/appsignal/instrumentations/net_http_spec.rb
|
212
213
|
- spec/lib/appsignal/integrations/capistrano2_spec.rb
|
213
214
|
- spec/lib/appsignal/integrations/capistrano3_spec.rb
|
214
215
|
- spec/lib/appsignal/integrations/delayed_job_spec.rb
|
215
|
-
- spec/lib/appsignal/integrations/padrino_spec.rb
|
216
|
-
- spec/lib/appsignal/integrations/passenger_spec.rb
|
217
216
|
- spec/lib/appsignal/integrations/rails_spec.rb
|
218
|
-
- spec/lib/appsignal/integrations/rake_spec.rb
|
219
217
|
- spec/lib/appsignal/integrations/resque_spec.rb
|
220
218
|
- spec/lib/appsignal/integrations/sequel_spec.rb
|
221
219
|
- spec/lib/appsignal/integrations/sidekiq_spec.rb
|
222
220
|
- spec/lib/appsignal/integrations/sinatra_spec.rb
|
223
|
-
- spec/lib/appsignal/integrations/unicorn_spec.rb
|
224
|
-
- spec/lib/appsignal/ipc_spec.rb
|
225
221
|
- spec/lib/appsignal/js_exception_transaction_spec.rb
|
226
222
|
- spec/lib/appsignal/marker_spec.rb
|
227
223
|
- spec/lib/appsignal/params_sanitizer_spec.rb
|
@@ -229,10 +225,9 @@ files:
|
|
229
225
|
- spec/lib/appsignal/rack/js_exception_catcher_spec.rb
|
230
226
|
- spec/lib/appsignal/rack/listener_spec.rb
|
231
227
|
- spec/lib/appsignal/rack/sinatra_instrumentation_spec.rb
|
232
|
-
- spec/lib/appsignal/
|
228
|
+
- spec/lib/appsignal/subscriber_spec.rb
|
233
229
|
- spec/lib/appsignal/transaction_spec.rb
|
234
230
|
- spec/lib/appsignal/transmitter_spec.rb
|
235
|
-
- spec/lib/appsignal/zipped_payload_spec.rb
|
236
231
|
- spec/lib/appsignal_spec.rb
|
237
232
|
- spec/lib/generators/appsignal/appsignal_generator_spec.rb
|
238
233
|
- spec/lib/tmp/config/appsignal.yml
|
@@ -242,6 +237,7 @@ files:
|
|
242
237
|
- spec/support/fixtures/uploaded_file.txt
|
243
238
|
- spec/support/helpers/config_helpers.rb
|
244
239
|
- spec/support/helpers/notification_helpers.rb
|
240
|
+
- spec/support/helpers/time_helpers.rb
|
245
241
|
- spec/support/helpers/transaction_helpers.rb
|
246
242
|
- spec/support/mocks/mock_extension.rb
|
247
243
|
- spec/support/project_fixture/config/appsignal.yml
|
@@ -250,54 +246,48 @@ files:
|
|
250
246
|
homepage: https://github.com/appsignal/appsignal
|
251
247
|
licenses:
|
252
248
|
- MIT
|
253
|
-
metadata: {}
|
254
249
|
post_install_message:
|
255
250
|
rdoc_options: []
|
256
251
|
require_paths:
|
257
252
|
- lib
|
253
|
+
- ext
|
258
254
|
required_ruby_version: !ruby/object:Gem::Requirement
|
255
|
+
none: false
|
259
256
|
requirements:
|
260
|
-
- -
|
257
|
+
- - ! '>='
|
261
258
|
- !ruby/object:Gem::Version
|
262
259
|
version: '1.9'
|
263
260
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
261
|
+
none: false
|
264
262
|
requirements:
|
265
|
-
- -
|
263
|
+
- - ! '>'
|
266
264
|
- !ruby/object:Gem::Version
|
267
|
-
version:
|
265
|
+
version: 1.3.1
|
268
266
|
requirements: []
|
269
267
|
rubyforge_project:
|
270
|
-
rubygems_version:
|
268
|
+
rubygems_version: 1.8.23
|
271
269
|
signing_key:
|
272
|
-
specification_version:
|
270
|
+
specification_version: 3
|
273
271
|
summary: Logs performance and exception data from your app to appsignal.com
|
274
272
|
test_files:
|
275
|
-
- spec/lib/appsignal/agent_spec.rb
|
276
|
-
- spec/lib/appsignal/aggregator/middleware/action_view_sanitizer_spec.rb
|
277
|
-
- spec/lib/appsignal/aggregator/middleware/active_record_sanitizer_spec.rb
|
278
|
-
- spec/lib/appsignal/aggregator/middleware/chain_spec.rb
|
279
|
-
- spec/lib/appsignal/aggregator/middleware/delete_blanks_spec.rb
|
280
|
-
- spec/lib/appsignal/aggregator/post_processor_spec.rb
|
281
|
-
- spec/lib/appsignal/aggregator_spec.rb
|
282
273
|
- spec/lib/appsignal/auth_check_spec.rb
|
283
274
|
- spec/lib/appsignal/cli_spec.rb
|
284
275
|
- spec/lib/appsignal/config_spec.rb
|
285
|
-
- spec/lib/appsignal/
|
286
|
-
- spec/lib/appsignal/
|
276
|
+
- spec/lib/appsignal/event_formatter/action_view/render_formatter_spec.rb
|
277
|
+
- spec/lib/appsignal/event_formatter/active_record/sql_formatter_spec.rb
|
278
|
+
- spec/lib/appsignal/event_formatter/moped/query_formatter_spec.rb
|
279
|
+
- spec/lib/appsignal/event_formatter/net_http/request_formatter_spec.rb
|
280
|
+
- spec/lib/appsignal/event_formatter_spec.rb
|
281
|
+
- spec/lib/appsignal/extension_spec.rb
|
287
282
|
- spec/lib/appsignal/instrumentations/net_http_spec.rb
|
288
283
|
- spec/lib/appsignal/integrations/capistrano2_spec.rb
|
289
284
|
- spec/lib/appsignal/integrations/capistrano3_spec.rb
|
290
285
|
- spec/lib/appsignal/integrations/delayed_job_spec.rb
|
291
|
-
- spec/lib/appsignal/integrations/padrino_spec.rb
|
292
|
-
- spec/lib/appsignal/integrations/passenger_spec.rb
|
293
286
|
- spec/lib/appsignal/integrations/rails_spec.rb
|
294
|
-
- spec/lib/appsignal/integrations/rake_spec.rb
|
295
287
|
- spec/lib/appsignal/integrations/resque_spec.rb
|
296
288
|
- spec/lib/appsignal/integrations/sequel_spec.rb
|
297
289
|
- spec/lib/appsignal/integrations/sidekiq_spec.rb
|
298
290
|
- spec/lib/appsignal/integrations/sinatra_spec.rb
|
299
|
-
- spec/lib/appsignal/integrations/unicorn_spec.rb
|
300
|
-
- spec/lib/appsignal/ipc_spec.rb
|
301
291
|
- spec/lib/appsignal/js_exception_transaction_spec.rb
|
302
292
|
- spec/lib/appsignal/marker_spec.rb
|
303
293
|
- spec/lib/appsignal/params_sanitizer_spec.rb
|
@@ -305,10 +295,9 @@ test_files:
|
|
305
295
|
- spec/lib/appsignal/rack/js_exception_catcher_spec.rb
|
306
296
|
- spec/lib/appsignal/rack/listener_spec.rb
|
307
297
|
- spec/lib/appsignal/rack/sinatra_instrumentation_spec.rb
|
308
|
-
- spec/lib/appsignal/
|
298
|
+
- spec/lib/appsignal/subscriber_spec.rb
|
309
299
|
- spec/lib/appsignal/transaction_spec.rb
|
310
300
|
- spec/lib/appsignal/transmitter_spec.rb
|
311
|
-
- spec/lib/appsignal/zipped_payload_spec.rb
|
312
301
|
- spec/lib/appsignal_spec.rb
|
313
302
|
- spec/lib/generators/appsignal/appsignal_generator_spec.rb
|
314
303
|
- spec/lib/tmp/config/appsignal.yml
|
@@ -318,6 +307,7 @@ test_files:
|
|
318
307
|
- spec/support/fixtures/uploaded_file.txt
|
319
308
|
- spec/support/helpers/config_helpers.rb
|
320
309
|
- spec/support/helpers/notification_helpers.rb
|
310
|
+
- spec/support/helpers/time_helpers.rb
|
321
311
|
- spec/support/helpers/transaction_helpers.rb
|
322
312
|
- spec/support/mocks/mock_extension.rb
|
323
313
|
- spec/support/project_fixture/config/appsignal.yml
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 4204e0aa127219cae272542349aa109cfb4445df
|
4
|
-
data.tar.gz: c9100565b00cadfee94feeec9ddc8cc5bbce0c19
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 710507253fcf8873605f60638d2806ff4f08fcd59adc45a0b879eef9c2c63b87f7aad63b6abcaafb2f974f3370bafe9ccefe914c97cee68d6e6428c81e50933a
|
7
|
-
data.tar.gz: 75ab971b694c0cd2630e5fb4b5615b13b522d7c01b8859f4136391af4bdeed576af41c84628e1e6f65cbc98ede4aea1187360228c88b911e877a3f9207410835
|