binnacle 0.4.8 → 0.4.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/Gemfile.lock +26 -26
  4. data/lib/binnacle/client.rb +10 -6
  5. data/lib/binnacle/commands/tail.rb +23 -15
  6. data/lib/binnacle/logging/formatter.rb +3 -4
  7. data/lib/binnacle/resources/event.rb +19 -6
  8. data/lib/binnacle/trap/exception_event.rb +4 -6
  9. data/lib/binnacle/version.rb +1 -1
  10. data/spec/client_spec.rb +15 -41
  11. data/spec/commands_spec.rb +22 -12
  12. data/spec/logger_spec.rb +6 -1
  13. data/spec/vcr/binnacle_client/events_invokes_the_events_api.yml +52 -55
  14. data/spec/vcr/binnacle_client/events_returns_a_collection_of_event_objects.yml +52 -55
  15. data/spec/vcr/binnacle_client/recents_invokes_the_events_api_recents.yml +59 -22
  16. data/spec/vcr/binnacle_client/recents_returns_a_collection_of_event_objects.yml +98 -22
  17. data/spec/vcr/binnacle_client/report_exception_invokes_the_events_api_signal.yml +23 -24
  18. data/spec/vcr/binnacle_client/signal_asynch_invokes_the_events_api_signal.yml +26 -19
  19. data/spec/vcr/binnacle_client/signal_invokes_the_events_api_signal.yml +60 -15
  20. data/spec/vcr/binnacle_client_ready_/returns_true_if_a_connection_has_been_successfully_established.yml +45 -6
  21. data/spec/vcr/binnacle_command/requires_a_known_subcommand_argument.yml +42 -0
  22. data/spec/vcr/binnacle_command/tail_command_validates_the_passed_params_before_executing.yml +42 -0
  23. data/spec/vcr/binnacle_command/tail_command_with_n_flag_returns_recent_events.yml +61 -16
  24. data/spec/vcr/binnacle_http_logger/_htt_party_adapter_should_log__ge_t_requests.yml +38 -1
  25. data/spec/vcr/binnacle_http_logger/_http_client_adapter_should_log__ge_t_requests.yml +74 -0
  26. data/spec/vcr/binnacle_http_logger/open_uri_adapter_should_log__ge_t_requests.yml +333 -0
  27. data/spec/vcr/binnacle_http_logger/typhoeus_adapter_should_log__ge_t_requests.yml +38 -1
  28. data/spec/vcr/binnacle_logging/logging_allows_passing_other_parameters_using_a_hash.yml +35 -33
  29. data/spec/vcr/binnacle_logging/logging_invokes_the_events_api_signal.yml +60 -15
  30. data/spec/vcr/binnacle_logging/logging_respects_the_logger_severity.yml +54 -15
  31. data/vendor/assets/javascripts/binnacle/binnacle.js +39 -18
  32. metadata +6 -4
  33. data/spec/exception_event_spec.rb +0 -72
@@ -16,14 +16,20 @@ describe "binnacle command" do
16
16
  end
17
17
 
18
18
  describe BinnacleCommand do
19
- before { ENV["TEST_MODE"] = 'true' }
19
+ before do
20
+ reset_env
21
+ ENV["TEST_MODE"] = 'true'
22
+ Binnacle.configure do |config|
23
+ config.encrypted = false
24
+ end
25
+ end
20
26
 
21
- it 'requires a known subcommand argument' do
27
+ it 'requires a known subcommand argument', :vcr do
22
28
  expect { BinnacleCommand.new.run(['foobar'])}.to output("I don't know the subcommand command 'foobar'\n").to_stdout
23
29
  end
24
30
 
25
31
  describe 'tail command' do
26
- it 'validates the passed params before executing' do
32
+ it 'validates the passed params before executing', :vcr do
27
33
  expected_output = [
28
34
  %[The following errors prevented the tail command from executing:],
29
35
  %[ - No channel or app given],
@@ -32,19 +38,19 @@ describe BinnacleCommand do
32
38
  %[ tail -- listen to a Binnacle channel or app\n\n]
33
39
  ].join("\n")
34
40
  expect {
35
- BinnacleCommand.new.run(["tail"])
41
+ BinnacleCommand.new.run(["tail"])
36
42
  }.to output(expected_output).to_stdout
37
43
  end
38
44
 
39
45
  unless ENV["CI"] == "true"
40
46
  it 'with -n flag returns recent events', :vcr do
41
- args = ["tail", "-n", "10", "-s", "60", "--host=localhost", "--channel=ylhcn28x7skv6av8q93m", "--api-key=jzr5d5kgj4j3l8fm90tr", "--api-secret=bz3e3w44o3323dypp8d7", "--no-encrypted"]
47
+ args = ["tail", "-n", "10", "-s", "60", "--host=localhost", "--channel=icoc0tnol3obe8pas207", "--api-key=vceth4xcwqfoowpz2esi", "--api-secret=1grttyb8ozbe9axt88ji", "--environment=development", "--no-encrypted"]
42
48
 
43
49
  expect { BinnacleCommand.new.run(args) }.to output(TAIL_DASH_L).to_stdout
44
50
 
45
51
  expect(a_request(:get, 'http://localhost:8080/api/endpoints'))
