errplane 1.0.11 → 1.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/gemfiles/Gemfile.rails-2.3.x.lock +1 -1
- data/gemfiles/Gemfile.rails-3.0.x.lock +2 -1
- data/gemfiles/Gemfile.rails-3.1.x.lock +2 -1
- data/gemfiles/Gemfile.rails-3.2.x.lock +2 -1
- data/lib/errplane/exception_presenter.rb +3 -3
- data/lib/errplane/rails/air_traffic_controller.rb +9 -4
- data/lib/errplane/version.rb +1 -1
- data/spec/integration/exceptions_spec.rb +5 -5
- data/spec/support/rails2/log/test.log +1517 -0
- data/spec/support/rails3/log/test.log +2508 -0
- metadata +2 -3
- data/gemfiles/versioned/Gemfile.rails-2.3.2 +0 -8
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzMxZDYxN2MxY2Q1YjQxNTZjNWM1ZjExNWU4NzdlZTU5OGZlZGJkOQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDIyNjdkNzJmN2E0YTI0MGRkYjY4MDIyMjExZTkxMTFhMTM0MWNhNg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YzJiNTlmMGUzODFiMjc0Y2U5MjUzOTM3ODVhMjQ0ZGM4OWM3YTU0ZGVhYjBh
|
10
|
+
M2QzY2NhZWNmMzMzYTJjY2NiY2YwZjY4OGFmZTIwNGFkNmEyZTE3MWI5M2Zi
|
11
|
+
ODQ1MDgzN2U4MWRlOTcyZDAyOTFiZWU5NGVlZGU2ODVhNjY4OWI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDhlMTQ5ZjM2YjNjYzg3NWZkYjk1NDE4MjU5Y2YyNzkwNjUzNjU3NDA2N2Fi
|
14
|
+
YjhlMmQyY2ZjMTM2ODQ3ODFmZDg0ZjI4MWY5MThjYThmZWI5MmIxM2U1ZmU5
|
15
|
+
NGM0NWJmMzVlODkyNGE5MzdmMGE4YjM2ZTQyYjc0OTE2YzdjZWY=
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/todd/Projects/errplane/errplane-ruby
|
3
3
|
specs:
|
4
|
-
errplane (1.0.
|
4
|
+
errplane (1.0.12)
|
5
5
|
json
|
6
6
|
|
7
7
|
GEM
|
@@ -113,6 +113,7 @@ DEPENDENCIES
|
|
113
113
|
fakeweb
|
114
114
|
guard
|
115
115
|
guard-rspec
|
116
|
+
railties (~> 3.1.5)
|
116
117
|
rake
|
117
118
|
rdoc
|
118
119
|
rspec
|
@@ -21,7 +21,7 @@ module Errplane
|
|
21
21
|
e = e.original_exception if e.respond_to?(:original_exception)
|
22
22
|
|
23
23
|
@exception = e.is_a?(String) ? Exception.new(e) : e
|
24
|
-
@backtrace = Errplane::Backtrace.new(@exception.backtrace)
|
24
|
+
@backtrace = Errplane::Backtrace.new(@exception.backtrace)
|
25
25
|
@params = params[:params]
|
26
26
|
@session_data = params[:session_data] || {}
|
27
27
|
@current_user = params[:current_user]
|
@@ -43,7 +43,7 @@ module Errplane
|
|
43
43
|
:framework => Errplane.configuration.framework,
|
44
44
|
:framework_version => Errplane.configuration.framework_version,
|
45
45
|
:message => @exception.message,
|
46
|
-
:backtrace => @backtrace,
|
46
|
+
:backtrace => @backtrace.to_a,
|
47
47
|
:language => "Ruby",
|
48
48
|
:language_version => "#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}",
|
49
49
|
:reporter => reporter,
|
@@ -62,9 +62,9 @@ module Errplane
|
|
62
62
|
|
63
63
|
def dimensions
|
64
64
|
d = {
|
65
|
-
:Class => @exception.class.to_s,
|
66
65
|
:class => @exception.class.to_s,
|
67
66
|
:method => "#{@controller}##{@action}",
|
67
|
+
:filename => File.basename(@backtrace.lines.first.try(:file)),
|
68
68
|
:server => Socket.gethostname,
|
69
69
|
:status => "open"
|
70
70
|
}.merge(@dimensions)
|
@@ -2,19 +2,24 @@ module Errplane
|
|
2
2
|
module Rails
|
3
3
|
module AirTrafficController
|
4
4
|
def errplane_request_data
|
5
|
-
|
5
|
+
unfiltered_params = params.to_hash
|
6
6
|
if respond_to?(:filter_parameters)
|
7
|
-
|
7
|
+
filtered_params = filter_parameters(unfiltered_params)
|
8
|
+
elsif defined? request.filtered_parameters
|
9
|
+
filtered_params = request.filtered_parameters
|
10
|
+
else
|
11
|
+
filtered_params = unfiltered_params.except(:password, :password_confirmation)
|
8
12
|
end
|
13
|
+
|
9
14
|
{
|
10
|
-
:params =>
|
15
|
+
:params => filtered_params,
|
11
16
|
:session_data => errplane_session_data,
|
12
17
|
:controller => params[:controller],
|
13
18
|
:action => params[:action],
|
14
19
|
:request_url => errplane_request_url,
|
15
20
|
:user_agent => request.env["HTTP_USER_AGENT"],
|
16
21
|
:referer => request.referer,
|
17
|
-
:current_user => current_user
|
22
|
+
:current_user => (current_user rescue nil)
|
18
23
|
}
|
19
24
|
end
|
20
25
|
|
data/lib/errplane/version.rb
CHANGED
@@ -7,11 +7,11 @@ describe "exception handling" do
|
|
7
7
|
config.instrumentation_enabled = false
|
8
8
|
end
|
9
9
|
|
10
|
-
FakeWeb.last_request = nil
|
11
|
-
FakeWeb.clean_registry
|
12
|
-
@request_path = "/api/v1/applications/#{Errplane.configuration.application_id}/exceptions/test?api_key=f123-e456-d789c012"
|
13
|
-
@request_url = "http://api.errplane.com#{@request_path}"
|
14
|
-
FakeWeb.register_uri(:post, @request_url, :body => "", :status => ["200", "OK"])
|
10
|
+
# FakeWeb.last_request = nil
|
11
|
+
# FakeWeb.clean_registry
|
12
|
+
# @request_path = "/api/v1/applications/#{Errplane.configuration.application_id}/exceptions/test?api_key=f123-e456-d789c012"
|
13
|
+
# @request_url = "http://api.errplane.com#{@request_path}"
|
14
|
+
# FakeWeb.register_uri(:post, @request_url, :body => "", :status => ["200", "OK"])
|
15
15
|
|
16
16
|
Errplane.queue.clear
|
17
17
|
end
|
@@ -5699,3 +5699,1520 @@ nexceptionspc{"framework_version":"2.3.18","time":1373435871,"language":"Ruby","
|
|
5699
5699
|
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
5700
5700
|
[Errplane] Thread exiting, flushing queue.
|
5701
5701
|
[Errplane] Thread exiting, flushing queue.
|
5702
|
+
[Errplane] Spawning background worker thread 0.
|
5703
|
+
[Errplane] Spawning background worker thread 1.
|
5704
|
+
[Errplane] Spawning background worker thread 2.
|
5705
|
+
|
5706
|
+
|
5707
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 15:57:19) [GET]
|
5708
|
+
|
5709
|
+
|
5710
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 15:57:19) [GET]
|
5711
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
5712
|
+
|
5713
|
+
|
5714
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:57:19) [GET]
|
5715
|
+
|
5716
|
+
ZeroDivisionError (divided by 0):
|
5717
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
5718
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
5719
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
5720
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
5721
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
5722
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
5723
|
+
<internal:prelude>:10:in `synchronize'
|
5724
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
5725
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
5726
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
5727
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
5728
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
5729
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
5730
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
5731
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
5732
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
5733
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
5734
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
5735
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
5736
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
5737
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
5738
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
5739
|
+
|
5740
|
+
|
5741
|
+
|
5742
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:57:19) [GET]
|
5743
|
+
|
5744
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007fe60c052f18>):
|
5745
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:15:in `errplane_request_data'
|
5746
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
5747
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
5748
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
5749
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
5750
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
5751
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
5752
|
+
<internal:prelude>:10:in `synchronize'
|
5753
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
5754
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
5755
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
5756
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
5757
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
5758
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
5759
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
5760
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
5761
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
5762
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
5763
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
5764
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
5765
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
5766
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
5767
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
5768
|
+
|
5769
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"15","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
5770
|
+
|
5771
|
+
|
5772
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 15:57:19) [GET]
|
5773
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
5774
|
+
|
5775
|
+
|
5776
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:57:19) [GET]
|
5777
|
+
|
5778
|
+
ZeroDivisionError (divided by 0):
|
5779
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
5780
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
5781
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
5782
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
5783
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
5784
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
5785
|
+
<internal:prelude>:10:in `synchronize'
|
5786
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
5787
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
5788
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
5789
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
5790
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
5791
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
5792
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
5793
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
5794
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
5795
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
5796
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
5797
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
5798
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
5799
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
5800
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
5801
|
+
|
5802
|
+
|
5803
|
+
|
5804
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:57:19) [GET]
|
5805
|
+
|
5806
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007fe60c2fc868>):
|
5807
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:15:in `errplane_request_data'
|
5808
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
5809
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
5810
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
5811
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
5812
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
5813
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
5814
|
+
<internal:prelude>:10:in `synchronize'
|
5815
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
5816
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
5817
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
5818
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
5819
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
5820
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
5821
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
5822
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
5823
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
5824
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
5825
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
5826
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
5827
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
5828
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
5829
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
5830
|
+
|
5831
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"15","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
5832
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"47","method":"block (4 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"rescue"},{"file":"spec/unit/errplane_spec.rb","number":"46","method":"block (3 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods...
|
5833
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (5 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"rescue_and_reraise"},{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (4 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/ra...
|
5834
|
+
[Errplane] Thread exiting, flushing queue.
|
5835
|
+
[Errplane] Checking background queue on thread 1 (3 active)
|
5836
|
+
[Errplane] Found data in the queue! (exceptions)
|
5837
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
5838
|
+
[Errplane] POSTing data:
|
5839
|
+
[{"n":"exceptions","p":[{"v":1,"c":"{\"time\":1378929439,\"application_name\":\"Application\",\"application_root\":\"/var/www/current\",\"framework\":\"Rails\",\"framework_version\":\"2.3.18\",\"message\":\"wrong\",\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `block (5 levels) in <top (required)>'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `block (4 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `should'\",\"spec/unit/errplane_spec.rb:69 in `block (3 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `block in execute'\",\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `block in run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `block in run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `<main>'\"],\"language\":\"Ruby\",\"language_version\":\"1.9.3-p194\",\"reporter\":{\"name\":\"Errplane\",\"version\":\"1.0.12\",\"url\":\"https://github.com/errplane/errplane-ruby\"},\"custom_data\":{},\"environment_variables\":{\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"TERM_PROGRAM\":\"iTerm.app\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem\",\"TERM\":\"xterm-256color\",\"SHELL\":\"/bin/bash\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/.irbrc\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194\",\"USER\":\"todd\",\"COMMAND_MODE\":\"unix2003\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"rvm_path\":\"/Users/todd/.rvm\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"rvm_sticky_flag\":\"1\",\"rvm_prefix\":\"/Users/todd\",\"PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem/bin:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/bin:/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"_\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin/ruby\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"EDITOR\":\"vim\",\"LANG\":\"en_US.UTF-8\",\"ITERM_PROFILE\":\"Default\",\"BUNDLE_EDITOR\":\"vim\",\"rvm_version\":\"1.21.14 (stable)\",\"SHLVL\":\"3\",\"HOME\":\"/Users/todd\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"rvm_ruby_string\":\"ruby-1.9.3-p194\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"LOGNAME\":\"todd\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/lib -rbundler/setup\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/bin/bundle\",\"RUBY_VERSION\":\"ruby-1.9.3-p194\",\"SECURITYSESSIONID\":\"186a5\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"RAILS_ENV\":\"test\"}}","d":{"class":"ArgumentError","method":"#","filename":"errplane_spec.rb","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open"}}]}]
|
5840
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
5841
|
+
[Errplane] Thread exiting, flushing queue.
|
5842
|
+
[Errplane] Thread exiting, flushing queue.
|
5843
|
+
[Errplane] Spawning background worker thread 0.
|
5844
|
+
[Errplane] Spawning background worker thread 1.
|
5845
|
+
[Errplane] Spawning background worker thread 2.
|
5846
|
+
|
5847
|
+
|
5848
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 15:57:35) [GET]
|
5849
|
+
|
5850
|
+
|
5851
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 15:57:35) [GET]
|
5852
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
5853
|
+
|
5854
|
+
|
5855
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:57:35) [GET]
|
5856
|
+
|
5857
|
+
ZeroDivisionError (divided by 0):
|
5858
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
5859
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
5860
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
5861
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
5862
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
5863
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
5864
|
+
<internal:prelude>:10:in `synchronize'
|
5865
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
5866
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
5867
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
5868
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
5869
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
5870
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
5871
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
5872
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
5873
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
5874
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
5875
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
5876
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
5877
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
5878
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
5879
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
5880
|
+
|
5881
|
+
|
5882
|
+
|
5883
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:57:35) [GET]
|
5884
|
+
|
5885
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007f8e3bde58c0>):
|
5886
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:15:in `errplane_request_data'
|
5887
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
5888
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
5889
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
5890
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
5891
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
5892
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
5893
|
+
<internal:prelude>:10:in `synchronize'
|
5894
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
5895
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
5896
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
5897
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
5898
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
5899
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
5900
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
5901
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
5902
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
5903
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
5904
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
5905
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
5906
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
5907
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
5908
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
5909
|
+
|
5910
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"15","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
5911
|
+
|
5912
|
+
|
5913
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 15:57:35) [GET]
|
5914
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
5915
|
+
|
5916
|
+
|
5917
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:57:35) [GET]
|
5918
|
+
|
5919
|
+
ZeroDivisionError (divided by 0):
|
5920
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
5921
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
5922
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
5923
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
5924
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
5925
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
5926
|
+
<internal:prelude>:10:in `synchronize'
|
5927
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
5928
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
5929
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
5930
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
5931
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
5932
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
5933
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
5934
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
5935
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
5936
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
5937
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
5938
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
5939
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
5940
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
5941
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
5942
|
+
|
5943
|
+
|
5944
|
+
|
5945
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:57:35) [GET]
|
5946
|
+
|
5947
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007f8e3de03800>):
|
5948
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:15:in `errplane_request_data'
|
5949
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
5950
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
5951
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
5952
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
5953
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
5954
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
5955
|
+
<internal:prelude>:10:in `synchronize'
|
5956
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
5957
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
5958
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
5959
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
5960
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
5961
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
5962
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
5963
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
5964
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
5965
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
5966
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
5967
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
5968
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
5969
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
5970
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
5971
|
+
|
5972
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"15","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
5973
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"47","method":"block (4 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"rescue"},{"file":"spec/unit/errplane_spec.rb","number":"46","method":"block (3 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods...
|
5974
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (5 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"rescue_and_reraise"},{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (4 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/ra...
|
5975
|
+
[Errplane] Thread exiting, flushing queue.
|
5976
|
+
[Errplane] Checking background queue on thread 1 (3 active)
|
5977
|
+
[Errplane] Found data in the queue! (exceptions)
|
5978
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
5979
|
+
[Errplane] POSTing data:
|
5980
|
+
[{"n":"exceptions","p":[{"v":1,"c":"{\"time\":1378929455,\"application_name\":\"Application\",\"application_root\":\"/var/www/current\",\"framework\":\"Rails\",\"framework_version\":\"2.3.18\",\"message\":\"wrong\",\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `block (5 levels) in <top (required)>'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `block (4 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `should'\",\"spec/unit/errplane_spec.rb:69 in `block (3 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `block in execute'\",\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `block in run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `block in run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `<main>'\"],\"language\":\"Ruby\",\"language_version\":\"1.9.3-p194\",\"reporter\":{\"name\":\"Errplane\",\"version\":\"1.0.12\",\"url\":\"https://github.com/errplane/errplane-ruby\"},\"custom_data\":{},\"environment_variables\":{\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"TERM_PROGRAM\":\"iTerm.app\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem\",\"TERM\":\"xterm-256color\",\"SHELL\":\"/bin/bash\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/.irbrc\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194\",\"USER\":\"todd\",\"COMMAND_MODE\":\"unix2003\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"rvm_path\":\"/Users/todd/.rvm\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"rvm_sticky_flag\":\"1\",\"rvm_prefix\":\"/Users/todd\",\"PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem/bin:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/bin:/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"_\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin/ruby\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"EDITOR\":\"vim\",\"LANG\":\"en_US.UTF-8\",\"ITERM_PROFILE\":\"Default\",\"BUNDLE_EDITOR\":\"vim\",\"rvm_version\":\"1.21.14 (stable)\",\"SHLVL\":\"3\",\"HOME\":\"/Users/todd\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"rvm_ruby_string\":\"ruby-1.9.3-p194\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"LOGNAME\":\"todd\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/lib -rbundler/setup\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/bin/bundle\",\"RUBY_VERSION\":\"ruby-1.9.3-p194\",\"SECURITYSESSIONID\":\"186a5\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"RAILS_ENV\":\"test\"}}","d":{"class":"ArgumentError","method":"#","filename":"errplane_spec.rb","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open"}}]}]
|
5981
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
5982
|
+
[Errplane] Thread exiting, flushing queue.
|
5983
|
+
[Errplane] Thread exiting, flushing queue.
|
5984
|
+
[Errplane] Spawning background worker thread 0.
|
5985
|
+
[Errplane] Spawning background worker thread 1.
|
5986
|
+
[Errplane] Spawning background worker thread 2.
|
5987
|
+
|
5988
|
+
|
5989
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 15:58:31) [GET]
|
5990
|
+
|
5991
|
+
|
5992
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 15:58:31) [GET]
|
5993
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
5994
|
+
|
5995
|
+
|
5996
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:58:31) [GET]
|
5997
|
+
|
5998
|
+
ZeroDivisionError (divided by 0):
|
5999
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6000
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6001
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6002
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6003
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6004
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6005
|
+
<internal:prelude>:10:in `synchronize'
|
6006
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
6007
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6008
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6009
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6010
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6011
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6012
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6013
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6014
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6015
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6016
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6017
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6018
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6019
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6020
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6021
|
+
|
6022
|
+
|
6023
|
+
|
6024
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:58:31) [GET]
|
6025
|
+
|
6026
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007fcc84a9c470>):
|
6027
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6028
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6029
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
6030
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6031
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6032
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6033
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6034
|
+
<internal:prelude>:10:in `synchronize'
|
6035
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
6036
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6037
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6038
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6039
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6040
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6041
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6042
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6043
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6044
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6045
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6046
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6047
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6048
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6049
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6050
|
+
|
6051
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"17","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
6052
|
+
|
6053
|
+
|
6054
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 15:58:31) [GET]
|
6055
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
6056
|
+
|
6057
|
+
|
6058
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:58:31) [GET]
|
6059
|
+
|
6060
|
+
ZeroDivisionError (divided by 0):
|
6061
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6062
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6063
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6064
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6065
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6066
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6067
|
+
<internal:prelude>:10:in `synchronize'
|
6068
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
6069
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6070
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6071
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6072
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6073
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6074
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6075
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6076
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6077
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6078
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6079
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6080
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6081
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6082
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6083
|
+
|
6084
|
+
|
6085
|
+
|
6086
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:58:31) [GET]
|
6087
|
+
|
6088
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007fcc85041470>):
|
6089
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6090
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6091
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
6092
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6093
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6094
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6095
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6096
|
+
<internal:prelude>:10:in `synchronize'
|
6097
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
6098
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6099
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6100
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6101
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6102
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6103
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6104
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6105
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6106
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6107
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6108
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6109
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6110
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6111
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6112
|
+
|
6113
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"17","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
6114
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"47","method":"block (4 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"rescue"},{"file":"spec/unit/errplane_spec.rb","number":"46","method":"block (3 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods...
|
6115
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (5 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"rescue_and_reraise"},{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (4 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/ra...
|
6116
|
+
[Errplane] Thread exiting, flushing queue.
|
6117
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
6118
|
+
[Errplane] Found data in the queue! (exceptions)
|
6119
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
6120
|
+
[Errplane] POSTing data:
|
6121
|
+
[{"n":"exceptions","p":[{"v":1,"c":"{\"time\":1378929511,\"application_name\":\"Application\",\"application_root\":\"/var/www/current\",\"framework\":\"Rails\",\"framework_version\":\"2.3.18\",\"message\":\"wrong\",\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `block (5 levels) in <top (required)>'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `block (4 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `should'\",\"spec/unit/errplane_spec.rb:69 in `block (3 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `block in execute'\",\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `block in run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `block in run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `<main>'\"],\"language\":\"Ruby\",\"language_version\":\"1.9.3-p194\",\"reporter\":{\"name\":\"Errplane\",\"version\":\"1.0.12\",\"url\":\"https://github.com/errplane/errplane-ruby\"},\"custom_data\":{},\"environment_variables\":{\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"TERM_PROGRAM\":\"iTerm.app\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem\",\"TERM\":\"xterm-256color\",\"SHELL\":\"/bin/bash\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/.irbrc\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194\",\"USER\":\"todd\",\"COMMAND_MODE\":\"unix2003\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"rvm_path\":\"/Users/todd/.rvm\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"rvm_sticky_flag\":\"1\",\"rvm_prefix\":\"/Users/todd\",\"PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem/bin:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/bin:/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"_\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin/ruby\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"EDITOR\":\"vim\",\"LANG\":\"en_US.UTF-8\",\"ITERM_PROFILE\":\"Default\",\"BUNDLE_EDITOR\":\"vim\",\"rvm_version\":\"1.21.14 (stable)\",\"SHLVL\":\"3\",\"HOME\":\"/Users/todd\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"rvm_ruby_string\":\"ruby-1.9.3-p194\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"LOGNAME\":\"todd\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/lib -rbundler/setup\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/bin/bundle\",\"RUBY_VERSION\":\"ruby-1.9.3-p194\",\"SECURITYSESSIONID\":\"186a5\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"RAILS_ENV\":\"test\"}}","d":{"class":"ArgumentError","method":"#","filename":"errplane_spec.rb","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open"}}]}]
|
6122
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
6123
|
+
[Errplane] Thread exiting, flushing queue.
|
6124
|
+
[Errplane] Thread exiting, flushing queue.
|
6125
|
+
[Errplane] Spawning background worker thread 0.
|
6126
|
+
[Errplane] Spawning background worker thread 1.
|
6127
|
+
[Errplane] Spawning background worker thread 2.
|
6128
|
+
|
6129
|
+
|
6130
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 15:58:58) [GET]
|
6131
|
+
|
6132
|
+
|
6133
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 15:58:58) [GET]
|
6134
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
6135
|
+
|
6136
|
+
|
6137
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:58:58) [GET]
|
6138
|
+
|
6139
|
+
ZeroDivisionError (divided by 0):
|
6140
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6141
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6142
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6143
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6144
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6145
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6146
|
+
<internal:prelude>:10:in `synchronize'
|
6147
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
6148
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6149
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6150
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6151
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6152
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6153
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6154
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6155
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6156
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6157
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6158
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6159
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6160
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6161
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6162
|
+
|
6163
|
+
|
6164
|
+
|
6165
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:58:58) [GET]
|
6166
|
+
|
6167
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007fbb10d203e8>):
|
6168
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6169
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6170
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
6171
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6172
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6173
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6174
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6175
|
+
<internal:prelude>:10:in `synchronize'
|
6176
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
6177
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6178
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6179
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6180
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6181
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6182
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6183
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6184
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6185
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6186
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6187
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6188
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6189
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6190
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6191
|
+
|
6192
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"17","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
6193
|
+
|
6194
|
+
|
6195
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 15:58:58) [GET]
|
6196
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
6197
|
+
|
6198
|
+
|
6199
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:58:58) [GET]
|
6200
|
+
|
6201
|
+
ZeroDivisionError (divided by 0):
|
6202
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6203
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6204
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6205
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6206
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6207
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6208
|
+
<internal:prelude>:10:in `synchronize'
|
6209
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
6210
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6211
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6212
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6213
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6214
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6215
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6216
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6217
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6218
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6219
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6220
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6221
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6222
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6223
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6224
|
+
|
6225
|
+
|
6226
|
+
|
6227
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:58:58) [GET]
|
6228
|
+
|
6229
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007fbb134c09e8>):
|
6230
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6231
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6232
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
6233
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6234
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6235
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6236
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6237
|
+
<internal:prelude>:10:in `synchronize'
|
6238
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
6239
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6240
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6241
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6242
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6243
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6244
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6245
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6246
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6247
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6248
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6249
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6250
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6251
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6252
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6253
|
+
|
6254
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"17","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
6255
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"47","method":"block (4 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"rescue"},{"file":"spec/unit/errplane_spec.rb","number":"46","method":"block (3 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods...
|
6256
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (5 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"rescue_and_reraise"},{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (4 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/ra...
|
6257
|
+
[Errplane] Thread exiting, flushing queue.
|
6258
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
6259
|
+
[Errplane] Found data in the queue! (exceptions)
|
6260
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
6261
|
+
[Errplane] POSTing data:
|
6262
|
+
[{"n":"exceptions","p":[{"v":1,"c":"{\"time\":1378929538,\"application_name\":\"Application\",\"application_root\":\"/var/www/current\",\"framework\":\"Rails\",\"framework_version\":\"2.3.18\",\"message\":\"wrong\",\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `block (5 levels) in <top (required)>'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `block (4 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `should'\",\"spec/unit/errplane_spec.rb:69 in `block (3 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `block in execute'\",\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `block in run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `block in run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `<main>'\"],\"language\":\"Ruby\",\"language_version\":\"1.9.3-p194\",\"reporter\":{\"name\":\"Errplane\",\"version\":\"1.0.12\",\"url\":\"https://github.com/errplane/errplane-ruby\"},\"custom_data\":{},\"environment_variables\":{\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"TERM_PROGRAM\":\"iTerm.app\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem\",\"TERM\":\"xterm-256color\",\"SHELL\":\"/bin/bash\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/.irbrc\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194\",\"USER\":\"todd\",\"COMMAND_MODE\":\"unix2003\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"rvm_path\":\"/Users/todd/.rvm\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"rvm_sticky_flag\":\"1\",\"rvm_prefix\":\"/Users/todd\",\"PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem/bin:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/bin:/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"_\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin/ruby\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"EDITOR\":\"vim\",\"LANG\":\"en_US.UTF-8\",\"ITERM_PROFILE\":\"Default\",\"BUNDLE_EDITOR\":\"vim\",\"rvm_version\":\"1.21.14 (stable)\",\"SHLVL\":\"3\",\"HOME\":\"/Users/todd\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"rvm_ruby_string\":\"ruby-1.9.3-p194\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"LOGNAME\":\"todd\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/lib -rbundler/setup\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/bin/bundle\",\"RUBY_VERSION\":\"ruby-1.9.3-p194\",\"SECURITYSESSIONID\":\"186a5\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"RAILS_ENV\":\"test\"}}","d":{"class":"ArgumentError","method":"#","filename":"errplane_spec.rb","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open"}}]}]
|
6263
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
6264
|
+
[Errplane] Thread exiting, flushing queue.
|
6265
|
+
[Errplane] Thread exiting, flushing queue.
|
6266
|
+
[Errplane] Spawning background worker thread 0.
|
6267
|
+
[Errplane] Spawning background worker thread 1.
|
6268
|
+
[Errplane] Spawning background worker thread 2.
|
6269
|
+
|
6270
|
+
|
6271
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 15:59:26) [GET]
|
6272
|
+
|
6273
|
+
|
6274
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 15:59:26) [GET]
|
6275
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
6276
|
+
|
6277
|
+
|
6278
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:59:26) [GET]
|
6279
|
+
|
6280
|
+
ZeroDivisionError (divided by 0):
|
6281
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6282
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6283
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6284
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6285
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6286
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6287
|
+
/spec/integration/exceptions_spec.rb:22
|
6288
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6289
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6290
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6291
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6292
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6293
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6294
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6295
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6296
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6297
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6298
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6299
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6300
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6301
|
+
rspec (1.3.2) bin/spec:5
|
6302
|
+
|
6303
|
+
|
6304
|
+
|
6305
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:59:26) [GET]
|
6306
|
+
|
6307
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x1016542d8>):
|
6308
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6309
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6310
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally'
|
6311
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6312
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6313
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6314
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6315
|
+
/spec/integration/exceptions_spec.rb:22
|
6316
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6317
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6318
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6319
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6320
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6321
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6322
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6323
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6324
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6325
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6326
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6327
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6328
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6329
|
+
rspec (1.3.2) bin/spec:5
|
6330
|
+
|
6331
|
+
[Errplane] Exception: {"controller":null,"custom_data":{},"referer":null,"user_agent":null,"exception":{},"current_user":null,"backtrace":{"lines":[{"number":"17","method":"errplane_request_data","file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb"},{"number":"22","method":"handle_exception","file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb"},{"number":"17","method":"rescue_action_locally","file":"/Users/todd/Projects/e...
|
6332
|
+
|
6333
|
+
|
6334
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 15:59:26) [GET]
|
6335
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
6336
|
+
|
6337
|
+
|
6338
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:59:26) [GET]
|
6339
|
+
|
6340
|
+
ZeroDivisionError (divided by 0):
|
6341
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6342
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6343
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6344
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6345
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6346
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6347
|
+
/spec/integration/exceptions_spec.rb:39
|
6348
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6349
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6350
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6351
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6352
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6353
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6354
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6355
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6356
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6357
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6358
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6359
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6360
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6361
|
+
rspec (1.3.2) bin/spec:5
|
6362
|
+
|
6363
|
+
|
6364
|
+
|
6365
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:59:26) [GET]
|
6366
|
+
|
6367
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x10156b588>):
|
6368
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6369
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6370
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally'
|
6371
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6372
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6373
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6374
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6375
|
+
/spec/integration/exceptions_spec.rb:39
|
6376
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6377
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6378
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6379
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6380
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6381
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6382
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6383
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6384
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6385
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6386
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6387
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6388
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6389
|
+
rspec (1.3.2) bin/spec:5
|
6390
|
+
|
6391
|
+
[Errplane] Exception: {"controller":null,"custom_data":{},"referer":null,"user_agent":null,"exception":{},"current_user":null,"backtrace":{"lines":[{"number":"17","method":"errplane_request_data","file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb"},{"number":"22","method":"handle_exception","file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb"},{"number":"17","method":"rescue_action_locally","file":"/Users/todd/Projects/e...
|
6392
|
+
[Errplane] Exception: {"controller":null,"custom_data":{},"referer":null,"user_agent":null,"exception":{},"current_user":null,"backtrace":{"lines":[{"number":"47","method":null,"file":"spec/unit/errplane_spec.rb"},{"number":"141","method":"call","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"number":"141","method":"rescue","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"number":"46","method":null,"file":"spec/unit/errplane_spec.rb"},{"number":"40","method":"instance...
|
6393
|
+
[Errplane] Exception: {"controller":null,"custom_data":{},"referer":null,"user_agent":null,"exception":{},"current_user":null,"backtrace":{"lines":[{"number":"70","method":null,"file":"spec/unit/errplane_spec.rb"},{"number":"151","method":"call","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"number":"151","method":"rescue_and_reraise","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"number":"70","method":null,"file":"spec/unit/errplane_spec.rb"},{"number":"21","metho...
|
6394
|
+
[Errplane] Thread exiting, flushing queue.
|
6395
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
6396
|
+
[Errplane] Found data in the queue! (exceptions)
|
6397
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
6398
|
+
[Errplane] POSTing data:
|
6399
|
+
[{"n":"exceptions","p":[{"c":"{\"language_version\":\"1.8.7-p358\",\"environment_variables\":{\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/bin/bundle\",\"SECURITYSESSIONID\":\"186a5\",\"RAILS_ENV\":\"test\",\"SHELL\":\"/bin/bash\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02\",\"HOME\":\"/Users/todd\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem:/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global\",\"RUBY_VERSION\":\"ree-1.8.7-2012.02\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem\",\"EDITOR\":\"vim\",\"SHLVL\":\"3\",\"rvm_prefix\":\"/Users/todd\",\"ITERM_PROFILE\":\"Default\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"rvm_sticky_flag\":\"1\",\"LANG\":\"en_US.UTF-8\",\"rvm_version\":\"1.21.14 (stable)\",\"TERM_PROGRAM\":\"iTerm.app\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"TERM\":\"xterm-256color\",\"USER\":\"todd\",\"COMMAND_MODE\":\"unix2003\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"rvm_ruby_string\":\"ree-1.8.7-2012.02\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/.irbrc\",\"rvm_path\":\"/Users/todd/.rvm\",\"PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem/bin:/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/bin:/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"BUNDLE_EDITOR\":\"vim\",\"LOGNAME\":\"todd\",\"_\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/bin/ruby\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/lib -rbundler/setup\"},\"application_name\":\"Application\",\"reporter\":{\"url\":\"https://github.com/errplane/errplane-ruby\",\"version\":\"1.0.12\",\"name\":\"Errplane\"},\"message\":\"wrong\",\"framework\":\"Rails\",\"application_root\":\"/var/www/current\",\"custom_data\":{},\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `to'\",\"spec/unit/errplane_spec.rb:69 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `execute'\",\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `'\"],\"time\":1378929566,\"framework_version\":\"2.3.18\",\"language\":\"Ruby\"}","d":{"class":"ArgumentError","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open","filename":"errplane_spec.rb","method":"#"},"v":1}]}]
|
6400
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
6401
|
+
[Errplane] Thread exiting, flushing queue.
|
6402
|
+
[Errplane] Thread exiting, flushing queue.
|
6403
|
+
[Errplane] Spawning background worker thread 0.
|
6404
|
+
[Errplane] Spawning background worker thread 1.
|
6405
|
+
[Errplane] Spawning background worker thread 2.
|
6406
|
+
|
6407
|
+
|
6408
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 15:59:56) [GET]
|
6409
|
+
|
6410
|
+
|
6411
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 15:59:56) [GET]
|
6412
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
6413
|
+
|
6414
|
+
|
6415
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:59:56) [GET]
|
6416
|
+
|
6417
|
+
ZeroDivisionError (divided by 0):
|
6418
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6419
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6420
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6421
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6422
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6423
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6424
|
+
<internal:prelude>:10:in `synchronize'
|
6425
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
6426
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6427
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6428
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6429
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6430
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6431
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6432
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6433
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6434
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6435
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6436
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6437
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6438
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6439
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6440
|
+
|
6441
|
+
|
6442
|
+
|
6443
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:59:56) [GET]
|
6444
|
+
|
6445
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007ff4441b0d88>):
|
6446
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6447
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6448
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
6449
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6450
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6451
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6452
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6453
|
+
<internal:prelude>:10:in `synchronize'
|
6454
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
6455
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6456
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6457
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6458
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6459
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6460
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6461
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6462
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6463
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6464
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6465
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6466
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6467
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6468
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6469
|
+
|
6470
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"17","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
6471
|
+
|
6472
|
+
|
6473
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 15:59:56) [GET]
|
6474
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
6475
|
+
|
6476
|
+
|
6477
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 15:59:56) [GET]
|
6478
|
+
|
6479
|
+
ZeroDivisionError (divided by 0):
|
6480
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6481
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6482
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6483
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6484
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6485
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6486
|
+
<internal:prelude>:10:in `synchronize'
|
6487
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
6488
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6489
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6490
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6491
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6492
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6493
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6494
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6495
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6496
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6497
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6498
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6499
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6500
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6501
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6502
|
+
|
6503
|
+
|
6504
|
+
|
6505
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 15:59:56) [GET]
|
6506
|
+
|
6507
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x007ff444189558>):
|
6508
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6509
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6510
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
6511
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6512
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6513
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6514
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6515
|
+
<internal:prelude>:10:in `synchronize'
|
6516
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
6517
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6518
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6519
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6520
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6521
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6522
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6523
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6524
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6525
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6526
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6527
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6528
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6529
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6530
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6531
|
+
|
6532
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"17","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
6533
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"47","method":"block (4 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"rescue"},{"file":"spec/unit/errplane_spec.rb","number":"46","method":"block (3 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods...
|
6534
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (5 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"rescue_and_reraise"},{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (4 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/ra...
|
6535
|
+
[Errplane] Thread exiting, flushing queue.
|
6536
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
6537
|
+
[Errplane] Found data in the queue! (exceptions)
|
6538
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
6539
|
+
[Errplane] POSTing data:
|
6540
|
+
[{"n":"exceptions","p":[{"v":1,"c":"{\"time\":1378929596,\"application_name\":\"Application\",\"application_root\":\"/var/www/current\",\"framework\":\"Rails\",\"framework_version\":\"2.3.18\",\"message\":\"wrong\",\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `block (5 levels) in <top (required)>'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `block (4 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `should'\",\"spec/unit/errplane_spec.rb:69 in `block (3 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `block in execute'\",\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `block in run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `block in run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `<main>'\"],\"language\":\"Ruby\",\"language_version\":\"1.9.3-p194\",\"reporter\":{\"name\":\"Errplane\",\"version\":\"1.0.12\",\"url\":\"https://github.com/errplane/errplane-ruby\"},\"custom_data\":{},\"environment_variables\":{\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"TERM_PROGRAM\":\"iTerm.app\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem\",\"TERM\":\"xterm-256color\",\"SHELL\":\"/bin/bash\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/.irbrc\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194\",\"USER\":\"todd\",\"COMMAND_MODE\":\"unix2003\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"rvm_path\":\"/Users/todd/.rvm\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"rvm_sticky_flag\":\"1\",\"rvm_prefix\":\"/Users/todd\",\"PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem/bin:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/bin:/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"_\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin/ruby\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"EDITOR\":\"vim\",\"LANG\":\"en_US.UTF-8\",\"ITERM_PROFILE\":\"Default\",\"BUNDLE_EDITOR\":\"vim\",\"rvm_version\":\"1.21.14 (stable)\",\"SHLVL\":\"3\",\"HOME\":\"/Users/todd\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"rvm_ruby_string\":\"ruby-1.9.3-p194\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"LOGNAME\":\"todd\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/lib -rbundler/setup\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/bin/bundle\",\"RUBY_VERSION\":\"ruby-1.9.3-p194\",\"SECURITYSESSIONID\":\"186a5\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"RAILS_ENV\":\"test\"}}","d":{"class":"ArgumentError","method":"#","filename":"errplane_spec.rb","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open"}}]}]
|
6541
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
6542
|
+
[Errplane] Thread exiting, flushing queue.
|
6543
|
+
[Errplane] Thread exiting, flushing queue.
|
6544
|
+
[Errplane] Spawning background worker thread 0.
|
6545
|
+
[Errplane] Spawning background worker thread 1.
|
6546
|
+
[Errplane] Spawning background worker thread 2.
|
6547
|
+
|
6548
|
+
|
6549
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 16:00:04) [GET]
|
6550
|
+
|
6551
|
+
|
6552
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 16:00:04) [GET]
|
6553
|
+
Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
|
6554
|
+
|
6555
|
+
|
6556
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:00:04) [GET]
|
6557
|
+
|
6558
|
+
ZeroDivisionError (divided by 0):
|
6559
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6560
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6561
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6562
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6563
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6564
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6565
|
+
/spec/integration/exceptions_spec.rb:22
|
6566
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6567
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6568
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6569
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6570
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6571
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6572
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6573
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6574
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6575
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6576
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6577
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6578
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6579
|
+
rspec (1.3.2) bin/spec:5
|
6580
|
+
|
6581
|
+
|
6582
|
+
|
6583
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 16:00:04) [GET]
|
6584
|
+
|
6585
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x10e08c500>):
|
6586
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6587
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6588
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally'
|
6589
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6590
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6591
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6592
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6593
|
+
/spec/integration/exceptions_spec.rb:22
|
6594
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6595
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6596
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6597
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6598
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6599
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6600
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6601
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6602
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6603
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6604
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6605
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6606
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6607
|
+
rspec (1.3.2) bin/spec:5
|
6608
|
+
|
6609
|
+
[Errplane] Exception: {"referer":null,"user_agent":null,"exception":{},"action":null,"request_url":null,"params":null,"session_data":{},"current_user":null,"dimensions":{},"custom_data":{},"backtrace":{"lines":[{"number":"17","method":"errplane_request_data","file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb"},{"number":"22","method":"handle_exception","file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb"},{"number":"17",...
|
6610
|
+
|
6611
|
+
|
6612
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 16:00:04) [GET]
|
6613
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
6614
|
+
|
6615
|
+
|
6616
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:00:04) [GET]
|
6617
|
+
|
6618
|
+
ZeroDivisionError (divided by 0):
|
6619
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6620
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6621
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6622
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6623
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6624
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6625
|
+
/spec/integration/exceptions_spec.rb:39
|
6626
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6627
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6628
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6629
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6630
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6631
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6632
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6633
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6634
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6635
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6636
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6637
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6638
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6639
|
+
rspec (1.3.2) bin/spec:5
|
6640
|
+
|
6641
|
+
|
6642
|
+
|
6643
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 16:00:04) [GET]
|
6644
|
+
|
6645
|
+
NameError (undefined local variable or method `filtered_parameters' for #<WidgetsController:0x10dfa3580>):
|
6646
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:17:in `errplane_request_data'
|
6647
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6648
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally'
|
6649
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6650
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6651
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6652
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6653
|
+
/spec/integration/exceptions_spec.rb:39
|
6654
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6655
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6656
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6657
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6658
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6659
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6660
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6661
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6662
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6663
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6664
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6665
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6666
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6667
|
+
rspec (1.3.2) bin/spec:5
|
6668
|
+
|
6669
|
+
[Errplane] Exception: {"referer":null,"user_agent":null,"exception":{},"action":null,"request_url":null,"params":null,"session_data":{},"current_user":null,"dimensions":{},"custom_data":{},"backtrace":{"lines":[{"number":"17","method":"errplane_request_data","file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb"},{"number":"22","method":"handle_exception","file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb"},{"number":"17",...
|
6670
|
+
[Errplane] Exception: {"referer":null,"user_agent":null,"exception":{},"action":null,"request_url":null,"params":null,"session_data":{},"current_user":null,"dimensions":{},"custom_data":{},"backtrace":{"lines":[{"number":"47","method":null,"file":"spec/unit/errplane_spec.rb"},{"number":"141","method":"call","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"number":"141","method":"rescue","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"number":"46","method":null,"file":...
|
6671
|
+
[Errplane] Exception: {"referer":null,"user_agent":null,"exception":{},"action":null,"request_url":null,"params":null,"session_data":{},"current_user":null,"dimensions":{},"custom_data":{},"backtrace":{"lines":[{"number":"70","method":null,"file":"spec/unit/errplane_spec.rb"},{"number":"151","method":"call","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"number":"151","method":"rescue_and_reraise","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"number":"70","method":...
|
6672
|
+
[Errplane] Thread exiting, flushing queue.
|
6673
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
6674
|
+
[Errplane] Found data in the queue! (exceptions)
|
6675
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
6676
|
+
[Errplane] POSTing data:
|
6677
|
+
[{"n":"exceptions","p":[{"c":"{\"language_version\":\"1.8.7-p358\",\"environment_variables\":{\"COMMAND_MODE\":\"unix2003\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"rvm_prefix\":\"/Users/todd\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"RAILS_ENV\":\"test\",\"TERM\":\"xterm-256color\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"HOME\":\"/Users/todd\",\"LOGNAME\":\"todd\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/bin/bundle\",\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/.irbrc\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"ITERM_PROFILE\":\"Default\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/lib -rbundler/setup\",\"EDITOR\":\"vim\",\"TERM_PROGRAM\":\"iTerm.app\",\"rvm_sticky_flag\":\"1\",\"BUNDLE_EDITOR\":\"vim\",\"SHELL\":\"/bin/bash\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem:/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global\",\"SECURITYSESSIONID\":\"186a5\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"_\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/bin/ruby\",\"SHLVL\":\"3\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem\",\"USER\":\"todd\",\"rvm_path\":\"/Users/todd/.rvm\",\"PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem/bin:/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/bin:/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"rvm_version\":\"1.21.14 (stable)\",\"RUBY_VERSION\":\"ree-1.8.7-2012.02\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"LANG\":\"en_US.UTF-8\",\"rvm_ruby_string\":\"ree-1.8.7-2012.02\"},\"application_name\":\"Application\",\"reporter\":{\"url\":\"https://github.com/errplane/errplane-ruby\",\"version\":\"1.0.12\",\"name\":\"Errplane\"},\"message\":\"wrong\",\"framework\":\"Rails\",\"application_root\":\"/var/www/current\",\"custom_data\":{},\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `to'\",\"spec/unit/errplane_spec.rb:69 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `execute'\",\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `'\"],\"time\":1378929604,\"framework_version\":\"2.3.18\",\"language\":\"Ruby\"}","d":{"class":"ArgumentError","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open","filename":"errplane_spec.rb","method":"#"},"v":1}]}]
|
6678
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
6679
|
+
[Errplane] Thread exiting, flushing queue.
|
6680
|
+
[Errplane] Thread exiting, flushing queue.
|
6681
|
+
[Errplane] Spawning background worker thread 0.
|
6682
|
+
[Errplane] Spawning background worker thread 1.
|
6683
|
+
[Errplane] Spawning background worker thread 2.
|
6684
|
+
|
6685
|
+
|
6686
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 16:00:32) [GET]
|
6687
|
+
|
6688
|
+
|
6689
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 16:00:32) [GET]
|
6690
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
6691
|
+
|
6692
|
+
|
6693
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:00:32) [GET]
|
6694
|
+
|
6695
|
+
ZeroDivisionError (divided by 0):
|
6696
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6697
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6698
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6699
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6700
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6701
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6702
|
+
<internal:prelude>:10:in `synchronize'
|
6703
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
6704
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6705
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6706
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6707
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6708
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6709
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6710
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6711
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6712
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6713
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6714
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6715
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6716
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6717
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6718
|
+
|
6719
|
+
|
6720
|
+
|
6721
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 16:00:32) [GET]
|
6722
|
+
|
6723
|
+
NameError (undefined local variable or method `current_user' for #<WidgetsController:0x007fcaa51649b0>):
|
6724
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:22:in `errplane_request_data'
|
6725
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6726
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
6727
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6728
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6729
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6730
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6731
|
+
<internal:prelude>:10:in `synchronize'
|
6732
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
6733
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6734
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6735
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6736
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6737
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6738
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6739
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6740
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6741
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6742
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6743
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6744
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6745
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6746
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6747
|
+
|
6748
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"22","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
6749
|
+
|
6750
|
+
|
6751
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 16:00:32) [GET]
|
6752
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
6753
|
+
|
6754
|
+
|
6755
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:00:32) [GET]
|
6756
|
+
|
6757
|
+
ZeroDivisionError (divided by 0):
|
6758
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6759
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6760
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6761
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6762
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6763
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6764
|
+
<internal:prelude>:10:in `synchronize'
|
6765
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
6766
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6767
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6768
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6769
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6770
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6771
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6772
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6773
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6774
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6775
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6776
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6777
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6778
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6779
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6780
|
+
|
6781
|
+
|
6782
|
+
|
6783
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 16:00:32) [GET]
|
6784
|
+
|
6785
|
+
NameError (undefined local variable or method `current_user' for #<WidgetsController:0x007fcaa65f9ba0>):
|
6786
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:22:in `errplane_request_data'
|
6787
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6788
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally_with_errplane'
|
6789
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6790
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6791
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6792
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6793
|
+
<internal:prelude>:10:in `synchronize'
|
6794
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
6795
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6796
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6797
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6798
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6799
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6800
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6801
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6802
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6803
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6804
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6805
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6806
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6807
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6808
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6809
|
+
|
6810
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb","number":"22","method":"errplane_request_data"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"22","method":"handle_exception"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb","number":"17","method":"rescue_action_locally_w...
|
6811
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"47","method":"block (4 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"rescue"},{"file":"spec/unit/errplane_spec.rb","number":"46","method":"block (3 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods...
|
6812
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (5 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"rescue_and_reraise"},{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (4 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/ra...
|
6813
|
+
[Errplane] Thread exiting, flushing queue.
|
6814
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
6815
|
+
[Errplane] Found data in the queue! (exceptions)
|
6816
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
6817
|
+
[Errplane] POSTing data:
|
6818
|
+
[{"n":"exceptions","p":[{"v":1,"c":"{\"time\":1378929632,\"application_name\":\"Application\",\"application_root\":\"/var/www/current\",\"framework\":\"Rails\",\"framework_version\":\"2.3.18\",\"message\":\"wrong\",\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `block (5 levels) in <top (required)>'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `block (4 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `should'\",\"spec/unit/errplane_spec.rb:69 in `block (3 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `block in execute'\",\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `block in run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `block in run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `<main>'\"],\"language\":\"Ruby\",\"language_version\":\"1.9.3-p194\",\"reporter\":{\"name\":\"Errplane\",\"version\":\"1.0.12\",\"url\":\"https://github.com/errplane/errplane-ruby\"},\"custom_data\":{},\"environment_variables\":{\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"TERM_PROGRAM\":\"iTerm.app\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem\",\"TERM\":\"xterm-256color\",\"SHELL\":\"/bin/bash\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/.irbrc\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194\",\"USER\":\"todd\",\"COMMAND_MODE\":\"unix2003\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"rvm_path\":\"/Users/todd/.rvm\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"rvm_sticky_flag\":\"1\",\"rvm_prefix\":\"/Users/todd\",\"PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem/bin:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/bin:/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"_\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin/ruby\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"EDITOR\":\"vim\",\"LANG\":\"en_US.UTF-8\",\"ITERM_PROFILE\":\"Default\",\"BUNDLE_EDITOR\":\"vim\",\"rvm_version\":\"1.21.14 (stable)\",\"SHLVL\":\"3\",\"HOME\":\"/Users/todd\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"rvm_ruby_string\":\"ruby-1.9.3-p194\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"LOGNAME\":\"todd\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/lib -rbundler/setup\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/bin/bundle\",\"RUBY_VERSION\":\"ruby-1.9.3-p194\",\"SECURITYSESSIONID\":\"186a5\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"RAILS_ENV\":\"test\"}}","d":{"class":"ArgumentError","method":"#","filename":"errplane_spec.rb","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open"}}]}]
|
6819
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
6820
|
+
[Errplane] Thread exiting, flushing queue.
|
6821
|
+
[Errplane] Thread exiting, flushing queue.
|
6822
|
+
[Errplane] Spawning background worker thread 0.
|
6823
|
+
[Errplane] Spawning background worker thread 1.
|
6824
|
+
[Errplane] Spawning background worker thread 2.
|
6825
|
+
|
6826
|
+
|
6827
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 16:00:40) [GET]
|
6828
|
+
|
6829
|
+
|
6830
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 16:00:40) [GET]
|
6831
|
+
Completed in 1ms (View: 1 | 200 OK [http://test.host/widgets]
|
6832
|
+
|
6833
|
+
|
6834
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:00:40) [GET]
|
6835
|
+
|
6836
|
+
ZeroDivisionError (divided by 0):
|
6837
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6838
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6839
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6840
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6841
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6842
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6843
|
+
/spec/integration/exceptions_spec.rb:22
|
6844
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6845
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6846
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6847
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6848
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6849
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6850
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6851
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6852
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6853
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6854
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6855
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6856
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6857
|
+
rspec (1.3.2) bin/spec:5
|
6858
|
+
|
6859
|
+
|
6860
|
+
|
6861
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 16:00:40) [GET]
|
6862
|
+
|
6863
|
+
NameError (undefined local variable or method `current_user' for #<WidgetsController:0x10372e558>):
|
6864
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:22:in `errplane_request_data'
|
6865
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6866
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally'
|
6867
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6868
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6869
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6870
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6871
|
+
/spec/integration/exceptions_spec.rb:22
|
6872
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6873
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6874
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6875
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6876
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6877
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6878
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6879
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6880
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6881
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6882
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6883
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6884
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6885
|
+
rspec (1.3.2) bin/spec:5
|
6886
|
+
|
6887
|
+
[Errplane] Exception: {"exception":{},"environment_variables":{"LOGNAME":"todd","rvm_ruby_string":"ree-1.8.7-2012.02","SHLVL":"3","rvm_version":"1.21.14 (stable)","Apple_Ubiquity_Message":"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message","rvm_path":"/Users/todd/.rvm","TMPDIR":"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/","RUBYOPT":"-I/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/lib -rbundler/setup","BUNDLE_EDITOR":"vim","PWD":"/Users/todd/Projects/errplane/errplane-ruby","PATH":"/Users/todd/.rvm/gems/ree-1.8....
|
6888
|
+
|
6889
|
+
|
6890
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 16:00:40) [GET]
|
6891
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
6892
|
+
|
6893
|
+
|
6894
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:00:40) [GET]
|
6895
|
+
|
6896
|
+
ZeroDivisionError (divided by 0):
|
6897
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6898
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6899
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6900
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6901
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6902
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6903
|
+
/spec/integration/exceptions_spec.rb:39
|
6904
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6905
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6906
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6907
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6908
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6909
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6910
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6911
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6912
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6913
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6914
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6915
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6916
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6917
|
+
rspec (1.3.2) bin/spec:5
|
6918
|
+
|
6919
|
+
|
6920
|
+
|
6921
|
+
Processing ApplicationController#new (for 127.0.0.1 at 2013-09-11 16:00:40) [GET]
|
6922
|
+
|
6923
|
+
NameError (undefined local variable or method `current_user' for #<WidgetsController:0x103644868>):
|
6924
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/air_traffic_controller.rb:22:in `errplane_request_data'
|
6925
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:22:in `handle_exception'
|
6926
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/middleware/hijack_rescue_action_everywhere.rb:17:in `rescue_action_locally'
|
6927
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6928
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
6929
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
6930
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
6931
|
+
/spec/integration/exceptions_spec.rb:39
|
6932
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6933
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
6934
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
6935
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6936
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
6937
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6938
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6939
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6940
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
6941
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6942
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6943
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6944
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6945
|
+
rspec (1.3.2) bin/spec:5
|
6946
|
+
|
6947
|
+
[Errplane] Exception: {"exception":{},"environment_variables":{"LOGNAME":"todd","rvm_ruby_string":"ree-1.8.7-2012.02","SHLVL":"3","rvm_version":"1.21.14 (stable)","Apple_Ubiquity_Message":"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message","rvm_path":"/Users/todd/.rvm","TMPDIR":"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/","RUBYOPT":"-I/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/lib -rbundler/setup","BUNDLE_EDITOR":"vim","PWD":"/Users/todd/Projects/errplane/errplane-ruby","PATH":"/Users/todd/.rvm/gems/ree-1.8....
|
6948
|
+
[Errplane] Exception: {"exception":{},"environment_variables":{"LOGNAME":"todd","rvm_ruby_string":"ree-1.8.7-2012.02","SHLVL":"3","rvm_version":"1.21.14 (stable)","Apple_Ubiquity_Message":"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message","rvm_path":"/Users/todd/.rvm","TMPDIR":"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/","RUBYOPT":"-I/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/lib -rbundler/setup","BUNDLE_EDITOR":"vim","PWD":"/Users/todd/Projects/errplane/errplane-ruby","PATH":"/Users/todd/.rvm/gems/ree-1.8....
|
6949
|
+
[Errplane] Exception: {"exception":{},"environment_variables":{"LOGNAME":"todd","rvm_ruby_string":"ree-1.8.7-2012.02","SHLVL":"3","rvm_version":"1.21.14 (stable)","Apple_Ubiquity_Message":"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message","rvm_path":"/Users/todd/.rvm","TMPDIR":"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/","RUBYOPT":"-I/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/lib -rbundler/setup","BUNDLE_EDITOR":"vim","PWD":"/Users/todd/Projects/errplane/errplane-ruby","PATH":"/Users/todd/.rvm/gems/ree-1.8....
|
6950
|
+
[Errplane] Thread exiting, flushing queue.
|
6951
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
6952
|
+
[Errplane] Found data in the queue! (exceptions)
|
6953
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
6954
|
+
[Errplane] POSTing data:
|
6955
|
+
[{"n":"exceptions","p":[{"c":"{\"language_version\":\"1.8.7-p358\",\"environment_variables\":{\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"rvm_path\":\"/Users/todd/.rvm\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"rvm_version\":\"1.21.14 (stable)\",\"SHLVL\":\"3\",\"rvm_ruby_string\":\"ree-1.8.7-2012.02\",\"LOGNAME\":\"todd\",\"TERM\":\"xterm-256color\",\"USER\":\"todd\",\"PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem/bin:/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/bin:/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"BUNDLE_EDITOR\":\"vim\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/lib -rbundler/setup\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"HOME\":\"/Users/todd\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem:/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/bin/bundle\",\"RUBY_VERSION\":\"ree-1.8.7-2012.02\",\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"SHELL\":\"/bin/bash\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/.irbrc\",\"COMMAND_MODE\":\"unix2003\",\"_\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/bin/ruby\",\"ITERM_PROFILE\":\"Default\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"rvm_prefix\":\"/Users/todd\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem\",\"EDITOR\":\"vim\",\"RAILS_ENV\":\"test\",\"LANG\":\"en_US.UTF-8\",\"rvm_delete_flag\":\"0\",\"SECURITYSESSIONID\":\"186a5\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"rvm_sticky_flag\":\"1\",\"TERM_PROGRAM\":\"iTerm.app\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\"},\"application_name\":\"Application\",\"reporter\":{\"url\":\"https://github.com/errplane/errplane-ruby\",\"version\":\"1.0.12\",\"name\":\"Errplane\"},\"message\":\"wrong\",\"framework\":\"Rails\",\"application_root\":\"/var/www/current\",\"custom_data\":{},\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `to'\",\"spec/unit/errplane_spec.rb:69 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `execute'\",\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `'\"],\"time\":1378929640,\"framework_version\":\"2.3.18\",\"language\":\"Ruby\"}","d":{"class":"ArgumentError","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open","filename":"errplane_spec.rb","method":"#"},"v":1}]}]
|
6956
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
6957
|
+
[Errplane] Thread exiting, flushing queue.
|
6958
|
+
[Errplane] Thread exiting, flushing queue.
|
6959
|
+
[Errplane] Spawning background worker thread 0.
|
6960
|
+
[Errplane] Spawning background worker thread 1.
|
6961
|
+
[Errplane] Spawning background worker thread 2.
|
6962
|
+
|
6963
|
+
|
6964
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 16:01:41) [GET]
|
6965
|
+
|
6966
|
+
|
6967
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 16:01:41) [GET]
|
6968
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
6969
|
+
|
6970
|
+
|
6971
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:01:41) [GET]
|
6972
|
+
|
6973
|
+
ZeroDivisionError (divided by 0):
|
6974
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
6975
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
6976
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
6977
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
6978
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
6979
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
6980
|
+
<internal:prelude>:10:in `synchronize'
|
6981
|
+
spec/integration/exceptions_spec.rb:22:in `block (3 levels) in <top (required)>'
|
6982
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
6983
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
6984
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
6985
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
6986
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
6987
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
6988
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
6989
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
6990
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
6991
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
6992
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
6993
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
6994
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
6995
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
6996
|
+
|
6997
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"[APP_ROOT]/app/controllers/widgets_controller.rb","number":"3","method":"/"},{"file":"[APP_ROOT]/app/controllers/widgets_controller.rb","number":"3","method":"new"},{"file":"[GEM_ROOT]/gems/actionpack-2.3.18/lib/action_controller/base.rb","number":"1333","method":"perform_action"},{"file":"[GEM_ROOT]/gems/actionpack-2.3.18/lib/action_controller/filters.rb","number":"617","method":"call_filters"},{"file":"[GEM_ROOT]/gems/actionpack-2.3.18/lib/action_controller/fi...
|
6998
|
+
Rendered rescues/_trace (11.0ms)
|
6999
|
+
Rendered rescues/_request_and_response (3.9ms)
|
7000
|
+
Rendering rescues/layout (internal_server_error)
|
7001
|
+
|
7002
|
+
|
7003
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 16:01:41) [GET]
|
7004
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
7005
|
+
|
7006
|
+
|
7007
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:01:41) [GET]
|
7008
|
+
|
7009
|
+
ZeroDivisionError (divided by 0):
|
7010
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
7011
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
7012
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `block in perform_action_with_instrumentation'
|
7013
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action_with_instrumentation'
|
7014
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:13:in `_call'
|
7015
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rack.rb:8:in `call'
|
7016
|
+
<internal:prelude>:10:in `synchronize'
|
7017
|
+
spec/integration/exceptions_spec.rb:39:in `block (3 levels) in <top (required)>'
|
7018
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
7019
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
|
7020
|
+
/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
|
7021
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
7022
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
|
7023
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
7024
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
7025
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
7026
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
|
7027
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
7028
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
7029
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
7030
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
7031
|
+
rspec (1.3.2) bin/spec:5:in `<main>'
|
7032
|
+
|
7033
|
+
Rendered rescues/_trace (19.7ms)
|
7034
|
+
Rendered rescues/_request_and_response (0.3ms)
|
7035
|
+
Rendering rescues/layout (internal_server_error)
|
7036
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"47","method":"block (4 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"141","method":"rescue"},{"file":"spec/unit/errplane_spec.rb","number":"46","method":"block (3 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods...
|
7037
|
+
[Errplane] Exception: {"exception":{},"backtrace":{"lines":[{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (5 levels) in <top (required)>"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"call"},{"file":"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb","number":"151","method":"rescue_and_reraise"},{"file":"spec/unit/errplane_spec.rb","number":"70","method":"block (4 levels) in <top (required)>"},{"file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/ra...
|
7038
|
+
[Errplane] Thread exiting, flushing queue.
|
7039
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
7040
|
+
[Errplane] Found data in the queue! (exceptions)
|
7041
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
7042
|
+
[Errplane] POSTing data:
|
7043
|
+
[{"n":"exceptions","p":[{"v":1,"c":"{\"time\":1378929701,\"application_name\":\"Application\",\"application_root\":\"/var/www/current\",\"framework\":\"Rails\",\"framework_version\":\"2.3.18\",\"message\":\"wrong\",\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `block (5 levels) in <top (required)>'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `block (4 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `should'\",\"spec/unit/errplane_spec.rb:69 in `block (3 levels) in <top (required)>'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `block in execute'\",\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `block in run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `block in run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `<main>'\"],\"language\":\"Ruby\",\"language_version\":\"1.9.3-p194\",\"reporter\":{\"name\":\"Errplane\",\"version\":\"1.0.12\",\"url\":\"https://github.com/errplane/errplane-ruby\"},\"custom_data\":{},\"environment_variables\":{\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"TERM_PROGRAM\":\"iTerm.app\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem\",\"TERM\":\"xterm-256color\",\"SHELL\":\"/bin/bash\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/.irbrc\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194\",\"USER\":\"todd\",\"COMMAND_MODE\":\"unix2003\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"rvm_path\":\"/Users/todd/.rvm\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"rvm_sticky_flag\":\"1\",\"rvm_prefix\":\"/Users/todd\",\"PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem/bin:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/bin:/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"_\":\"/Users/todd/.rvm/rubies/ruby-1.9.3-p194/bin/ruby\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"EDITOR\":\"vim\",\"LANG\":\"en_US.UTF-8\",\"ITERM_PROFILE\":\"Default\",\"BUNDLE_EDITOR\":\"vim\",\"rvm_version\":\"1.21.14 (stable)\",\"SHLVL\":\"3\",\"HOME\":\"/Users/todd\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"rvm_ruby_string\":\"ruby-1.9.3-p194\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"LOGNAME\":\"todd\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@errplane_gem:/Users/todd/.rvm/gems/ruby-1.9.3-p194@global\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/lib -rbundler/setup\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.3/bin/bundle\",\"RUBY_VERSION\":\"ruby-1.9.3-p194\",\"SECURITYSESSIONID\":\"186a5\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"RAILS_ENV\":\"test\"}}","d":{"class":"ArgumentError","method":"#","filename":"errplane_spec.rb","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open"}}]}]
|
7044
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
7045
|
+
[Errplane] Thread exiting, flushing queue.
|
7046
|
+
[Errplane] Thread exiting, flushing queue.
|
7047
|
+
[Errplane] Spawning background worker thread 0.
|
7048
|
+
[Errplane] Spawning background worker thread 1.
|
7049
|
+
[Errplane] Spawning background worker thread 2.
|
7050
|
+
|
7051
|
+
|
7052
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 16:01:49) [GET]
|
7053
|
+
|
7054
|
+
|
7055
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 16:01:49) [GET]
|
7056
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
7057
|
+
|
7058
|
+
|
7059
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:01:49) [GET]
|
7060
|
+
|
7061
|
+
ZeroDivisionError (divided by 0):
|
7062
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
7063
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
7064
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
7065
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
7066
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
7067
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
7068
|
+
/spec/integration/exceptions_spec.rb:22
|
7069
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
7070
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
7071
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
7072
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
7073
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
7074
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
7075
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
7076
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
7077
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
7078
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
7079
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
7080
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
7081
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
7082
|
+
rspec (1.3.2) bin/spec:5
|
7083
|
+
|
7084
|
+
[Errplane] Exception: {"referer":null,"backtrace":{"lines":[{"method":"/","number":"3","file":"[APP_ROOT]/app/controllers/widgets_controller.rb"},{"method":"new","number":"3","file":"[APP_ROOT]/app/controllers/widgets_controller.rb"},{"method":"send","number":"1333","file":"[GEM_ROOT]/gems/actionpack-2.3.18/lib/action_controller/base.rb"},{"method":"perform_action_without_filters","number":"1333","file":"[GEM_ROOT]/gems/actionpack-2.3.18/lib/action_controller/base.rb"},{"method":"call_filters","number":"617","file":"[GEM_ROOT]/ge...
|
7085
|
+
Rendered rescues/_trace (22.7ms)
|
7086
|
+
Rendered rescues/_request_and_response (2.6ms)
|
7087
|
+
Rendering rescues/layout (internal_server_error)
|
7088
|
+
|
7089
|
+
|
7090
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 16:01:49) [GET]
|
7091
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
7092
|
+
|
7093
|
+
|
7094
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:01:49) [GET]
|
7095
|
+
|
7096
|
+
ZeroDivisionError (divided by 0):
|
7097
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
7098
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
7099
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
7100
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
7101
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
7102
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
7103
|
+
/spec/integration/exceptions_spec.rb:39
|
7104
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
7105
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
7106
|
+
/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
7107
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
7108
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
7109
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
7110
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
7111
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
7112
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
7113
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
7114
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
7115
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
7116
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
7117
|
+
rspec (1.3.2) bin/spec:5
|
7118
|
+
|
7119
|
+
Rendered rescues/_trace (22.1ms)
|
7120
|
+
Rendered rescues/_request_and_response (0.2ms)
|
7121
|
+
Rendering rescues/layout (internal_server_error)
|
7122
|
+
[Errplane] Exception: {"referer":null,"backtrace":{"lines":[{"method":null,"number":"47","file":"spec/unit/errplane_spec.rb"},{"method":"call","number":"141","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"method":"rescue","number":"141","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"method":null,"number":"46","file":"spec/unit/errplane_spec.rb"},{"method":"instance_eval","number":"40","file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb"},{"metho...
|
7123
|
+
[Errplane] Exception: {"referer":null,"backtrace":{"lines":[{"method":null,"number":"70","file":"spec/unit/errplane_spec.rb"},{"method":"call","number":"151","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"method":"rescue_and_reraise","number":"151","file":"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb"},{"method":null,"number":"70","file":"spec/unit/errplane_spec.rb"},{"method":"call","number":"21","file":"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb"},{"m...
|
7124
|
+
[Errplane] Thread exiting, flushing queue.
|
7125
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
7126
|
+
[Errplane] Found data in the queue! (exceptions)
|
7127
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
7128
|
+
[Errplane] POSTing data:
|
7129
|
+
[{"n":"exceptions","p":[{"c":"{\"language_version\":\"1.8.7-p358\",\"environment_variables\":{\"COMMAND_MODE\":\"unix2003\",\"HOME\":\"/Users/todd\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem:/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global\",\"TERM\":\"xterm-256color\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"rvm_prefix\":\"/Users/todd\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"rvm_version\":\"1.21.14 (stable)\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"RAILS_ENV\":\"test\",\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem\",\"rvm_sticky_flag\":\"1\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"_\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/bin/ruby\",\"ITERM_PROFILE\":\"Default\",\"SHLVL\":\"3\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/bin/bundle\",\"USER\":\"todd\",\"BUNDLE_EDITOR\":\"vim\",\"TERM_PROGRAM\":\"iTerm.app\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/.irbrc\",\"EDITOR\":\"vim\",\"LOGNAME\":\"todd\",\"SECURITYSESSIONID\":\"186a5\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"PATH\":\"/Users/todd/.rvm/gems/ree-1.8.7-2012.02@errplane_gem/bin:/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/bin:/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"RUBY_VERSION\":\"ree-1.8.7-2012.02\",\"SHELL\":\"/bin/bash\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02\",\"rvm_path\":\"/Users/todd/.rvm\",\"rvm_delete_flag\":\"0\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ree-1.8.7-2012.02@global/gems/bundler-1.1.1/lib -rbundler/setup\",\"LANG\":\"en_US.UTF-8\",\"rvm_ruby_string\":\"ree-1.8.7-2012.02\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\"},\"application_name\":\"Application\",\"reporter\":{\"url\":\"https://github.com/errplane/errplane-ruby\",\"version\":\"1.0.12\",\"name\":\"Errplane\"},\"message\":\"wrong\",\"framework\":\"Rails\",\"application_root\":\"/var/www/current\",\"custom_data\":{},\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `to'\",\"spec/unit/errplane_spec.rb:69 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `execute'\",\"/Users/todd/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/timeout.rb:53 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `'\"],\"time\":1378929709,\"framework_version\":\"2.3.18\",\"language\":\"Ruby\"}","d":{"class":"ArgumentError","server":"pivotal-guest-5-82.ny.pivotallabs.com","status":"open","filename":"errplane_spec.rb","method":"#"},"v":1}]}]
|
7130
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
7131
|
+
[Errplane] Thread exiting, flushing queue.
|
7132
|
+
[Errplane] Thread exiting, flushing queue.
|
7133
|
+
[Errplane] Spawning background worker thread 0.
|
7134
|
+
[Errplane] Spawning background worker thread 1.
|
7135
|
+
[Errplane] Spawning background worker thread 2.
|
7136
|
+
|
7137
|
+
|
7138
|
+
Processing WidgetsController#new (for 0.0.0.0 at 2013-09-11 16:02:38) [GET]
|
7139
|
+
|
7140
|
+
|
7141
|
+
Processing WidgetsController#index (for 0.0.0.0 at 2013-09-11 16:02:38) [GET]
|
7142
|
+
Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
|
7143
|
+
|
7144
|
+
|
7145
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:02:38) [GET]
|
7146
|
+
|
7147
|
+
ZeroDivisionError (divided by 0):
|
7148
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
7149
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
7150
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
7151
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
7152
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
7153
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
7154
|
+
/spec/integration/exceptions_spec.rb:22
|
7155
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
7156
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
7157
|
+
/Users/todd/.rvm/rubies/ruby-1.8.7-p357/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
7158
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
7159
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
7160
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
7161
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
7162
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
7163
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
7164
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
7165
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
7166
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
7167
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
7168
|
+
rspec (1.3.2) bin/spec:5
|
7169
|
+
|
7170
|
+
[Errplane] Exception: {"exception":{},"environment_variables":{"SECURITYSESSIONID":"186a5","_":"/Users/todd/.rvm/rubies/ruby-1.8.7-p357/bin/ruby","rvm_path":"/Users/todd/.rvm","TERM":"xterm-256color","EC2_PRIVATE_KEY":"/Users/todd/.ec2/pk-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem","LOGNAME":"todd","EDITOR":"vim","__CF_USER_TEXT_ENCODING":"0x1F5:0:0","GEM_PATH":"/Users/todd/.rvm/gems/ruby-1.8.7-p357@errplane_gem:/Users/todd/.rvm/gems/ruby-1.8.7-p357@global","ITERM_SESSION_ID":"w0t2p0","ITERM_PROFILE":"Default","IRBRC":"/Users/todd/.rvm...
|
7171
|
+
Rendered rescues/_trace (51.0ms)
|
7172
|
+
Rendered rescues/_request_and_response (1.2ms)
|
7173
|
+
Rendering rescues/layout (internal_server_error)
|
7174
|
+
|
7175
|
+
|
7176
|
+
Processing WidgetsController#index (for 127.0.0.1 at 2013-09-11 16:02:38) [GET]
|
7177
|
+
Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
|
7178
|
+
|
7179
|
+
|
7180
|
+
Processing WidgetsController#new (for 127.0.0.1 at 2013-09-11 16:02:38) [GET]
|
7181
|
+
|
7182
|
+
ZeroDivisionError (divided by 0):
|
7183
|
+
app/controllers/widgets_controller.rb:3:in `/'
|
7184
|
+
app/controllers/widgets_controller.rb:3:in `new'
|
7185
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
7186
|
+
/Users/todd/Projects/errplane/errplane-ruby/lib/errplane/rails/benchmarking.rb:15:in `perform_action'
|
7187
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:13:in `_call'
|
7188
|
+
/Users/todd/Projects/errplane/errplane-ruby/spec/./lib/errplane/rack.rb:8:in `call'
|
7189
|
+
/spec/integration/exceptions_spec.rb:39
|
7190
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
|
7191
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
|
7192
|
+
/Users/todd/.rvm/rubies/ruby-1.8.7-p357/lib/ruby/1.8/timeout.rb:53:in `timeout'
|
7193
|
+
rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
|
7194
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
|
7195
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
|
7196
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
|
7197
|
+
rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
|
7198
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
|
7199
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
|
7200
|
+
rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
|
7201
|
+
rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
|
7202
|
+
rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
|
7203
|
+
rspec (1.3.2) bin/spec:5
|
7204
|
+
|
7205
|
+
Rendered rescues/_trace (22.1ms)
|
7206
|
+
Rendered rescues/_request_and_response (0.2ms)
|
7207
|
+
Rendering rescues/layout (internal_server_error)
|
7208
|
+
[Errplane] Exception: {"exception":{},"environment_variables":{"SECURITYSESSIONID":"186a5","_":"/Users/todd/.rvm/rubies/ruby-1.8.7-p357/bin/ruby","rvm_path":"/Users/todd/.rvm","TERM":"xterm-256color","EC2_PRIVATE_KEY":"/Users/todd/.ec2/pk-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem","LOGNAME":"todd","EDITOR":"vim","__CF_USER_TEXT_ENCODING":"0x1F5:0:0","GEM_PATH":"/Users/todd/.rvm/gems/ruby-1.8.7-p357@errplane_gem:/Users/todd/.rvm/gems/ruby-1.8.7-p357@global","ITERM_SESSION_ID":"w0t2p0","ITERM_PROFILE":"Default","IRBRC":"/Users/todd/.rvm...
|
7209
|
+
[Errplane] Exception: {"exception":{},"environment_variables":{"SECURITYSESSIONID":"186a5","_":"/Users/todd/.rvm/rubies/ruby-1.8.7-p357/bin/ruby","rvm_path":"/Users/todd/.rvm","TERM":"xterm-256color","EC2_PRIVATE_KEY":"/Users/todd/.ec2/pk-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem","LOGNAME":"todd","EDITOR":"vim","__CF_USER_TEXT_ENCODING":"0x1F5:0:0","GEM_PATH":"/Users/todd/.rvm/gems/ruby-1.8.7-p357@errplane_gem:/Users/todd/.rvm/gems/ruby-1.8.7-p357@global","ITERM_SESSION_ID":"w0t2p0","ITERM_PROFILE":"Default","IRBRC":"/Users/todd/.rvm...
|
7210
|
+
[Errplane] Thread exiting, flushing queue.
|
7211
|
+
[Errplane] Checking background queue on thread 2 (3 active)
|
7212
|
+
[Errplane] Found data in the queue! (exceptions)
|
7213
|
+
[Errplane] POSTing to /databases/b12r8c72test/points?api_key=f123-e456-d789c012
|
7214
|
+
[Errplane] POSTing data:
|
7215
|
+
[{"n":"exceptions","p":[{"v":1,"c":"{\"application_root\":\"/var/www/current\",\"custom_data\":{},\"framework_version\":\"2.3.18\",\"message\":\"wrong\",\"language\":\"Ruby\",\"backtrace\":[\"spec/unit/errplane_spec.rb:70 in `'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `call'\",\"/Users/todd/Projects/errplane/errplane-ruby/spec/../lib/errplane.rb:151 in `rescue_and_reraise'\",\"spec/unit/errplane_spec.rb:70 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `call'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/matchers/raise_exception.rb:21 in `matches?'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/handler.rb:11 in `handle_matcher'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/expectations/extensions/kernel.rb:27 in `to'\",\"spec/unit/errplane_spec.rb:69 in `'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `instance_eval'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:40 in `execute'\",\"/Users/todd/.rvm/rubies/ruby-1.8.7-p357/lib/ruby/1.8/timeout.rb:53 in `timeout'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_methods.rb:37 in `execute'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:219 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:217 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/example/example_group_methods.rb:103 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:23 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `each'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/example_group_runner.rb:22 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/options.rb:153 in `run_examples'\",\"[GEM_ROOT]/gems/rspec-1.3.2/lib/spec/runner/command_line.rb:9 in `run'\",\"[GEM_ROOT]/gems/rspec-1.3.2/bin/spec:5 in `'\"],\"reporter\":{\"url\":\"https://github.com/errplane/errplane-ruby\",\"name\":\"Errplane\",\"version\":\"1.0.12\"},\"language_version\":\"1.8.7-p357\",\"environment_variables\":{\"TERM\":\"xterm-256color\",\"rvm_path\":\"/Users/todd/.rvm\",\"_\":\"/Users/todd/.rvm/rubies/ruby-1.8.7-p357/bin/ruby\",\"SECURITYSESSIONID\":\"186a5\",\"__CF_USER_TEXT_ENCODING\":\"0x1F5:0:0\",\"EDITOR\":\"vim\",\"LOGNAME\":\"todd\",\"ITERM_PROFILE\":\"Default\",\"ITERM_SESSION_ID\":\"w0t2p0\",\"GEM_PATH\":\"/Users/todd/.rvm/gems/ruby-1.8.7-p357@errplane_gem:/Users/todd/.rvm/gems/ruby-1.8.7-p357@global\",\"IRBRC\":\"/Users/todd/.rvm/rubies/ruby-1.8.7-p357/.irbrc\",\"MY_RUBY_HOME\":\"/Users/todd/.rvm/rubies/ruby-1.8.7-p357\",\"JAVA_HOME\":\"/System/Library/Frameworks/JavaVM.framework/Home/\",\"SHLVL\":\"3\",\"DISPLAY\":\"/tmp/launch-Bg8biD/org.macosforge.xquartz:0\",\"GEM_HOME\":\"/Users/todd/.rvm/gems/ruby-1.8.7-p357@errplane_gem\",\"Apple_Ubiquity_Message\":\"/tmp/launch-Yx9B9D/Apple_Ubiquity_Message\",\"BUNDLE_EDITOR\":\"vim\",\"BUNDLE_GEMFILE\":\"gemfiles/Gemfile.rails-2.3.x\",\"rvm_ruby_string\":\"ruby-1.8.7-p357\",\"RUBY_VERSION\":\"ruby-1.8.7-p357\",\"EC2_CERT\":\"/Users/todd/.ec2/cert-A53CGXHOGSWO2N2R65RBSEOLHFSRW4VY.pem\",\"RAILS_ENV\":\"test\",\"TERM_PROGRAM\":\"iTerm.app\",\"SSH_AUTH_SOCK\":\"/tmp/launch-o8r54S/Listeners\",\"SHELL\":\"/bin/bash\",\"USER\":\"todd\",\"EC2_HOME\":\"/Users/todd/.ec2\",\"PWD\":\"/Users/todd/Projects/errplane/errplane-ruby\",\"rvm_sticky_flag\":\"1\",\"rvm_prefix\":\"/Users/todd\",\"PATH\":\"/Users/todd/.rvm/gems/ruby-1.8.7-p357@errplane_gem/bin:/Users/todd/.rvm/gems/ruby-1.8.7-p357@global/bin:/Users/todd/.rvm/rubies/ruby-1.8.7-p357/bin:/Users/todd/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/todd/.ec2/bin\",\"BUNDLE_BIN_PATH\":\"/Users/todd/.rvm/gems/ruby-1.8.7-p357@global/gems/bundler-1.1.4/bin/bundle\",\"rvm_bin_path\":\"/Users/todd/.rvm/bin\",\"TMPDIR\":\"/var/folders/xj/13zf0nss66j1gj0h1mnm353c0000gn/T/\",\"LANG\":\"en_US.UTF-8\",\"RUBYOPT\":\"-I/Users/todd/.rvm/gems/ruby-1.8.7-p357@global/gems/bundler-1.1.4/lib -rbundler/setup\",\"Apple_PubSub_Socket_Render\":\"/tmp/launch-4UMuen/Render\",\"COMMAND_MODE\":\"unix2003\",\"rvm_version\":\"1.21.14 (stable)\",\"HOME\":\"/Users/todd\",\"rvm_delete_flag\":\"0\"},\"framework\":\"Rails\",\"application_name\":\"Application\",\"time\":1378929758}","d":{"status":"open","class":"ArgumentError","method":"#","server":"pivotal-guest-5-82.ny.pivotallabs.com","filename":"errplane_spec.rb"}}]}]
|
7216
|
+
[Errplane] Error calling API: #<FakeWeb::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://w.apiv3.errplane.com/databases/b12r8c72test/points?api_key=f123-e456-d789c012>
|
7217
|
+
[Errplane] Thread exiting, flushing queue.
|
7218
|
+
[Errplane] Thread exiting, flushing queue.
|