app_status 1.2.0 → 2.0.0.pre.alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2eb9fac9989b7aaeaa9938f1785b3cfe2c8a461d
4
+ data.tar.gz: 3a0e87d515954373ece5871dd5dc700f565da7a7
5
+ SHA512:
6
+ metadata.gz: c89bb6ea864d2482e89688315f9684e80d20d055d8098d955483ba690415f18908e7d3c585cf8078eaab6058060822fecea3d62d3ce99f1bdd2303b958cbb038
7
+ data.tar.gz: 67371f67d751b2b4da8993de126d60874b5f1dc17d2f17620efb09ad7fba18e4eaeac4f7bd5ad27997319c4a0799d86ff355214e4cf806beec81713231af40bb
data/README.md CHANGED
@@ -47,15 +47,18 @@ gem 'app_status'
47
47
  ### `config/routes.rb`
48
48
 
49
49
  ```ruby
50
- mount AppStatus::Engine, at: "/status"
50
+ mount AppStatus::Engine => "/status(.:format)", defaults: {format: 'json'}
51
51
  ```
52
52
 
53
53
  This exposes the following URLs
54
54
  - `http://localhost:3000/status`
55
55
  renders html or json according to Accept headers. Defaults to JSON.
56
- - `http://localhost:3000/status/index.json`
57
- - `http://localhost:3000/status/index.html` <-- fugly
56
+ - `http://localhost:3000/status.json`
57
+ - `http://localhost:3000/status.html`
58
58
 
59
+ The HTML status page will use your application's default layout.
60
+
61
+ **NOTE :** The engine assumes that you have a top-level `::ApplicationController`.
59
62
 
60
63
  ### `config/initializers/app_status.rb`
61
64
 
@@ -131,6 +134,35 @@ Keep in mind that anyone who hits your status URL can cause your checks to run,
131
134
  so if they expose sensitive data or are a potential DOS vector you should
132
135
  probably protect them with some kind of authentication.
133
136
 