46
52
  expect(
47
- a_request(:get, "http://localhost:8080/api/events/ylhcn28x7skv6av8q93m/recents?limit=10&since=60")
53
+ a_request(:get, "http://localhost:8080/api/events/icoc0tnol3obe8pas207/production/recents?limit=10&since=60")
48
54
  ).to(have_been_made.times(1))
49
55
  end
50
56
  end
@@ -78,14 +84,18 @@ where [options] are:
78
84
  -s, --since=<i> Number of minutes in the past to search
79
85
  for events
80
86
  -e, --encrypted, --no-encrypted Use SSL/HTTPS (default: true)
87
+ -v, --environment=<s> The target environment (Rails.env)
88
+ (default: production)
89
+ -y, --payload Show JSON Payload
81
90
  -l, --help Show this message
82
91
  EOS
83
92
 
84
93
  TAIL_DASH_L = <<-EOS
85
- Retrieving last 10 lines since 60 minutes ago from Channel ylhcn28x7skv6av8q93m ...
86
- INFO [2015-10-22 13:37:28 -0700] TEST_EVT2 :: client_id = io, session_id = SESS_01, ip = 0:0:0:0:0:0:0:1, tags = [["account", "upgrade"]]
87
- INFO [2015-10-22 13:37:32 -0700] TEST_EVT2 :: client_id = io, session_id = SESS_01, ip = 0:0:0:0:0:0:0:1, tags = [["account", "upgrade"]]
88
- INFO [2015-10-22 13:37:32 -0700] TEST_EVT2 :: client_id = io, session_id = SESS_01, ip = 0:0:0:0:0:0:0:1, tags = [["account", "upgrade"]]
89
- INFO [2015-10-22 13:37:33 -0700] TEST_EVT2 :: client_id = io, session_id = SESS_01, ip = 0:0:0:0:0:0:0:1, tags = [["account", "upgrade"]]
90
- INFO [2015-10-22 13:37:36 -0700] TEST_EVT2 :: client_id = io, session_id = SESS_01, ip = 0:0:0:0:0:0:0:1, tags = [["account", "upgrade"]]
94
+ Retrieving last 10 lines since 60 minutes ago from Channel icoc0tnol3obe8pas207 ...
95
+ production::INFO [2017-07-06 14:59:36 -0400] log :: ip = 0:0:0:0:0:0:0:1
96
+ production::DEBUG [2017-07-06 14:59:37 -0400] log :: ip = 0:0:0:0:0:0:0:1
97
+ production::INFO [2017-07-06 15:21:31 -0400] failed_tra :: session_id = 8675309, ip = 0:0:0:0:0:0:0:1
98
+ production::INFO [2017-07-06 15:22:45 -0400] failed_tra :: session_id = 8675309, ip = 0:0:0:0:0:0:0:1
99
+ production::DEBUG [2017-07-06 15:23:03 -0400] log :: ip = 0:0:0:0:0:0:0:1
100
+ production::INFO [2017-07-06 15:23:21 -0400] log :: ip = 0:0:0:0:0:0:0:1
91
101
  EOS
@@ -1,7 +1,12 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe Binnacle::Logging do
4
- before { Binnacle.configuration.asynch_logging = false }
4
+ before {
5
+ Binnacle.configure do |config|
6
+ config.encrypted = false
7
+ config.asynch_logging = false
8
+ end
9
+ }
5
10
 
