doctor 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0778c752ecf7aea89528338be96ecc20ce858f8
|
4
|
+
data.tar.gz: d3efb8f07489cd2ab15a781b354b766e650e0597
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04af796dedfd5e6d6a543264ce643ac52ec8caf9b8bb6e99eace7f8c79704e1737feea9bfb07f6510bb2544bde06204f7bfb86506f4340e1ff0ec6c0c8023a48
|
7
|
+
data.tar.gz: 57009fc3463ee33d175089a15e2c3d2df0fcf037706d82c314ed0991057063b7a0274a07c2e6df28bcfe19ba07d60c827d4e3311c026cb5af9614677d47b2f00
|
@@ -1,8 +1,11 @@
|
|
1
1
|
module Doctor
|
2
2
|
class HealthCheckController < ApplicationController
|
3
3
|
def index
|
4
|
-
|
5
|
-
|
4
|
+
check_result = HealthCheck.new.perform
|
5
|
+
|
6
|
+
status = check_result.has_error? ? :internal_server_error : :ok
|
7
|
+
|
8
|
+
render json: check_result.result, status: status
|
6
9
|
end
|
7
10
|
end
|
8
11
|
end
|
@@ -6,7 +6,7 @@ module Doctor
|
|
6
6
|
result[:telnets] = analyze_telnet
|
7
7
|
result[:databases] = analyze_database
|
8
8
|
|
9
|
-
result
|
9
|
+
OpenStruct.new(result: result, has_error?: has_error?(result))
|
10
10
|
end
|
11
11
|
|
12
12
|
private
|
@@ -29,5 +29,17 @@ module Doctor
|
|
29
29
|
|
30
30
|
dto_result
|
31
31
|
end
|
32
|
+
|
33
|
+
def has_error?(result_hash)
|
34
|
+
result_hash.values.each do |result_analyze|
|
35
|
+
result_analyze.each do |result|
|
36
|
+
if !result.status.eql?('ok')
|
37
|
+
return true
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
false
|
43
|
+
end
|
32
44
|
end
|
33
45
|
end
|
data/lib/doctor/version.rb
CHANGED
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: doctor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- uaiHebert
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
@@ -52,9 +52,11 @@ dependencies:
|
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 10.5.0
|
55
|
-
description:
|
55
|
+
description: With this project you will able to analyse your external resources status.
|
56
|
+
You will be able to configure wich database connection to check or all the http
|
57
|
+
urls
|
56
58
|
email:
|
57
|
-
-
|
59
|
+
- holiveira@estantevirtual.com.br
|
58
60
|
executables: []
|
59
61
|
extensions: []
|
60
62
|
extra_rdoc_files: []
|
@@ -97,5 +99,5 @@ rubyforge_project:
|
|
97
99
|
rubygems_version: 2.4.6
|
98
100
|
signing_key:
|
99
101
|
specification_version: 4
|
100
|
-
summary:
|
102
|
+
summary: This project will analyse the databases, urls, etc statuses
|
101
103
|
test_files: []
|