137
+ ## Built-In Checks
138
+
139
+ As of version 2.0.0, app_status started including a set of built-in checks
140
+ which can be installed. Have a look in
141
+ [`lib/app_status/checks`](https://github.com/alexdean/app_status/tree/master/lib/app_status/checks)
142
+ for a full list.
143
+
144
+ ### `ruby_version` check
145
+
146
+ Verifies that the running version of ruby is as expected.
147
+
148
+ Default is to read the expected version from a `.ruby-version` file in the
149
+ rails root directory.
150
+
151
+ ```ruby
152
+ # config/initializers/app_status.rb
153
+ require 'app_status/checks/ruby_version'
154
+ AppStatus::Checks::RubyVersion.install!
155
+ ```
156
+
157
+ If you wish to specify the expected version string by another method, that's
158
+ also supported.
159
+
160
+ ```ruby
161
+ # config/initializers/app_status.rb
162
+ require 'app_status/checks/ruby_version'
163
+ AppStatus::Checks::RubyVersion.install!(expected_version: '2.5.0')
164
+ ```
165
+
134
166
  ## Usage
135
167
 
136
168
  `$ curl -H 'Accept: application/json' http://localhost:3000/status`
@@ -4,7 +4,7 @@ module AppStatus
4
4
  @checks = CheckCollection.new
5
5
  @checks.evaluate!
6
6
 
7
- json_data = @checks.as_json
7
+ json_data = @checks.as_json(include_descriptions: params[:descriptions])
8
8
 
9
9
  more_info = app_status_engine.root_url
10
10
  # try to build html url, when main app has route like '/status(.:format)'
@@ -13,10 +13,7 @@ module AppStatus
13
13
  end
14
14
  json_data['more_info'] = more_info
15
15
 
16
- respond_to do |format|
17
- format.json { render json: json_data}
18
- format.html
19
- end
16
+ render json: json_data
20
17
  end
21
18
  end
22
19
  end
@@ -133,18 +133,21 @@ module AppStatus
133
133
  end
134
134
  end
135
135
 
136
- def as_hash
136
+ def as_hash(include_descriptions: false)
137
137
  HashWithIndifferentAccess.new({
138
138
  status: @status,
139
139
  status_code: @status_code,
140
140
  ms: @ms.to_i,
141
141
  finished: @finished.iso8601,
142
- checks: @@checks.inject({}) {|memo,(name,check)| memo[name] = check.as_hash; memo}
142
+ checks: @@checks.inject({}) do |memo,(name,check)|
143
+ memo[name] = check.as_hash(include_description: include_descriptions)
144
+ memo
145
+ end
143
146
  })
144
147
  end
145
148
 
146
- def as_json
147
- as_hash
149
+ def as_json(include_descriptions: false)
150
+ as_hash(include_descriptions: include_descriptions)
148
151
  end
149
152
  end
150
153
 
@@ -1,11 +1,9 @@
1
- require 'kramdown'
2
-
3
1
  module AppStatus
4
2
  class CheckItem
5
3
  attr_reader :name, :status, :status_code, :details, :ms
6
4
  attr_accessor :proc, :description
7
5
 
8
- def initialize(name)
6
+ def initialize(name, include_description: false)
9
7
  @name = name
10
8
  @proc = nil
11
9
  @description = ''
@@ -42,17 +40,15 @@ module AppStatus
42
40
  return @status_code
43
41
  end
44
42
 
45
- def as_hash
46
- {
43
+ def as_hash(include_description: false)
44
+ out = {
47
45
  status: @status,
48
46
  status_code: @status_code,
49
47
  details: @details,
50
48
  ms: @ms
51
49
  }
52
- end
53
-
54
- def html_description
55
- Kramdown::Document.new(@description).to_html
50
+ out[:description] = description if include_description
51
+ out
56
52
  end
57
53
  end
58
54
  end
@@ -0,0 +1,35 @@
1
+ module AppStatus
2
+ module Checks
3
+ # verify that running ruby version is as expected
4
+ #
5
+ # @example reading expected version from .ruby-version file
6
+ # # config/initializers/app_status.rb
7
+ # require 'app_status/checks/ruby_version'
8
+ # AppStatus::Checks::RubyVersion.install!
9
+ #
10
+ # @example specifying expected ruby version
11
+ # # config/initializers/app_status.rb
12
+ # require 'app_status/checks/ruby_version'
13
+ # AppStatus::Checks::RubyVersion.install!(expected_version: '2.5.0')
14
+ module RubyVersion
15
+ # add a ruby version check to AppStatus::CheckCollection
16
+ #
17
+ # @param [String] expected_version which ruby version is expected?
18
+ def self.install!(expected_version: nil)
19
+ AppStatus::CheckCollection.add_check('ruby_version') do
20
+ AppStatus::Checks::RubyVersion.check(expected_version: expected_version)
21
+ end
22
+ end
23
+
24
+ # compare expected ruby version to actual ruby version
25
+ #
26
+ # @param [String] expected_version which ruby version is expected?
27
+ # if nil, value will be read from .ruby-version file
28
+ def self.check(expected_version: nil)
29
+ expected_version ||= File.read(Rails.root.join('.ruby-version')).strip
30
+ status = RUBY_VERSION == expected_version ? :ok : :critical
31
+ [status, "expected: #{expected_version}, actual: #{RUBY_VERSION}"]
32
+ end
33
+ end
34
+ end
35
+ end
@@ -1,3 +1,3 @@
1
1
  module AppStatus
2
- VERSION = "1.2.0"
2
+ VERSION = "2.0.0-alpha.1"
3
3
  end
@@ -4,8 +4,6 @@ require File.expand_path('../boot', __FILE__)
4
4
  # require "active_record/railtie"
5
5
  require "action_controller/railtie"
6
6
  require "action_mailer/railtie"
7
- require "active_resource/railtie"
8
- require "sprockets/railtie"
9
7
  require "rails/test_unit/railtie"
10
8
 
11
9
  Bundler.require(*Rails.groups)
@@ -56,10 +54,10 @@ module Dummy
56
54
  # config.active_record.whitelist_attributes = true
57
55
 
58
56
  # Enable the asset pipeline
59
- config.assets.enabled = true
57
+ # config.assets.enabled = true
60
58
 
61
59
  # Version of your assets, change this if you want to expire all your assets
62
- config.assets.version = '1.0'
60
+ # config.assets.version = '1.0'
63
61
  end
64
62
  end
65
63
 
@@ -30,8 +30,8 @@ Dummy::Application.configure do
30
30
  # config.active_record.auto_explain_threshold_in_seconds = 0.5
31
31
 
32
32
  # Do not compress assets
33
- config.assets.compress = false
33
+ # config.assets.compress = false
34
34
 
35
35
  # Expands the lines which load the assets
36
- config.assets.debug = true
36
+ # config.assets.debug = true
37
37
  end
@@ -9,16 +9,16 @@ Dummy::Application.configure do
9
9
  config.action_controller.perform_caching = true
10
10
 
11
11
  # Disable Rails's static asset server (Apache or nginx will already do this)
12
- config.serve_static_assets = false
12
+ # config.serve_static_assets = false
13
13
 
14
14
  # Compress JavaScripts and CSS
15
- config.assets.compress = true
15
+ # config.assets.compress = true
16
16
 
17
17
  # Don't fallback to assets pipeline if a precompiled asset is missed
18
- config.assets.compile = false
18
+ # config.assets.compile = false
19
19
 
20
20
  # Generate digests for assets URLs
21
- config.assets.digest = true
21
+ # config.assets.digest = true
22
22
 
23
23
  # Defaults to nil and saved in location specified by config.assets.prefix
24
24
  # config.assets.manifest = YOUR_PATH
@@ -8,12 +8,14 @@ Dummy::Application.configure do
8
8
  config.cache_classes = true
9
9
 
10
10
  # Configure static asset server for tests with Cache-Control for performance
11
- config.serve_static_assets = true
11
+ config.serve_static_files = true
12
12
  config.static_cache_control = "public, max-age=3600"
13
13
 
14
14
  # Log error messages when you accidentally call methods on nil
15
15
  config.whiny_nils = true
16
16
 
17
+ config.eager_load = false
18
+
17
19
  # Show full error reports and disable caching
18
20
  config.consider_all_requests_local = true
19
21
  config.action_controller.perform_caching = false
@@ -4,4 +4,4 @@
4
4
  # If you change this key, all old signed cookies will become invalid!
5
5
  # Make sure the secret is at least 30 characters and all random,
6
6
  # no regular words or you'll be exposed to dictionary attacks.
7
- Dummy::Application.config.secret_token = 'e97477ac3148a7b2c8db5a154bd9718e0c84a3e383dd2c74c4b37313fe6a9462303821783931c1644b66ff28144fa3e77389bc5b8311ac4371951473791e82f2'
7
+ Dummy::Application.config.secret_key_base = 'e97477ac3148a7b2c8db5a154bd9718e0c84a3e383dd2c74c4b37313fe6a9462303821783931c1644b66ff28144fa3e77389bc5b8311ac4371951473791e82f2'
@@ -1725,3 +1725,832 @@ Completed 200 OK in 1ms (Views: 0.3ms)
1725
1725
  Started GET "/status.json" for 127.0.0.1 at 2013-10-14 09:51:28 -0500
1726
1726
  Processing by AppStatus::StatusController#index as JSON
1727
1727
  Completed 200 OK in 1ms (Views: 0.2ms)
1728
+ Started GET "/status" for 127.0.0.1 at 2015-05-18 16:49:50 -0500
1729
+ Processing by AppStatus::StatusController#index as JSON
1730
+ Completed 200 OK in 3ms (Views: 0.3ms)
1731
+ Started GET "/status/index.html" for 127.0.0.1 at 2015-05-18 16:49:50 -0500
1732
+ Processing by AppStatus::StatusController#index as HTML
1733
+ Rendered /Users/alex/Code/app_status/app/views/app_status/status/index.html.erb within layouts/application (90.2ms)
1734
+ Completed 200 OK in 114ms (Views: 113.6ms)
1735
+ Started GET "/status.html" for 127.0.0.1 at 2015-05-18 16:49:50 -0500
1736
+ Processing by AppStatus::StatusController#index as HTML
1737
+ Rendered /Users/alex/Code/app_status/app/views/app_status/status/index.html.erb within layouts/application (1.6ms)
1738
+ Completed 200 OK in 3ms (Views: 2.5ms)
1739
+ Started GET "/status.html" for 127.0.0.1 at 2015-05-18 16:49:50 -0500
1740
+ Processing by AppStatus::StatusController#index as HTML
1741
+ Rendered /Users/alex/Code/app_status/app/views/app_status/status/index.html.erb within layouts/application (1.4ms)
1742
+ Completed 200 OK in 3ms (Views: 2.3ms)
1743
+ Started GET "/status.html" for 127.0.0.1 at 2015-05-18 16:49:50 -0500
1744
+ Processing by AppStatus::StatusController#index as HTML
1745
+ Rendered /Users/alex/Code/app_status/app/views/app_status/status/index.html.erb within layouts/application (1.5ms)
1746
+ Completed 200 OK in 17ms (Views: 16.9ms)
1747
+ Started GET "/status/index.json" for 127.0.0.1 at 2015-05-18 16:49:50 -0500
1748
+ Processing by AppStatus::StatusController#index as JSON
1749
+ Completed 200 OK in 1ms (Views: 0.3ms)
1750
+ Started GET "/status.json" for 127.0.0.1 at 2015-05-18 16:49:50 -0500
1751
+ Processing by AppStatus::StatusController#index as JSON
1752
+ Completed 200 OK in 1ms (Views: 0.2ms)
1753
+ Started GET "/status.json" for 127.0.0.1 at 2015-05-18 16:49:50 -0500
1754
+ Processing by AppStatus::StatusController#index as JSON
1755
+ Completed 200 OK in 1ms (Views: 0.3ms)
1756
+ Started GET "/status.json" for 127.0.0.1 at 2015-05-18 16:49:50 -0500
1757
+ Processing by AppStatus::StatusController#index as JSON
1758
+ Completed 200 OK in 1ms (Views: 0.2ms)
1759
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:14:27 -0500
1760
+ Processing by AppStatus::StatusController#index as JSON
1761
+ Completed 500 Internal Server Error in 0ms
1762
+ Started GET "/status.html" for 127.0.0.1 at 2016-10-05 14:14:27 -0500
1763
+ Processing by AppStatus::StatusController#index as HTML
1764
+ Completed 500 Internal Server Error in 0ms
1765
+ Started GET "/status.html" for 127.0.0.1 at 2016-10-05 14:14:27 -0500
1766
+ Processing by AppStatus::StatusController#index as HTML
1767
+ Completed 500 Internal Server Error in 0ms
1768
+ Started GET "/status.html" for 127.0.0.1 at 2016-10-05 14:14:27 -0500
1769
+ Processing by AppStatus::StatusController#index as HTML
1770
+ Completed 500 Internal Server Error in 0ms
1771
+ Started GET "/status/index.html" for 127.0.0.1 at 2016-10-05 14:14:27 -0500
1772
+ Processing by AppStatus::StatusController#index as HTML
1773
+ Completed 500 Internal Server Error in 0ms
1774
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:14:27 -0500
1775
+ Processing by AppStatus::StatusController#index as JSON
1776
+ Completed 500 Internal Server Error in 0ms
1777
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:14:27 -0500
1778
+ Processing by AppStatus::StatusController#index as JSON
1779
+ Completed 500 Internal Server Error in 0ms
1780
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:14:27 -0500
1781
+ Processing by AppStatus::StatusController#index as JSON
1782
+ Completed 500 Internal Server Error in 0ms
1783
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:14:27 -0500
1784
+ Processing by AppStatus::StatusController#index as JSON
1785
+ Completed 500 Internal Server Error in 0ms
1786
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:15:30 -0500
1787
+ Processing by AppStatus::StatusController#index as JSON
1788
+ Completed 200 OK in 4ms (Views: 0.3ms)
1789
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:15:30 -0500
1790
+ Processing by AppStatus::StatusController#index as JSON
1791
+ Completed 200 OK in 0ms (Views: 0.2ms)
1792
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:15:30 -0500
1793
+ Processing by AppStatus::StatusController#index as JSON
1794
+ Completed 200 OK in 0ms (Views: 0.2ms)
1795
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:15:30 -0500
1796
+ Processing by AppStatus::StatusController#index as JSON
1797
+ Completed 200 OK in 0ms (Views: 0.2ms)
1798
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:15:30 -0500
1799
+ Processing by AppStatus::StatusController#index as JSON
1800
+ Completed 200 OK in 0ms (Views: 0.1ms)
1801
+ Started GET "/status/index.html" for 127.0.0.1 at 2016-10-05 14:15:30 -0500
1802
+ Processing by AppStatus::StatusController#index as HTML
1803
+ Completed 200 OK in 0ms (Views: 0.1ms)
1804
+ Started GET "/status.html" for 127.0.0.1 at 2016-10-05 14:15:30 -0500
1805
+ Processing by AppStatus::StatusController#index as HTML
1806
+ Completed 200 OK in 0ms (Views: 0.2ms)
1807
+ Started GET "/status.html" for 127.0.0.1 at 2016-10-05 14:15:30 -0500
1808
+ Processing by AppStatus::StatusController#index as HTML
1809
+ Completed 200 OK in 0ms (Views: 0.2ms)
1810
+ Started GET "/status.html" for 127.0.0.1 at 2016-10-05 14:15:30 -0500
1811
+ Processing by AppStatus::StatusController#index as HTML
1812
+ Completed 200 OK in 0ms (Views: 0.2ms)
1813
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:16:24 -0500
1814
+ Processing by AppStatus::StatusController#index as JSON
1815
+ Completed 200 OK in 1ms (Views: 0.2ms)
1816
+ Started GET "/status.html" for 127.0.0.1 at 2016-10-05 14:16:24 -0500
1817
+ Processing by AppStatus::StatusController#index as HTML
1818
+ Completed 200 OK in 0ms (Views: 0.2ms)
1819
+ Started GET "/status/index.html" for 127.0.0.1 at 2016-10-05 14:16:24 -0500
1820
+ Processing by AppStatus::StatusController#index as HTML
1821
+ Completed 200 OK in 0ms (Views: 0.2ms)
1822
+ Started GET "/status.html" for 127.0.0.1 at 2016-10-05 14:16:24 -0500
1823
+ Processing by AppStatus::StatusController#index as HTML
1824
+ Completed 200 OK in 0ms (Views: 0.1ms)
1825
+ Started GET "/status.html" for 127.0.0.1 at 2016-10-05 14:16:24 -0500
1826
+ Processing by AppStatus::StatusController#index as HTML
1827
+ Completed 200 OK in 1ms (Views: 0.5ms)
1828
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:16:24 -0500
1829
+ Processing by AppStatus::StatusController#index as JSON
1830
+ Completed 200 OK in 0ms (Views: 0.2ms)
1831
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:16:24 -0500
1832
+ Processing by AppStatus::StatusController#index as JSON
1833
+ Completed 200 OK in 0ms (Views: 0.2ms)
1834
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:16:24 -0500
1835
+ Processing by AppStatus::StatusController#index as JSON
1836
+ Completed 200 OK in 0ms (Views: 0.1ms)
1837
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:16:24 -0500
1838
+ Processing by AppStatus::StatusController#index as JSON
1839
+ Completed 200 OK in 0ms (Views: 0.1ms)
1840
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:16:59 -0500
1841
+ Processing by AppStatus::StatusController#index as JSON
1842
+ Completed 200 OK in 1ms (Views: 0.3ms)
1843
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:16:59 -0500
1844
+ Processing by AppStatus::StatusController#index as JSON
1845
+ Completed 200 OK in 0ms (Views: 0.2ms)
1846
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:16:59 -0500
1847
+ Processing by AppStatus::StatusController#index as JSON
1848
+ Completed 200 OK in 0ms (Views: 0.2ms)
1849
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:16:59 -0500
1850
+ Processing by AppStatus::StatusController#index as JSON
1851
+ Completed 200 OK in 0ms (Views: 0.2ms)
1852
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:16:59 -0500
1853
+ Processing by AppStatus::StatusController#index as JSON
1854
+ Completed 200 OK in 0ms (Views: 0.2ms)
1855
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:17:33 -0500
1856
+ Processing by AppStatus::StatusController#index as JSON
1857
+ Completed 200 OK in 1ms (Views: 0.3ms)
1858
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:17:33 -0500
1859
+ Processing by AppStatus::StatusController#index as JSON
1860
+ Completed 200 OK in 0ms (Views: 0.2ms)
1861
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:17:33 -0500
1862
+ Processing by AppStatus::StatusController#index as JSON
1863
+ Completed 200 OK in 0ms (Views: 0.2ms)
1864
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:17:33 -0500
1865
+ Processing by AppStatus::StatusController#index as JSON
1866
+ Completed 200 OK in 0ms (Views: 0.2ms)
1867
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:17:33 -0500
1868
+ Processing by AppStatus::StatusController#index as JSON
1869
+ Completed 200 OK in 0ms (Views: 0.1ms)
1870
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:17:55 -0500
1871
+ Processing by AppStatus::StatusController#index as JSON
1872
+ Completed 200 OK in 1ms (Views: 0.2ms)
1873
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:17:55 -0500
1874
+ Processing by AppStatus::StatusController#index as JSON
1875
+ Completed 200 OK in 0ms (Views: 0.1ms)
1876
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:17:55 -0500
1877
+ Processing by AppStatus::StatusController#index as JSON
1878
+ Completed 200 OK in 0ms (Views: 0.1ms)
1879
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:17:55 -0500
1880
+ Processing by AppStatus::StatusController#index as JSON
1881
+ Completed 200 OK in 0ms (Views: 0.2ms)
1882
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:17:55 -0500
1883
+ Processing by AppStatus::StatusController#index as JSON
1884
+ Completed 200 OK in 0ms (Views: 0.1ms)
1885
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:26:23 -0500
1886
+ Processing by AppStatus::StatusController#index as JSON
1887
+ Completed 200 OK in 1ms (Views: 0.2ms)
1888
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:26:23 -0500
1889
+ Processing by AppStatus::StatusController#index as JSON
1890
+ Completed 200 OK in 0ms (Views: 0.1ms)
1891
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:26:23 -0500
1892
+ Processing by AppStatus::StatusController#index as JSON
1893
+ Completed 200 OK in 0ms (Views: 0.2ms)
1894
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:26:23 -0500
1895
+ Processing by AppStatus::StatusController#index as JSON
1896
+ Completed 200 OK in 0ms (Views: 0.2ms)
1897
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:26:23 -0500
1898
+ Processing by AppStatus::StatusController#index as JSON
1899
+ Completed 200 OK in 0ms (Views: 0.2ms)
1900
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:26:52 -0500
1901
+ Processing by AppStatus::StatusController#index as JSON
1902
+ Completed 200 OK in 1ms (Views: 0.2ms)
1903
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:26:52 -0500
1904
+ Processing by AppStatus::StatusController#index as JSON
1905
+ Completed 200 OK in 0ms (Views: 0.2ms)
1906
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:26:52 -0500
1907
+ Processing by AppStatus::StatusController#index as JSON
1908
+ Completed 200 OK in 0ms (Views: 0.2ms)
1909
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:26:52 -0500
1910
+ Processing by AppStatus::StatusController#index as JSON
1911
+ Completed 200 OK in 0ms (Views: 0.2ms)
1912
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:26:52 -0500
1913
+ Processing by AppStatus::StatusController#index as JSON
1914
+ Completed 200 OK in 0ms (Views: 0.2ms)
1915
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:27:39 -0500
1916
+ Processing by AppStatus::StatusController#index as JSON
1917
+ Completed 200 OK in 1ms (Views: 0.2ms)
1918
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:27:39 -0500
1919
+ Processing by AppStatus::StatusController#index as JSON
1920
+ Completed 200 OK in 0ms (Views: 0.2ms)
1921
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:27:39 -0500
1922
+ Processing by AppStatus::StatusController#index as JSON
1923
+ Completed 200 OK in 0ms (Views: 0.1ms)
1924
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:27:39 -0500
1925
+ Processing by AppStatus::StatusController#index as JSON
1926
+ Completed 200 OK in 0ms (Views: 0.2ms)
1927
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:27:39 -0500
1928
+ Processing by AppStatus::StatusController#index as JSON
1929
+ Completed 200 OK in 0ms (Views: 0.2ms)
1930
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:29:37 -0500
1931
+ Processing by AppStatus::StatusController#index as JSON
1932
+ Completed 200 OK in 1ms (Views: 0.2ms)
1933
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:29:37 -0500
1934
+ Processing by AppStatus::StatusController#index as JSON
1935
+ Completed 200 OK in 0ms (Views: 0.1ms)
1936
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:29:37 -0500
1937
+ Processing by AppStatus::StatusController#index as JSON
1938
+ Completed 200 OK in 0ms (Views: 0.1ms)
1939
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:29:37 -0500
1940
+ Processing by AppStatus::StatusController#index as JSON
1941
+ Completed 200 OK in 0ms (Views: 0.2ms)
1942
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:29:37 -0500
1943
+ Processing by AppStatus::StatusController#index as JSON
1944
+ Completed 200 OK in 0ms (Views: 0.2ms)
1945
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2016-10-05 14:29:37 -0500
1946
+ Processing by AppStatus::StatusController#index as JSON
1947
+ Parameters: {"descriptions"=>"1"}
1948
+ Completed 200 OK in 1ms (Views: 0.4ms)
1949
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:29:48 -0500
1950
+ Processing by AppStatus::StatusController#index as JSON
1951
+ Completed 200 OK in 1ms (Views: 0.2ms)
1952
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:29:48 -0500
1953
+ Processing by AppStatus::StatusController#index as JSON
1954
+ Completed 200 OK in 0ms (Views: 0.2ms)
1955
+ Started GET "/status.json?descrisptions=1" for 127.0.0.1 at 2016-10-05 14:29:48 -0500
1956
+ Processing by AppStatus::StatusController#index as JSON
1957
+ Parameters: {"descrisptions"=>"1"}
1958
+ Completed 200 OK in 0ms (Views: 0.1ms)
1959
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:29:48 -0500
1960
+ Processing by AppStatus::StatusController#index as JSON
1961
+ Completed 200 OK in 0ms (Views: 0.2ms)
1962
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:29:48 -0500
1963
+ Processing by AppStatus::StatusController#index as JSON
1964
+ Completed 200 OK in 0ms (Views: 0.1ms)
1965
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:29:48 -0500
1966
+ Processing by AppStatus::StatusController#index as JSON
1967
+ Completed 200 OK in 0ms (Views: 0.2ms)
1968
+ Started GET "/status" for 127.0.0.1 at 2016-10-05 14:29:54 -0500
1969
+ Processing by AppStatus::StatusController#index as JSON
1970
+ Completed 200 OK in 1ms (Views: 0.2ms)
1971
+ Started GET "/status/index.json" for 127.0.0.1 at 2016-10-05 14:29:54 -0500
1972
+ Processing by AppStatus::StatusController#index as JSON
1973
+ Completed 200 OK in 0ms (Views: 0.2ms)
1974
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:29:54 -0500
1975
+ Processing by AppStatus::StatusController#index as JSON
1976
+ Completed 200 OK in 0ms (Views: 0.1ms)
1977
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:29:54 -0500
1978
+ Processing by AppStatus::StatusController#index as JSON
1979
+ Completed 200 OK in 0ms (Views: 0.1ms)
1980
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2016-10-05 14:29:54 -0500
1981
+ Processing by AppStatus::StatusController#index as JSON
1982
+ Parameters: {"descriptions"=>"1"}
1983
+ Completed 200 OK in 0ms (Views: 0.2ms)
1984
+ Started GET "/status.json" for 127.0.0.1 at 2016-10-05 14:29:54 -0500
1985
+ Processing by AppStatus::StatusController#index as JSON
1986
+ Completed 200 OK in 0ms (Views: 0.1ms)
1987
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:14:29 -0600
1988
+ Processing by AppStatus::StatusController#index as JSON
1989
+ Completed 200 OK in 4ms (Views: 0.8ms)
1990
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:14:29 -0600
1991
+ Processing by AppStatus::StatusController#index as JSON
1992
+ Completed 200 OK in 1ms (Views: 0.2ms)
1993
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:14:29 -0600
1994
+ Processing by AppStatus::StatusController#index as JSON
1995
+ Parameters: {"descriptions"=>"1"}
1996
+ Completed 200 OK in 1ms (Views: 0.2ms)
1997
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:14:29 -0600
1998
+ Processing by AppStatus::StatusController#index as JSON
1999
+ Completed 200 OK in 1ms (Views: 0.2ms)
2000
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:14:29 -0600
2001
+ Processing by AppStatus::StatusController#index as JSON
2002
+ Completed 200 OK in 0ms (Views: 0.2ms)
2003
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:14:29 -0600
2004
+ Processing by AppStatus::StatusController#index as JSON
2005
+ Completed 200 OK in 0ms (Views: 0.2ms)
2006
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:15:41 -0600
2007
+ Processing by AppStatus::StatusController#index as JSON
2008
+ Completed 200 OK in 2ms (Views: 0.3ms)
2009
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:15:41 -0600
2010
+ Processing by AppStatus::StatusController#index as JSON
2011
+ Completed 200 OK in 0ms (Views: 0.2ms)
2012
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:15:41 -0600
2013
+ Processing by AppStatus::StatusController#index as JSON
2014
+ Parameters: {"descriptions"=>"1"}
2015
+ Completed 200 OK in 0ms (Views: 0.2ms)
2016
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:15:41 -0600
2017
+ Processing by AppStatus::StatusController#index as JSON
2018
+ Completed 200 OK in 0ms (Views: 0.2ms)
2019
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:15:41 -0600
2020
+ Processing by AppStatus::StatusController#index as JSON
2021
+ Completed 200 OK in 0ms (Views: 0.2ms)
2022
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:15:41 -0600
2023
+ Processing by AppStatus::StatusController#index as JSON
2024
+ Completed 200 OK in 0ms (Views: 0.2ms)
2025
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:16:21 -0600
2026
+ Processing by AppStatus::StatusController#index as JSON
2027
+ Completed 200 OK in 2ms (Views: 0.3ms)
2028
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:16:21 -0600
2029
+ Processing by AppStatus::StatusController#index as JSON
2030
+ Completed 200 OK in 1ms (Views: 0.2ms)
2031
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:16:21 -0600
2032
+ Processing by AppStatus::StatusController#index as JSON
2033
+ Completed 200 OK in 0ms (Views: 0.2ms)
2034
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:16:21 -0600
2035
+ Processing by AppStatus::StatusController#index as JSON
2036
+ Completed 200 OK in 1ms (Views: 0.2ms)
2037
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:16:21 -0600
2038
+ Processing by AppStatus::StatusController#index as JSON
2039
+ Completed 200 OK in 0ms (Views: 0.2ms)
2040
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:16:21 -0600
2041
+ Processing by AppStatus::StatusController#index as JSON
2042
+ Parameters: {"descriptions"=>"1"}
2043
+ Completed 200 OK in 0ms (Views: 0.2ms)
2044
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:16:51 -0600
2045
+ Processing by AppStatus::StatusController#index as JSON
2046
+ Completed 200 OK in 2ms (Views: 0.3ms)
2047
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:16:51 -0600
2048
+ Processing by AppStatus::StatusController#index as JSON
2049
+ Completed 200 OK in 0ms (Views: 0.2ms)
2050
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:16:51 -0600
2051
+ Processing by AppStatus::StatusController#index as JSON
2052
+ Completed 200 OK in 0ms (Views: 0.2ms)
2053
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:16:51 -0600
2054
+ Processing by AppStatus::StatusController#index as JSON
2055
+ Parameters: {"descriptions"=>"1"}
2056
+ Completed 200 OK in 0ms (Views: 0.2ms)
2057
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:16:51 -0600
2058
+ Processing by AppStatus::StatusController#index as JSON
2059
+ Completed 200 OK in 0ms (Views: 0.2ms)
2060
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:16:51 -0600
2061
+ Processing by AppStatus::StatusController#index as JSON
2062
+ Completed 200 OK in 0ms (Views: 0.2ms)
2063
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:17:20 -0600
2064
+ Processing by AppStatus::StatusController#index as JSON
2065
+ Completed 200 OK in 2ms (Views: 0.3ms)
2066
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:17:20 -0600
2067
+ Processing by AppStatus::StatusController#index as JSON
2068
+ Parameters: {"descriptions"=>"1"}
2069
+ Completed 200 OK in 0ms (Views: 0.2ms)
2070
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:17:20 -0600
2071
+ Processing by AppStatus::StatusController#index as JSON
2072
+ Completed 200 OK in 0ms (Views: 0.2ms)
2073
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:17:20 -0600
2074
+ Processing by AppStatus::StatusController#index as JSON
2075
+ Completed 200 OK in 0ms (Views: 0.2ms)
2076
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:17:20 -0600
2077
+ Processing by AppStatus::StatusController#index as JSON
2078
+ Completed 200 OK in 0ms (Views: 0.2ms)
2079
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:17:20 -0600
2080
+ Processing by AppStatus::StatusController#index as JSON
2081
+ Completed 200 OK in 0ms (Views: 0.2ms)
2082
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:17:48 -0600
2083
+ Processing by AppStatus::StatusController#index as JSON
2084
+ Completed 200 OK in 2ms (Views: 0.3ms)
2085
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:17:48 -0600
2086
+ Processing by AppStatus::StatusController#index as JSON
2087
+ Completed 200 OK in 0ms (Views: 0.2ms)
2088
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:17:48 -0600
2089
+ Processing by AppStatus::StatusController#index as JSON
2090
+ Completed 200 OK in 0ms (Views: 0.2ms)
2091
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:17:48 -0600
2092
+ Processing by AppStatus::StatusController#index as JSON
2093
+ Completed 200 OK in 0ms (Views: 0.2ms)
2094
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:17:48 -0600
2095
+ Processing by AppStatus::StatusController#index as JSON
2096
+ Completed 200 OK in 0ms (Views: 0.2ms)
2097
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:17:48 -0600
2098
+ Processing by AppStatus::StatusController#index as JSON
2099
+ Parameters: {"descriptions"=>"1"}
2100
+ Completed 200 OK in 0ms (Views: 0.2ms)
2101
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:19:25 -0600
2102
+ Processing by AppStatus::StatusController#index as JSON
2103
+ Completed 200 OK in 2ms (Views: 0.3ms)
2104
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:19:25 -0600
2105
+ Processing by AppStatus::StatusController#index as JSON
2106
+ Completed 200 OK in 0ms (Views: 0.2ms)
2107
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:19:25 -0600
2108
+ Processing by AppStatus::StatusController#index as JSON
2109
+ Parameters: {"descriptions"=>"1"}
2110
+ Completed 200 OK in 0ms (Views: 0.2ms)
2111
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:19:25 -0600
2112
+ Processing by AppStatus::StatusController#index as JSON
2113
+ Completed 200 OK in 0ms (Views: 0.2ms)
2114
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:19:25 -0600
2115
+ Processing by AppStatus::StatusController#index as JSON
2116
+ Completed 200 OK in 0ms (Views: 0.2ms)
2117
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:19:25 -0600
2118
+ Processing by AppStatus::StatusController#index as JSON
2119
+ Completed 200 OK in 6ms (Views: 0.3ms)
2120
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:20:00 -0600
2121
+ Processing by AppStatus::StatusController#index as JSON
2122
+ Completed 200 OK in 2ms (Views: 0.3ms)
2123
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:20:00 -0600
2124
+ Processing by AppStatus::StatusController#index as JSON
2125
+ Parameters: {"descriptions"=>"1"}
2126
+ Completed 200 OK in 0ms (Views: 0.2ms)
2127
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:00 -0600
2128
+ Processing by AppStatus::StatusController#index as JSON
2129
+ Completed 200 OK in 0ms (Views: 0.2ms)
2130
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:00 -0600
2131
+ Processing by AppStatus::StatusController#index as JSON
2132
+ Completed 200 OK in 0ms (Views: 0.2ms)
2133
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:20:00 -0600
2134
+ Processing by AppStatus::StatusController#index as JSON
2135
+ Completed 200 OK in 0ms (Views: 0.2ms)
2136
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:00 -0600
2137
+ Processing by AppStatus::StatusController#index as JSON
2138
+ Completed 200 OK in 0ms (Views: 0.2ms)
2139
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:20:11 -0600
2140
+ Processing by AppStatus::StatusController#index as JSON
2141
+ Completed 200 OK in 2ms (Views: 0.4ms)
2142
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:11 -0600
2143
+ Processing by AppStatus::StatusController#index as JSON
2144
+ Completed 200 OK in 1ms (Views: 0.2ms)
2145
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:11 -0600
2146
+ Processing by AppStatus::StatusController#index as JSON
2147
+ Completed 200 OK in 0ms (Views: 0.2ms)
2148
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:20:11 -0600
2149
+ Processing by AppStatus::StatusController#index as JSON
2150
+ Completed 200 OK in 0ms (Views: 0.2ms)
2151
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:20:11 -0600
2152
+ Processing by AppStatus::StatusController#index as JSON
2153
+ Parameters: {"descriptions"=>"1"}
2154
+ Completed 200 OK in 0ms (Views: 0.2ms)
2155
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:11 -0600
2156
+ Processing by AppStatus::StatusController#index as JSON
2157
+ Completed 200 OK in 0ms (Views: 0.2ms)
2158
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:20:26 -0600
2159
+ Processing by AppStatus::StatusController#index as JSON
2160
+ Completed 200 OK in 2ms (Views: 0.3ms)
2161
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:20:26 -0600
2162
+ Processing by AppStatus::StatusController#index as JSON
2163
+ Completed 200 OK in 1ms (Views: 0.2ms)
2164
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:26 -0600
2165
+ Processing by AppStatus::StatusController#index as JSON
2166
+ Completed 200 OK in 0ms (Views: 0.2ms)
2167
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:26 -0600
2168
+ Processing by AppStatus::StatusController#index as JSON
2169
+ Completed 200 OK in 0ms (Views: 0.2ms)
2170
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:20:26 -0600
2171
+ Processing by AppStatus::StatusController#index as JSON
2172
+ Parameters: {"descriptions"=>"1"}
2173
+ Completed 200 OK in 0ms (Views: 0.2ms)
2174
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:26 -0600
2175
+ Processing by AppStatus::StatusController#index as JSON
2176
+ Completed 200 OK in 0ms (Views: 0.2ms)
2177
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:20:46 -0600
2178
+ Processing by AppStatus::StatusController#index as JSON
2179
+ Completed 200 OK in 2ms (Views: 0.3ms)
2180
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:20:46 -0600
2181
+ Processing by AppStatus::StatusController#index as JSON
2182
+ Parameters: {"descriptions"=>"1"}
2183
+ Completed 200 OK in 1ms (Views: 0.2ms)
2184
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:46 -0600
2185
+ Processing by AppStatus::StatusController#index as JSON
2186
+ Completed 200 OK in 0ms (Views: 0.2ms)
2187
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:46 -0600
2188
+ Processing by AppStatus::StatusController#index as JSON
2189
+ Completed 200 OK in 0ms (Views: 0.2ms)
2190
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:20:46 -0600
2191
+ Processing by AppStatus::StatusController#index as JSON
2192
+ Completed 200 OK in 0ms (Views: 0.2ms)
2193
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:46 -0600
2194
+ Processing by AppStatus::StatusController#index as JSON
2195
+ Completed 200 OK in 0ms (Views: 0.2ms)
2196
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:20:59 -0600
2197
+ Processing by AppStatus::StatusController#index as JSON
2198
+ Completed 200 OK in 2ms (Views: 0.4ms)
2199
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:20:59 -0600
2200
+ Processing by AppStatus::StatusController#index as JSON
2201
+ Completed 200 OK in 1ms (Views: 0.2ms)
2202
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:59 -0600
2203
+ Processing by AppStatus::StatusController#index as JSON
2204
+ Completed 200 OK in 0ms (Views: 0.2ms)
2205
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:59 -0600
2206
+ Processing by AppStatus::StatusController#index as JSON
2207
+ Completed 200 OK in 1ms (Views: 0.2ms)
2208
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:20:59 -0600
2209
+ Processing by AppStatus::StatusController#index as JSON
2210
+ Parameters: {"descriptions"=>"1"}
2211
+ Completed 200 OK in 0ms (Views: 0.2ms)
2212
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:20:59 -0600
2213
+ Processing by AppStatus::StatusController#index as JSON
2214
+ Completed 200 OK in 0ms (Views: 0.2ms)
2215
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:23:44 -0600
2216
+ Processing by AppStatus::StatusController#index as JSON
2217
+ Completed 200 OK in 2ms (Views: 0.4ms)
2218
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:23:44 -0600
2219
+ Processing by AppStatus::StatusController#index as JSON
2220
+ Completed 200 OK in 1ms (Views: 0.2ms)
2221
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:23:44 -0600
2222
+ Processing by AppStatus::StatusController#index as JSON
2223
+ Completed 200 OK in 1ms (Views: 0.2ms)
2224
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:23:44 -0600
2225
+ Processing by AppStatus::StatusController#index as JSON
2226
+ Parameters: {"descriptions"=>"1"}
2227
+ Completed 200 OK in 0ms (Views: 0.2ms)
2228
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:23:44 -0600
2229
+ Processing by AppStatus::StatusController#index as JSON
2230
+ Completed 200 OK in 0ms (Views: 0.2ms)
2231
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:23:44 -0600
2232
+ Processing by AppStatus::StatusController#index as JSON
2233
+ Completed 200 OK in 0ms (Views: 0.2ms)
2234
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:24:02 -0600
2235
+ Processing by AppStatus::StatusController#index as JSON
2236
+ Completed 200 OK in 2ms (Views: 0.3ms)
2237
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:24:02 -0600
2238
+ Processing by AppStatus::StatusController#index as JSON
2239
+ Completed 200 OK in 0ms (Views: 0.2ms)
2240
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:24:02 -0600
2241
+ Processing by AppStatus::StatusController#index as JSON
2242
+ Completed 200 OK in 0ms (Views: 0.2ms)
2243
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:24:02 -0600
2244
+ Processing by AppStatus::StatusController#index as JSON
2245
+ Parameters: {"descriptions"=>"1"}
2246
+ Completed 200 OK in 0ms (Views: 0.2ms)
2247
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:24:02 -0600
2248
+ Processing by AppStatus::StatusController#index as JSON
2249
+ Completed 200 OK in 0ms (Views: 0.2ms)
2250
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:24:02 -0600
2251
+ Processing by AppStatus::StatusController#index as JSON
2252
+ Completed 200 OK in 0ms (Views: 0.2ms)
2253
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:25:50 -0600
2254
+ Processing by AppStatus::StatusController#index as JSON
2255
+ Completed 200 OK in 2ms (Views: 0.3ms)
2256
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:25:50 -0600
2257
+ Processing by AppStatus::StatusController#index as JSON
2258
+ Completed 200 OK in 0ms (Views: 0.1ms)
2259
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:25:50 -0600
2260
+ Processing by AppStatus::StatusController#index as JSON
2261
+ Completed 200 OK in 0ms (Views: 0.1ms)
2262
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:25:50 -0600
2263
+ Processing by AppStatus::StatusController#index as JSON
2264
+ Completed 200 OK in 0ms (Views: 0.1ms)
2265
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:25:50 -0600
2266
+ Processing by AppStatus::StatusController#index as JSON
2267
+ Parameters: {"descriptions"=>"1"}
2268
+ Completed 200 OK in 6ms (Views: 5.6ms)
2269
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:25:50 -0600
2270
+ Processing by AppStatus::StatusController#index as JSON
2271
+ Completed 200 OK in 1ms (Views: 0.2ms)
2272
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:28:10 -0600
2273
+ Processing by AppStatus::StatusController#index as JSON
2274
+ Completed 200 OK in 2ms (Views: 0.3ms)
2275
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:28:10 -0600
2276
+ Processing by AppStatus::StatusController#index as JSON
2277
+ Completed 200 OK in 0ms (Views: 0.2ms)
2278
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:28:10 -0600
2279
+ Processing by AppStatus::StatusController#index as JSON
2280
+ Completed 200 OK in 0ms (Views: 0.2ms)
2281
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:28:10 -0600
2282
+ Processing by AppStatus::StatusController#index as JSON
2283
+ Parameters: {"descriptions"=>"1"}
2284
+ Completed 200 OK in 0ms (Views: 0.2ms)
2285
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:28:10 -0600
2286
+ Processing by AppStatus::StatusController#index as JSON
2287
+ Completed 200 OK in 6ms (Views: 5.5ms)
2288
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:28:10 -0600
2289
+ Processing by AppStatus::StatusController#index as JSON
2290
+ Completed 200 OK in 1ms (Views: 0.3ms)
2291
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:29:10 -0600
2292
+ Processing by AppStatus::StatusController#index as JSON
2293
+ Completed 200 OK in 2ms (Views: 0.3ms)
2294
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:29:10 -0600
2295
+ Processing by AppStatus::StatusController#index as JSON
2296
+ Completed 200 OK in 0ms (Views: 0.2ms)
2297
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:29:10 -0600
2298
+ Processing by AppStatus::StatusController#index as JSON
2299
+ Parameters: {"descriptions"=>"1"}
2300
+ Completed 200 OK in 0ms (Views: 0.2ms)
2301
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:29:10 -0600
2302
+ Processing by AppStatus::StatusController#index as JSON
2303
+ Completed 200 OK in 0ms (Views: 0.1ms)
2304
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:29:10 -0600
2305
+ Processing by AppStatus::StatusController#index as JSON
2306
+ Completed 200 OK in 1ms (Views: 0.2ms)
2307
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:29:10 -0600
2308
+ Processing by AppStatus::StatusController#index as JSON
2309
+ Completed 200 OK in 1ms (Views: 0.2ms)
2310
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:30:17 -0600
2311
+ Processing by AppStatus::StatusController#index as JSON
2312
+ Completed 200 OK in 2ms (Views: 0.3ms)
2313
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:30:17 -0600
2314
+ Processing by AppStatus::StatusController#index as JSON
2315
+ Completed 200 OK in 0ms (Views: 0.2ms)
2316
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:30:17 -0600
2317
+ Processing by AppStatus::StatusController#index as JSON
2318
+ Completed 200 OK in 0ms (Views: 0.2ms)
2319
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:30:17 -0600
2320
+ Processing by AppStatus::StatusController#index as JSON
2321
+ Completed 200 OK in 0ms (Views: 0.2ms)
2322
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:30:17 -0600
2323
+ Processing by AppStatus::StatusController#index as JSON
2324
+ Completed 200 OK in 6ms (Views: 5.5ms)
2325
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:30:17 -0600
2326
+ Processing by AppStatus::StatusController#index as JSON
2327
+ Parameters: {"descriptions"=>"1"}
2328
+ Completed 200 OK in 1ms (Views: 0.4ms)
2329
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:33:24 -0600
2330
+ Processing by AppStatus::StatusController#index as JSON
2331
+ Completed 200 OK in 1ms (Views: 0.3ms)
2332
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:33:24 -0600
2333
+ Processing by AppStatus::StatusController#index as JSON
2334
+ Completed 200 OK in 0ms (Views: 0.1ms)
2335
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:33:24 -0600
2336
+ Processing by AppStatus::StatusController#index as JSON
2337
+ Completed 200 OK in 0ms (Views: 0.1ms)
2338
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:33:24 -0600
2339
+ Processing by AppStatus::StatusController#index as JSON
2340
+ Completed 200 OK in 0ms (Views: 0.2ms)
2341
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:33:24 -0600
2342
+ Processing by AppStatus::StatusController#index as JSON
2343
+ Parameters: {"descriptions"=>"1"}
2344
+ Completed 200 OK in 1ms (Views: 0.2ms)
2345
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:33:24 -0600
2346
+ Processing by AppStatus::StatusController#index as JSON
2347
+ Completed 200 OK in 0ms (Views: 0.1ms)
2348
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:37:00 -0600
2349
+ Processing by AppStatus::StatusController#index as JSON
2350
+ Completed 200 OK in 2ms (Views: 0.4ms)
2351
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:37:00 -0600
2352
+ Processing by AppStatus::StatusController#index as JSON
2353
+ Completed 200 OK in 1ms (Views: 0.2ms)
2354
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:37:00 -0600
2355
+ Processing by AppStatus::StatusController#index as JSON
2356
+ Parameters: {"descriptions"=>"1"}
2357
+ Completed 200 OK in 1ms (Views: 0.2ms)
2358
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:37:00 -0600
2359
+ Processing by AppStatus::StatusController#index as JSON
2360
+ Completed 200 OK in 1ms (Views: 0.2ms)
2361
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:37:00 -0600
2362
+ Processing by AppStatus::StatusController#index as JSON
2363
+ Completed 200 OK in 0ms (Views: 0.2ms)
2364
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:37:00 -0600
2365
+ Processing by AppStatus::StatusController#index as JSON
2366
+ Completed 200 OK in 0ms (Views: 0.2ms)
2367
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:37:22 -0600
2368
+ Processing by AppStatus::StatusController#index as JSON
2369
+ Completed 200 OK in 2ms (Views: 0.4ms)
2370
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:37:22 -0600
2371
+ Processing by AppStatus::StatusController#index as JSON
2372
+ Completed 200 OK in 1ms (Views: 0.2ms)
2373
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:37:22 -0600
2374
+ Processing by AppStatus::StatusController#index as JSON
2375
+ Completed 200 OK in 0ms (Views: 0.2ms)
2376
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:37:22 -0600
2377
+ Processing by AppStatus::StatusController#index as JSON
2378
+ Completed 200 OK in 0ms (Views: 0.2ms)
2379
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:37:22 -0600
2380
+ Processing by AppStatus::StatusController#index as JSON
2381
+ Parameters: {"descriptions"=>"1"}
2382
+ Completed 200 OK in 1ms (Views: 0.3ms)
2383
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:37:22 -0600
2384
+ Processing by AppStatus::StatusController#index as JSON
2385
+ Completed 200 OK in 0ms (Views: 0.2ms)
2386
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:38:19 -0600
2387
+ Processing by AppStatus::StatusController#index as JSON
2388
+ Completed 200 OK in 2ms (Views: 0.3ms)
2389
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:38:19 -0600
2390
+ Processing by AppStatus::StatusController#index as JSON
2391
+ Completed 200 OK in 0ms (Views: 0.2ms)
2392
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:38:19 -0600
2393
+ Processing by AppStatus::StatusController#index as JSON
2394
+ Completed 200 OK in 0ms (Views: 0.2ms)
2395
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:38:19 -0600
2396
+ Processing by AppStatus::StatusController#index as JSON
2397
+ Completed 200 OK in 1ms (Views: 0.3ms)
2398
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:38:19 -0600
2399
+ Processing by AppStatus::StatusController#index as JSON
2400
+ Completed 200 OK in 0ms (Views: 0.2ms)
2401
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:38:19 -0600
2402
+ Processing by AppStatus::StatusController#index as JSON
2403
+ Parameters: {"descriptions"=>"1"}
2404
+ Completed 200 OK in 0ms (Views: 0.2ms)
2405
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:38:37 -0600
2406
+ Processing by AppStatus::StatusController#index as JSON
2407
+ Completed 200 OK in 2ms (Views: 0.3ms)
2408
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:38:37 -0600
2409
+ Processing by AppStatus::StatusController#index as JSON
2410
+ Parameters: {"descriptions"=>"1"}
2411
+ Completed 200 OK in 0ms (Views: 0.2ms)
2412
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:38:37 -0600
2413
+ Processing by AppStatus::StatusController#index as JSON
2414
+ Completed 200 OK in 1ms (Views: 0.2ms)
2415
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:38:37 -0600
2416
+ Processing by AppStatus::StatusController#index as JSON
2417
+ Completed 200 OK in 1ms (Views: 0.3ms)
2418
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:38:37 -0600
2419
+ Processing by AppStatus::StatusController#index as JSON
2420
+ Completed 200 OK in 1ms (Views: 0.2ms)
2421
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:38:37 -0600
2422
+ Processing by AppStatus::StatusController#index as JSON
2423
+ Completed 200 OK in 0ms (Views: 0.2ms)
2424
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:38:54 -0600
2425
+ Processing by AppStatus::StatusController#index as JSON
2426
+ Completed 200 OK in 2ms (Views: 0.3ms)
2427
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:38:54 -0600
2428
+ Processing by AppStatus::StatusController#index as JSON
2429
+ Completed 200 OK in 1ms (Views: 0.2ms)
2430
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:38:54 -0600
2431
+ Processing by AppStatus::StatusController#index as JSON
2432
+ Completed 200 OK in 0ms (Views: 0.2ms)
2433
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:38:54 -0600
2434
+ Processing by AppStatus::StatusController#index as JSON
2435
+ Parameters: {"descriptions"=>"1"}
2436
+ Completed 200 OK in 0ms (Views: 0.2ms)
2437
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:38:54 -0600
2438
+ Processing by AppStatus::StatusController#index as JSON
2439
+ Completed 200 OK in 2ms (Views: 0.4ms)
2440
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:38:54 -0600
2441
+ Processing by AppStatus::StatusController#index as JSON
2442
+ Completed 200 OK in 0ms (Views: 0.2ms)
2443
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:40:11 -0600
2444
+ Processing by AppStatus::StatusController#index as JSON
2445
+ Completed 200 OK in 2ms (Views: 0.3ms)
2446
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:40:11 -0600
2447
+ Processing by AppStatus::StatusController#index as JSON
2448
+ Completed 200 OK in 1ms (Views: 0.2ms)
2449
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:40:11 -0600
2450
+ Processing by AppStatus::StatusController#index as JSON
2451
+ Completed 200 OK in 1ms (Views: 0.2ms)
2452
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:40:11 -0600
2453
+ Processing by AppStatus::StatusController#index as JSON
2454
+ Parameters: {"descriptions"=>"1"}
2455
+ Completed 200 OK in 1ms (Views: 0.2ms)
2456
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:40:11 -0600
2457
+ Processing by AppStatus::StatusController#index as JSON
2458
+ Completed 200 OK in 0ms (Views: 0.2ms)
2459
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:40:11 -0600
2460
+ Processing by AppStatus::StatusController#index as JSON
2461
+ Completed 200 OK in 1ms (Views: 0.2ms)
2462
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:48:03 -0600
2463
+ Processing by AppStatus::StatusController#index as JSON
2464
+ Completed 200 OK in 2ms (Views: 0.3ms)
2465
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:48:03 -0600
2466
+ Processing by AppStatus::StatusController#index as JSON
2467
+ Completed 200 OK in 0ms (Views: 0.2ms)
2468
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:48:03 -0600
2469
+ Processing by AppStatus::StatusController#index as JSON
2470
+ Parameters: {"descriptions"=>"1"}
2471
+ Completed 200 OK in 0ms (Views: 0.2ms)
2472
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:48:03 -0600
2473
+ Processing by AppStatus::StatusController#index as JSON
2474
+ Completed 200 OK in 0ms (Views: 0.2ms)
2475
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:48:03 -0600
2476
+ Processing by AppStatus::StatusController#index as JSON
2477
+ Completed 200 OK in 0ms (Views: 0.2ms)
2478
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:48:03 -0600
2479
+ Processing by AppStatus::StatusController#index as JSON
2480
+ Completed 200 OK in 0ms (Views: 0.2ms)
2481
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:50:09 -0600
2482
+ Processing by AppStatus::StatusController#index as JSON
2483
+ Completed 200 OK in 2ms (Views: 0.3ms)
2484
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:50:09 -0600
2485
+ Processing by AppStatus::StatusController#index as JSON
2486
+ Completed 200 OK in 0ms (Views: 0.2ms)
2487
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:50:09 -0600
2488
+ Processing by AppStatus::StatusController#index as JSON
2489
+ Completed 200 OK in 0ms (Views: 0.2ms)
2490
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:50:09 -0600
2491
+ Processing by AppStatus::StatusController#index as JSON
2492
+ Completed 200 OK in 0ms (Views: 0.2ms)
2493
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:50:09 -0600
2494
+ Processing by AppStatus::StatusController#index as JSON
2495
+ Completed 200 OK in 0ms (Views: 0.2ms)
2496
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:50:09 -0600
2497
+ Processing by AppStatus::StatusController#index as JSON
2498
+ Parameters: {"descriptions"=>"1"}
2499
+ Completed 200 OK in 0ms (Views: 0.2ms)
2500
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:51:08 -0600
2501
+ Processing by AppStatus::StatusController#index as JSON
2502
+ Completed 200 OK in 2ms (Views: 0.3ms)
2503
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:51:08 -0600
2504
+ Processing by AppStatus::StatusController#index as JSON
2505
+ Completed 200 OK in 1ms (Views: 0.2ms)
2506
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:51:08 -0600
2507
+ Processing by AppStatus::StatusController#index as JSON
2508
+ Completed 200 OK in 0ms (Views: 0.2ms)
2509
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:51:08 -0600
2510
+ Processing by AppStatus::StatusController#index as JSON
2511
+ Parameters: {"descriptions"=>"1"}
2512
+ Completed 200 OK in 0ms (Views: 0.2ms)
2513
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:51:08 -0600
2514
+ Processing by AppStatus::StatusController#index as JSON
2515
+ Completed 200 OK in 1ms (Views: 1.0ms)
2516
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:51:08 -0600
2517
+ Processing by AppStatus::StatusController#index as JSON
2518
+ Completed 200 OK in 1ms (Views: 0.2ms)
2519
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 15:53:17 -0600
2520
+ Processing by AppStatus::StatusController#index as JSON
2521
+ Completed 200 OK in 2ms (Views: 0.4ms)
2522
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:53:17 -0600
2523
+ Processing by AppStatus::StatusController#index as JSON
2524
+ Completed 200 OK in 1ms (Views: 0.2ms)
2525
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:53:17 -0600
2526
+ Processing by AppStatus::StatusController#index as JSON
2527
+ Completed 200 OK in 0ms (Views: 0.2ms)
2528
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 15:53:17 -0600
2529
+ Processing by AppStatus::StatusController#index as JSON
2530
+ Completed 200 OK in 1ms (Views: 0.2ms)
2531
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 15:53:17 -0600
2532
+ Processing by AppStatus::StatusController#index as JSON
2533
+ Parameters: {"descriptions"=>"1"}
2534
+ Completed 200 OK in 0ms (Views: 0.2ms)
2535
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 15:53:17 -0600
2536
+ Processing by AppStatus::StatusController#index as JSON
2537
+ Completed 200 OK in 0ms (Views: 0.2ms)
2538
+ Started GET "/status" for 127.0.0.1 at 2018-02-16 16:08:37 -0600
2539
+ Processing by AppStatus::StatusController#index as JSON
2540
+ Completed 200 OK in 2ms (Views: 0.3ms)
2541
+ Started GET "/status/index.json" for 127.0.0.1 at 2018-02-16 16:08:37 -0600
2542
+ Processing by AppStatus::StatusController#index as JSON
2543
+ Completed 200 OK in 0ms (Views: 0.2ms)
2544
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 16:08:37 -0600
2545
+ Processing by AppStatus::StatusController#index as JSON
2546
+ Completed 200 OK in 6ms (Views: 0.2ms)
2547
+ Started GET "/status.json?descriptions=1" for 127.0.0.1 at 2018-02-16 16:08:37 -0600
2548
+ Processing by AppStatus::StatusController#index as JSON
2549
+ Parameters: {"descriptions"=>"1"}
2550
+ Completed 200 OK in 1ms (Views: 0.2ms)
2551
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 16:08:37 -0600
2552
+ Processing by AppStatus::StatusController#index as JSON
2553
+ Completed 200 OK in 1ms (Views: 0.3ms)
2554
+ Started GET "/status.json" for 127.0.0.1 at 2018-02-16 16:08:37 -0600
2555
+ Processing by AppStatus::StatusController#index as JSON
2556
+ Completed 200 OK in 0ms (Views: 0.2ms)