6
11
  let(:logger) {
7
12
  Binnacle::Logging.build('vceth4xcwqfoowpz2esi', '1grttyb8ozbe9axt88ji', 'localhost', 'icoc0tnol3obe8pas207')
@@ -8,13 +8,13 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.2
11
+ - Faraday v0.12.1
12
12
  Accept:
13
13
  - "*/*"
14
14
  Accept-Encoding:
15
15
  - gzip,deflate
16
16
  Date:
17
- - Fri, 01 Jan 2016 18:00:31 GMT
17
+ - Thu, 06 Jul 2017 15:10:42 GMT
18
18
  Content-Type:
19
19
  - application/json
20
20
  Authorization:
@@ -25,7 +25,7 @@ http_interactions:
25
25
  message: OK
26
26
  headers:
27
27
  Date:
28
- - Fri, 01 Jan 2016 18:00:31 GMT
28
+ - Thu, 06 Jul 2017 15:10:42 GMT
29
29
  Content-Type:
30
30
  - application/json
31
31
  Content-Encoding:
@@ -36,24 +36,63 @@ http_interactions:
36
36
  - chunked
37
37
  body:
38
38
  encoding: UTF-8
39
- string: '["ip68-2-239-31.ph.ph.cox.net"]'
39
+ string: '["127.0.0.1"]'
40
40
  http_version:
41
- recorded_at: Fri, 01 Jan 2016 18:00:31 GMT
41
+ recorded_at: Thu, 06 Jul 2017 15:10:42 GMT
42
42
  - request:
43
43
  method: get
44
- uri: http://localhost:8080/api/events/icoc0tnol3obe8pas207/2015-12-29?end_hour=9&limit=500&start_hour=8
44
+ uri: http://localhost:8080/api/endpoints
45
+ body:
46
+ encoding: UTF-8
47
+ string: ''
48
+ headers:
49
+ User-Agent:
50
+ - Faraday v0.12.1
51
+ Accept:
52
+ - "*/*"
53
+ Accept-Encoding:
54
+ - gzip,deflate
55
+ Date:
56
+ - Thu, 06 Jul 2017 15:10:42 GMT
57
+ Content-Type:
58
+ - application/json
59
+ Authorization:
60
+ - Basic dmNldGg0eGN3cWZvb3dwejJlc2k6MWdydHR5YjhvemJlOWF4dDg4amk=
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ Date:
67
+ - Thu, 06 Jul 2017 15:10:42 GMT
68
+ Content-Type:
69
+ - application/json
70
+ Content-Encoding:
71
+ - gzip
72
+ Vary:
73
+ - Accept-Encoding
74
+ Transfer-Encoding:
75
+ - chunked
76
+ body:
77
+ encoding: UTF-8
78
+ string: '["127.0.0.1"]'
79
+ http_version:
80
+ recorded_at: Thu, 06 Jul 2017 15:10:42 GMT
81
+ - request:
82
+ method: get
83
+ uri: http://localhost:8080/api/events/icoc0tnol3obe8pas207/production/2017-07-06?end_hour=12&limit=500&start_hour=11
45
84
  body:
46
85
  encoding: UTF-8
47
86
  string: ''
48
87
  headers:
49
88
  User-Agent:
50
- - Faraday v0.9.2
89
+ - Faraday v0.12.1
51
90
  Accept:
52
91
  - "*/*"
53
92
  Accept-Encoding:
54
93
  - gzip,deflate
55
94
  Date:
56
- - Fri, 01 Jan 2016 18:00:31 GMT
95
+ - Thu, 06 Jul 2017 15:10:42 GMT
57
96
  Content-Type:
58
97
  - application/json
59
98
  Authorization:
@@ -64,7 +103,7 @@ http_interactions:
64
103
  message: OK
65
104
  headers:
66
105
  Date:
67
- - Fri, 01 Jan 2016 18:00:31 GMT
106
+ - Thu, 06 Jul 2017 15:10:42 GMT
68
107
  Content-Type:
69
108
  - application/json
70
109
  Content-Encoding:
@@ -75,50 +114,8 @@ http_interactions:
75
114
  - chunked
76
115
  body:
77
116
  encoding: UTF-8
78
- string: '[{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
79
- GET \"/accounts/1\" for 127.0.0.1 at 2015-12-29 08:19:00 -0700"},"id":"7a787845-2067-4c37-a67c-b25cc320c2a0","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402340642,"eventName":"log","clientEventTime":1451402340000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Parameters:
80
- {\"id\"=>\"1\"}"},"id":"eb740e63-a335-4e38-9c95-385c53fff2e6","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402340686,"eventName":"log","clientEventTime":1451402340000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
81
- by AccountsController#show as HTML"},"id":"fe909f02-5f9c-4d6a-bde8-16a560d0cb5d","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402340693,"eventName":"log","clientEventTime":1451402340000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
82
- collaborators/_table.html.erb (15.5ms)"},"id":"31a85d29-3d46-489d-b8b6-1e3723570a72","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402341394,"eventName":"log","clientEventTime":1451402341000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
83
- accounts/show.html.erb within layouts/application (129.6ms)"},"id":"5af44757-e03b-44ef-a60b-edf597a74736","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402341426,"eventName":"log","clientEventTime":1451402341000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
84
- application/_notifications.html.erb (192.8ms)"},"id":"cabae909-172a-47b8-8f96-4718caf167bc","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342813,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
85
- application/_docs_menu.html.erb (18.8ms)"},"id":"766929cd-f6ca-4ca0-abbd-704a40ecb1de","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342814,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
86
- application/_search_form.html.erb (3.3ms)"},"id":"ca659b78-e1b2-4cd5-8d5c-3170b6517d36","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342837,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
87
- application/_docs_side_bar_menu_item.html.erb (33.2ms)"},"id":"ee1cd6d2-8e55-49f1-836d-c7745b39eeba","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342944,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
88
- 200 OK in 2338ms (Views: 1672.1ms | ActiveRecord: 35.3ms)"},"id":"b6b30f96-5876-4ce6-adb7-b1f2bea05edf","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342947,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
89
- GET \"/fonts/fontawesome-webfont.woff?v=4.5.0\" for 127.0.0.1 at 2015-12-29
90
- 08:19:03 -0700"},"id":"ae9090b4-d6d2-450d-88e8-17816fb06c81","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"76fc1637-388c-47a8-87f3-42687cb0b7c9","eventTime":1451402343378,"eventName":"log","clientEventTime":1451402343000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
91
- GET \"/\" for 127.0.0.1 at 2015-12-29 08:19:03 -0700"},"id":"7434c507-e018-4e42-b6a4-51f75869d210","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402343420,"eventName":"log","clientEventTime":1451402343000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
92
- by DashboardController#index as */*"},"id":"eddf5025-953e-4ad4-872e-ef6b12a1704f","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402343450,"eventName":"log","clientEventTime":1451402343000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
93
- application/_this_week_counts.html.erb (0.9ms)"},"id":"16af3aba-05c0-494b-9a85-7c7215125b78","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402345231,"eventName":"log","clientEventTime":1451402345000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
94
- dashboard/index.html.erb within layouts/application (638.6ms)"},"id":"7924ae67-d259-4fa7-a4b1-e7057942ccb3","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402345816,"eventName":"log","clientEventTime":1451402345000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
95
- application/_notifications.html.erb (182.9ms)"},"id":"a13fef12-46c5-4bfe-844c-d5b63da0e646","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347002,"eventName":"log","clientEventTime":1451402346000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
96
- application/_docs_menu.html.erb (21.1ms)"},"id":"8df87ba2-6096-4d93-ab0b-5268c6b9e048","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347007,"eventName":"log","clientEventTime":1451402346000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
97
- application/_search_form.html.erb (3.2ms)"},"id":"abb6707b-52dd-4287-b821-13d8cc74c57e","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347080,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
98
- application/_docs_side_bar_menu_item.html.erb (31.1ms)"},"id":"77059499-0cdb-4463-8992-deb1411762e6","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347219,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
99
- 200 OK in 3796ms (Views: 2045.5ms | ActiveRecord: 13.6ms)"},"id":"60f6fd20-3ba6-4d05-9f90-915b01e8e296","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347230,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
100
- GET \"/fonts/fontawesome-webfont.ttf?v=4.5.0\" for 127.0.0.1 at 2015-12-29
101
- 08:19:07 -0700"},"id":"5cf501f1-0ce1-4348-a820-42a31b263564","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"3b68af95-de27-48eb-aaaa-6e435ea29f2f","eventTime":1451402347335,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
102
- GET \"/\" for 127.0.0.1 at 2015-12-29 08:19:07 -0700"},"id":"442d649c-0100-4323-b78d-cf2d3ded30c9","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402347375,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
103
- by DashboardController#index as */*"},"id":"59118f80-dc64-459d-8469-10ac2fe34624","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402347387,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
104
- application/_this_week_counts.html.erb (0.8ms)"},"id":"8dfe7c87-0359-4874-8fe6-533486edadd1","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402348968,"eventName":"log","clientEventTime":1451402348000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
105
- dashboard/index.html.erb within layouts/application (625.9ms)"},"id":"7e4c902f-f88f-470c-817d-c1425c8e7c71","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402349547,"eventName":"log","clientEventTime":1451402349000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
106
- application/_docs_menu.html.erb (17.2ms)"},"id":"48812718-a690-4005-b48d-067efe19b539","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350730,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
107
- application/_notifications.html.erb (184.7ms)"},"id":"e3d98919-97dd-464c-bc34-7aacb7f46632","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350732,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
108
- application/_search_form.html.erb (3.1ms)"},"id":"439f2cfd-e7a8-4c60-92cc-f51141e0e684","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350742,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
109
- 200 OK in 3477ms (Views: 1934.5ms | ActiveRecord: 20.2ms)"},"id":"1f843290-47e3-4bc6-9fb5-d94d457c75f4","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350865,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
110
- application/_docs_side_bar_menu_item.html.erb (30.7ms)"},"id":"24d0d2a9-43af-4de8-85bd-64f4c51b9f6a","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350865,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
111
- GET \"/fonts/fontawesome-webfont.svg?v=4.5.0\" for 127.0.0.1 at 2015-12-29
112
- 08:19:10 -0700"},"id":"df081e5d-dd90-4ccd-8587-5bb28ad26ef3","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"1b3d2d28-ba67-4d7e-9d13-8551e30b44f7","eventTime":1451402350944,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
113
- GET \"/\" for 127.0.0.1 at 2015-12-29 08:19:10 -0700"},"id":"9db29809-54fd-4d90-845a-e7a605ce24db","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402350975,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
114
- by DashboardController#index as */*"},"id":"69563d1d-9618-4bc7-9579-808e51211004","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402350987,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
115
- application/_this_week_counts.html.erb (1.0ms)"},"id":"424877cb-d8d0-441b-86a5-45bbdef64ed9","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402352578,"eventName":"log","clientEventTime":1451402352000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
116
- dashboard/index.html.erb within layouts/application (614.6ms)"},"id":"589b1859-7e40-4bad-8fa3-7bb1d3f963c1","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402353146,"eventName":"log","clientEventTime":1451402353000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
117
- application/_notifications.html.erb (171.7ms)"},"id":"45807fe3-b4e5-4c3a-8674-4ff6fa24959b","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354305,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
118
- application/_docs_menu.html.erb (15.7ms)"},"id":"e95319bb-9aeb-4753-967b-88054c6dca44","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354348,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
119
- application/_search_form.html.erb (3.5ms)"},"id":"2546896d-7927-44f0-a1be-8f9ef3b05907","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354370,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
120
- application/_docs_side_bar_menu_item.html.erb (28.1ms)"},"id":"42260f3c-2cb1-4e7e-9b6b-45f3665ac334","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354491,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
121
- 200 OK in 3508ms (Views: 1962.3ms | ActiveRecord: 12.0ms)"},"id":"d732760b-195c-4733-ba42-efeec8d0a4d5","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354491,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null}]'
117
+ string: '[{"@class":"io.binnacle.models.BinnacleEvent","accountId":"bv4sfcz28up6q6bophx4","json":{},"id":"a1458959-18c0-42e3-aa26-e41d752eb339","appId":"n7f05b76tr4xsc6slstl","channelId":"icoc0tnol3obe8pas207","date":"2017-07-06","sessionId":"My
118
+ Sess","eventTime":1499353841843,"eventName":"ASYNCH_TEST_EVT","clientEventTime":1499353841000,"clientId":"binnacle-rb","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":"production","tags":[],"dismissed":null}]'
122
119
  http_version:
123
- recorded_at: Fri, 01 Jan 2016 18:00:31 GMT
124
- recorded_with: VCR 2.9.3
120
+ recorded_at: Thu, 06 Jul 2017 15:10:42 GMT
121
+ recorded_with: VCR 3.0.3
@@ -8,13 +8,13 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.2
11
+ - Faraday v0.12.1
12
12
  Accept:
13
13
  - "*/*"
14
14
  Accept-Encoding:
15
15
  - gzip,deflate
16
16
  Date:
17
- - Fri, 01 Jan 2016 18:00:31 GMT
17
+ - Thu, 06 Jul 2017 15:10:42 GMT
18
18
  Content-Type:
19
19
  - application/json
20
20
  Authorization:
@@ -25,7 +25,7 @@ http_interactions:
25
25
  message: OK
26
26
  headers:
27
27
  Date:
28
- - Fri, 01 Jan 2016 18:00:31 GMT
28
+ - Thu, 06 Jul 2017 15:10:42 GMT
29
29
  Content-Type:
30
30
  - application/json
31
31
  Content-Encoding:
@@ -36,24 +36,63 @@ http_interactions:
36
36
  - chunked
37
37
  body:
38
38
  encoding: UTF-8
39
- string: '["ip68-2-239-31.ph.ph.cox.net"]'
39
+ string: '["127.0.0.1"]'
40
40
  http_version:
41
- recorded_at: Fri, 01 Jan 2016 18:00:31 GMT
41
+ recorded_at: Thu, 06 Jul 2017 15:10:42 GMT
42
42
  - request:
43
43
  method: get
44
- uri: http://localhost:8080/api/events/icoc0tnol3obe8pas207/2015-12-29?end_hour=9&limit=500&start_hour=8
44
+ uri: http://localhost:8080/api/endpoints
45
+ body:
46
+ encoding: UTF-8
47
+ string: ''
48
+ headers:
49
+ User-Agent:
50
+ - Faraday v0.12.1
51
+ Accept:
52
+ - "*/*"
53
+ Accept-Encoding:
54
+ - gzip,deflate
55
+ Date:
56
+ - Thu, 06 Jul 2017 15:10:42 GMT
57
+ Content-Type:
58
+ - application/json
59
+ Authorization:
60
+ - Basic dmNldGg0eGN3cWZvb3dwejJlc2k6MWdydHR5YjhvemJlOWF4dDg4amk=
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ Date:
67
+ - Thu, 06 Jul 2017 15:10:42 GMT
68
+ Content-Type:
69
+ - application/json
70
+ Content-Encoding:
71
+ - gzip
72
+ Vary:
73
+ - Accept-Encoding
74
+ Transfer-Encoding:
75
+ - chunked
76
+ body:
77
+ encoding: UTF-8
78
+ string: '["127.0.0.1"]'
79
+ http_version:
80
+ recorded_at: Thu, 06 Jul 2017 15:10:42 GMT
81
+ - request:
82
+ method: get
83
+ uri: http://localhost:8080/api/events/icoc0tnol3obe8pas207/production/2017-07-06?end_hour=12&limit=500&start_hour=11
45
84
  body:
46
85
  encoding: UTF-8
47
86
  string: ''
48
87
  headers:
49
88
  User-Agent:
50
- - Faraday v0.9.2
89
+ - Faraday v0.12.1
51
90
  Accept:
52
91
  - "*/*"
53
92
  Accept-Encoding:
54
93
  - gzip,deflate
55
94
  Date:
56
- - Fri, 01 Jan 2016 18:00:31 GMT
95
+ - Thu, 06 Jul 2017 15:10:42 GMT
57
96
  Content-Type:
58
97
  - application/json
59
98
  Authorization:
@@ -64,7 +103,7 @@ http_interactions:
64
103
  message: OK
65
104
  headers:
66
105
  Date:
67
- - Fri, 01 Jan 2016 18:00:31 GMT
106
+ - Thu, 06 Jul 2017 15:10:42 GMT
68
107
  Content-Type:
69
108
  - application/json
70
109
  Content-Encoding:
@@ -75,50 +114,8 @@ http_interactions:
75
114
  - chunked
76
115
  body:
77
116
  encoding: UTF-8
78
- string: '[{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
79
- GET \"/accounts/1\" for 127.0.0.1 at 2015-12-29 08:19:00 -0700"},"id":"7a787845-2067-4c37-a67c-b25cc320c2a0","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402340642,"eventName":"log","clientEventTime":1451402340000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Parameters:
80
- {\"id\"=>\"1\"}"},"id":"eb740e63-a335-4e38-9c95-385c53fff2e6","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402340686,"eventName":"log","clientEventTime":1451402340000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
81
- by AccountsController#show as HTML"},"id":"fe909f02-5f9c-4d6a-bde8-16a560d0cb5d","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402340693,"eventName":"log","clientEventTime":1451402340000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
82
- collaborators/_table.html.erb (15.5ms)"},"id":"31a85d29-3d46-489d-b8b6-1e3723570a72","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402341394,"eventName":"log","clientEventTime":1451402341000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
83
- accounts/show.html.erb within layouts/application (129.6ms)"},"id":"5af44757-e03b-44ef-a60b-edf597a74736","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402341426,"eventName":"log","clientEventTime":1451402341000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
84
- application/_notifications.html.erb (192.8ms)"},"id":"cabae909-172a-47b8-8f96-4718caf167bc","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342813,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
85
- application/_docs_menu.html.erb (18.8ms)"},"id":"766929cd-f6ca-4ca0-abbd-704a40ecb1de","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342814,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
86
- application/_search_form.html.erb (3.3ms)"},"id":"ca659b78-e1b2-4cd5-8d5c-3170b6517d36","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342837,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
87
- application/_docs_side_bar_menu_item.html.erb (33.2ms)"},"id":"ee1cd6d2-8e55-49f1-836d-c7745b39eeba","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342944,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
88
- 200 OK in 2338ms (Views: 1672.1ms | ActiveRecord: 35.3ms)"},"id":"b6b30f96-5876-4ce6-adb7-b1f2bea05edf","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"fcd86193-dc07-4c71-a901-a277ae7f3d30","eventTime":1451402342947,"eventName":"log","clientEventTime":1451402342000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
89
- GET \"/fonts/fontawesome-webfont.woff?v=4.5.0\" for 127.0.0.1 at 2015-12-29
90
- 08:19:03 -0700"},"id":"ae9090b4-d6d2-450d-88e8-17816fb06c81","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"76fc1637-388c-47a8-87f3-42687cb0b7c9","eventTime":1451402343378,"eventName":"log","clientEventTime":1451402343000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
91
- GET \"/\" for 127.0.0.1 at 2015-12-29 08:19:03 -0700"},"id":"7434c507-e018-4e42-b6a4-51f75869d210","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402343420,"eventName":"log","clientEventTime":1451402343000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
92
- by DashboardController#index as */*"},"id":"eddf5025-953e-4ad4-872e-ef6b12a1704f","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402343450,"eventName":"log","clientEventTime":1451402343000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
93
- application/_this_week_counts.html.erb (0.9ms)"},"id":"16af3aba-05c0-494b-9a85-7c7215125b78","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402345231,"eventName":"log","clientEventTime":1451402345000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
94
- dashboard/index.html.erb within layouts/application (638.6ms)"},"id":"7924ae67-d259-4fa7-a4b1-e7057942ccb3","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402345816,"eventName":"log","clientEventTime":1451402345000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
95
- application/_notifications.html.erb (182.9ms)"},"id":"a13fef12-46c5-4bfe-844c-d5b63da0e646","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347002,"eventName":"log","clientEventTime":1451402346000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
96
- application/_docs_menu.html.erb (21.1ms)"},"id":"8df87ba2-6096-4d93-ab0b-5268c6b9e048","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347007,"eventName":"log","clientEventTime":1451402346000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
97
- application/_search_form.html.erb (3.2ms)"},"id":"abb6707b-52dd-4287-b821-13d8cc74c57e","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347080,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
98
- application/_docs_side_bar_menu_item.html.erb (31.1ms)"},"id":"77059499-0cdb-4463-8992-deb1411762e6","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347219,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
99
- 200 OK in 3796ms (Views: 2045.5ms | ActiveRecord: 13.6ms)"},"id":"60f6fd20-3ba6-4d05-9f90-915b01e8e296","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"f7f842db-23f3-4492-81bb-60849e45b45a","eventTime":1451402347230,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
100
- GET \"/fonts/fontawesome-webfont.ttf?v=4.5.0\" for 127.0.0.1 at 2015-12-29
101
- 08:19:07 -0700"},"id":"5cf501f1-0ce1-4348-a820-42a31b263564","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"3b68af95-de27-48eb-aaaa-6e435ea29f2f","eventTime":1451402347335,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
102
- GET \"/\" for 127.0.0.1 at 2015-12-29 08:19:07 -0700"},"id":"442d649c-0100-4323-b78d-cf2d3ded30c9","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402347375,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
103
- by DashboardController#index as */*"},"id":"59118f80-dc64-459d-8469-10ac2fe34624","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402347387,"eventName":"log","clientEventTime":1451402347000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
104
- application/_this_week_counts.html.erb (0.8ms)"},"id":"8dfe7c87-0359-4874-8fe6-533486edadd1","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402348968,"eventName":"log","clientEventTime":1451402348000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
105
- dashboard/index.html.erb within layouts/application (625.9ms)"},"id":"7e4c902f-f88f-470c-817d-c1425c8e7c71","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402349547,"eventName":"log","clientEventTime":1451402349000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
106
- application/_docs_menu.html.erb (17.2ms)"},"id":"48812718-a690-4005-b48d-067efe19b539","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350730,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
107
- application/_notifications.html.erb (184.7ms)"},"id":"e3d98919-97dd-464c-bc34-7aacb7f46632","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350732,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
108
- application/_search_form.html.erb (3.1ms)"},"id":"439f2cfd-e7a8-4c60-92cc-f51141e0e684","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350742,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
109
- 200 OK in 3477ms (Views: 1934.5ms | ActiveRecord: 20.2ms)"},"id":"1f843290-47e3-4bc6-9fb5-d94d457c75f4","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350865,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
110
- application/_docs_side_bar_menu_item.html.erb (30.7ms)"},"id":"24d0d2a9-43af-4de8-85bd-64f4c51b9f6a","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"37339480-e435-4cc7-af26-57690da6a6e6","eventTime":1451402350865,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
111
- GET \"/fonts/fontawesome-webfont.svg?v=4.5.0\" for 127.0.0.1 at 2015-12-29
112
- 08:19:10 -0700"},"id":"df081e5d-dd90-4ccd-8587-5bb28ad26ef3","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"1b3d2d28-ba67-4d7e-9d13-8551e30b44f7","eventTime":1451402350944,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
113
- GET \"/\" for 127.0.0.1 at 2015-12-29 08:19:10 -0700"},"id":"9db29809-54fd-4d90-845a-e7a605ce24db","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402350975,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
114
- by DashboardController#index as */*"},"id":"69563d1d-9618-4bc7-9579-808e51211004","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402350987,"eventName":"log","clientEventTime":1451402350000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
115
- application/_this_week_counts.html.erb (1.0ms)"},"id":"424877cb-d8d0-441b-86a5-45bbdef64ed9","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402352578,"eventName":"log","clientEventTime":1451402352000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
116
- dashboard/index.html.erb within layouts/application (614.6ms)"},"id":"589b1859-7e40-4bad-8fa3-7bb1d3f963c1","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402353146,"eventName":"log","clientEventTime":1451402353000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
117
- application/_notifications.html.erb (171.7ms)"},"id":"45807fe3-b4e5-4c3a-8674-4ff6fa24959b","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354305,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
118
- application/_docs_menu.html.erb (15.7ms)"},"id":"e95319bb-9aeb-4753-967b-88054c6dca44","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354348,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
119
- application/_search_form.html.erb (3.5ms)"},"id":"2546896d-7927-44f0-a1be-8f9ef3b05907","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354370,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
120
- application/_docs_side_bar_menu_item.html.erb (28.1ms)"},"id":"42260f3c-2cb1-4e7e-9b6b-45f3665ac334","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354491,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
121
- 200 OK in 3508ms (Views: 1962.3ms | ActiveRecord: 12.0ms)"},"id":"d732760b-195c-4733-ba42-efeec8d0a4d5","channelId":"icoc0tnol3obe8pas207","date":"2015-12-29","sessionId":"2f572cff-3e7b-4084-b884-76a4b50d82ae","eventTime":1451402354491,"eventName":"log","clientEventTime":1451402354000,"clientId":"127.0.0.1","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null}]'
117
+ string: '[{"@class":"io.binnacle.models.BinnacleEvent","accountId":"bv4sfcz28up6q6bophx4","json":{},"id":"a1458959-18c0-42e3-aa26-e41d752eb339","appId":"n7f05b76tr4xsc6slstl","channelId":"icoc0tnol3obe8pas207","date":"2017-07-06","sessionId":"My
118
+ Sess","eventTime":1499353841843,"eventName":"ASYNCH_TEST_EVT","clientEventTime":1499353841000,"clientId":"binnacle-rb","ipAddress":"0:0:0:0:0:0:0:1","logLevel":"INFO","environment":"production","tags":[],"dismissed":null}]'
122
119
  http_version:
123
- recorded_at: Fri, 01 Jan 2016 18:00:31 GMT
124
- recorded_with: VCR 2.9.3
120
+ recorded_at: Thu, 06 Jul 2017 15:10:43 GMT
121
+ recorded_with: VCR 3.0.3
@@ -8,11 +8,13 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.1
11
+ - Faraday v0.12.1
12
12
  Accept:
13
13
  - "*/*"
14
+ Accept-Encoding:
15
+ - gzip,deflate
14
16
  Date:
15
- - Fri, 16 Oct 2015 05:12:55 GMT
17
+ - Thu, 06 Jul 2017 15:10:41 GMT
16
18
  Content-Type:
17
19
  - application/json
18
20
  Authorization:
@@ -23,31 +25,74 @@ http_interactions:
23
25
  message: OK
24
26
  headers:
25
27
  Date:
26
- - Fri, 16 Oct 2015 05:12:55 GMT
28
+ - Thu, 06 Jul 2017 15:10:41 GMT
27
29
  Content-Type:
28
30
  - application/json
31
+ Content-Encoding:
32
+ - gzip
29
33
  Vary:
30
34
  - Accept-Encoding
31
35
  Transfer-Encoding:
32
36
  - chunked
33
37
  body:
34
38
  encoding: UTF-8
35
- string: '["68.2.239.31"]'
39
+ string: '["127.0.0.1"]'
36
40
  http_version:
37
- recorded_at: Fri, 16 Oct 2015 05:12:55 GMT
41
+ recorded_at: Thu, 06 Jul 2017 15:10:41 GMT
38
42
  - request:
39
43
  method: get
40
- uri: http://localhost:8080/api/events/icoc0tnol3obe8pas207/recents?limit=10&since=500
44
+ uri: http://localhost:8080/api/endpoints
45
+ body:
46
+ encoding: UTF-8
47
+ string: ''
48
+ headers:
49
+ User-Agent:
50
+ - Faraday v0.12.1
51
+ Accept:
52
+ - "*/*"
53
+ Accept-Encoding:
54
+ - gzip,deflate
55
+ Date:
56
+ - Thu, 06 Jul 2017 15:10:41 GMT
57
+ Content-Type:
58
+ - application/json
59
+ Authorization:
60
+ - Basic dmNldGg0eGN3cWZvb3dwejJlc2k6MWdydHR5YjhvemJlOWF4dDg4amk=
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ Date:
67
+ - Thu, 06 Jul 2017 15:10:41 GMT
68
+ Content-Type:
69
+ - application/json
70
+ Content-Encoding:
71
+ - gzip
72
+ Vary:
73
+ - Accept-Encoding
74
+ Transfer-Encoding:
75
+ - chunked
76
+ body:
77
+ encoding: UTF-8
78
+ string: '["127.0.0.1"]'
79
+ http_version:
80
+ recorded_at: Thu, 06 Jul 2017 15:10:41 GMT
81
+ - request:
82
+ method: get
83
+ uri: http://localhost:8080/api/events/icoc0tnol3obe8pas207/production/recents?limit=10&since=500
41
84
  body:
42
85
  encoding: UTF-8
43
86
  string: ''
44
87
  headers:
45
88
  User-Agent:
46
- - Faraday v0.9.1
89
+ - Faraday v0.12.1
47
90
  Accept:
48
91
  - "*/*"
92
+ Accept-Encoding:
93
+ - gzip,deflate
49
94
  Date:
50
- - Fri, 16 Oct 2015 05:12:55 GMT
95
+ - Thu, 06 Jul 2017 15:10:41 GMT
51
96
  Content-Type:
52
97
  - application/json
53
98
  Authorization:
@@ -58,26 +103,18 @@ http_interactions:
58
103
  message: OK
59
104
  headers:
60
105
  Date:
61
- - Fri, 16 Oct 2015 05:12:55 GMT
106
+ - Thu, 06 Jul 2017 15:10:41 GMT
62
107
  Content-Type:
63
108
  - application/json
109
+ Content-Encoding:
110
+ - gzip
64
111
  Vary:
65
112
  - Accept-Encoding
66
113
  Transfer-Encoding:
67
114
  - chunked
68
115
  body:
69
116
  encoding: UTF-8
70
- string: '[{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
71
- GET \"/\" for 127.0.0.1 at 2015-10-15 15:29:50 -0700"},"id":"0649929e-081b-4242-aece-5af865ffa556","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"bbc09810-c675-4e2b-b79b-4883f7c63ac0","eventTime":1444948191100,"eventName":"log","clientEventTime":1444948190000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
72
- by HomeController#index as HTML"},"id":"9f48b581-c467-4dbb-bc1d-3bb36796804b","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"bbc09810-c675-4e2b-b79b-4883f7c63ac0","eventTime":1444948191333,"eventName":"log","clientEventTime":1444948191000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
73
- home/index.html.erb within layouts/home (4.0ms)"},"id":"2d83c39a-c4ce-4c18-b32f-2ce25d164e62","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"bbc09810-c675-4e2b-b79b-4883f7c63ac0","eventTime":1444948192428,"eventName":"log","clientEventTime":1444948192000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
74
- application/_docs_menu.html.erb (17.9ms)"},"id":"1b6957c9-3e60-4101-b48d-625c5f4e99fb","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"bbc09810-c675-4e2b-b79b-4883f7c63ac0","eventTime":1444948193887,"eventName":"log","clientEventTime":1444948193000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
75
- 200 OK in 2785ms (Views: 1922.7ms | ActiveRecord: 110.4ms)"},"id":"50a5cc3d-be19-4f98-b192-aa07bbeb1c1d","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"bbc09810-c675-4e2b-b79b-4883f7c63ac0","eventTime":1444948194120,"eventName":"log","clientEventTime":1444948194000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
76
- home/_try_binnacle.html.erb (0.3ms)"},"id":"cd2848bc-a292-40f8-9476-597227d8d86c","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"bbc09810-c675-4e2b-b79b-4883f7c63ac0","eventTime":1444948194212,"eventName":"log","clientEventTime":1444948194000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Started
77
- GET \"/users/sign_in\" for 127.0.0.1 at 2015-10-15 15:29:58 -0700"},"id":"ee0af607-e9da-4ce2-8431-099adcff4429","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"332880dc-b31b-4e39-9e20-94106a359089","eventTime":1444948198856,"eventName":"log","clientEventTime":1444948198000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Processing
78
- by SessionsController#new as HTML"},"id":"ef53df3d-1d92-4e17-aaaa-c55f01eadb89","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"332880dc-b31b-4e39-9e20-94106a359089","eventTime":1444948198951,"eventName":"log","clientEventTime":1444948198000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":" Rendered
79
- devise/sessions/new.html.erb within layouts/login_and_registration (142.3ms)"},"id":"eabb0981-55bd-4b8b-bb3b-4d4b33834771","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"332880dc-b31b-4e39-9e20-94106a359089","eventTime":1444948199235,"eventName":"log","clientEventTime":1444948199000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null},{"accountId":"bv4sfcz28up6q6bophx4","appId":"n7f05b76tr4xsc6slstl","json":{"message":"Completed
80
- 200 OK in 2064ms (Views: 1976.0ms | ActiveRecord: 5.5ms)"},"id":"da43fab0-8d7d-4f10-b1dd-b495d6d1d20e","channelId":"icoc0tnol3obe8pas207","date":"2015-10-15","sessionId":"332880dc-b31b-4e39-9e20-94106a359089","eventTime":1444948201012,"eventName":"log","clientEventTime":1444948200000,"clientId":"127.0.0.1","ipAddress":"127.0.0.1","logLevel":"INFO","environment":{},"tags":[],"dismissed":null}]'
117
+ string: "[]"
81
118
  http_version:
82
- recorded_at: Fri, 16 Oct 2015 05:12:55 GMT
83
- recorded_with: VCR 2.9.3
119
+ recorded_at: Thu, 06 Jul 2017 15:10:42 GMT
120
+ recorded_with: VCR 3.0.3