health-monitor-rails 12.4.0 → 12.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -1
- data/lib/health_monitor/providers/cache.rb +1 -1
- data/lib/health_monitor/providers/database.rb +1 -1
- data/lib/health_monitor/providers/delayed_job.rb +1 -1
- data/lib/health_monitor/providers/file_absence.rb +1 -1
- data/lib/health_monitor/providers/redis.rb +1 -1
- data/lib/health_monitor/providers/sidekiq.rb +1 -1
- data/lib/health_monitor/providers/solr.rb +1 -1
- data/lib/health_monitor/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b3587a34b753e20332f2ee30e5a8fabf95485edc28dbf0521be42895bc2dbb0
|
4
|
+
data.tar.gz: 4b9b77a3c16bb5d01182af1ff1d327deb0089785da6905012a498be977b20038
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 808e2ed0c5fa88496ff3eae0540e559b871629970210ea371f0cbf95ad8e71f2f9687e72bb802b6f26b961bb59dcc42c0c904a5f6a68af9754d172c5e42ccbfb
|
7
|
+
data.tar.gz: 6d31d3cf3605c2d3eddd144242794774db6abaf7022b2cbf8cb7430ba8495d38ac81018ea97a6d516258a190dd3933e031b52103e036538a60c7d3694e36af96
|
data/README.md
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/health-monitor-rails.svg)](http://badge.fury.io/rb/health-monitor-rails)
|
4
4
|
[![Build Status](https://github.com/lbeder/health-monitor-rails/actions/workflows/ci.yml/badge.svg)](https://github.com/lbeder/health-monitor-rails/actions/workflows/ci.yml)
|
5
|
-
[![Coverage Status](https://coveralls.io/repos/lbeder/health-monitor-rails/badge.svg)](https://coveralls.io/r/lbeder/health-monitor-rails)
|
6
5
|
|
7
6
|
This is a health monitoring Rails mountable plug-in, which checks various services (db, cache, sidekiq, redis, etc.).
|
8
7
|
|
@@ -11,7 +11,7 @@ module HealthMonitor
|
|
11
11
|
failed_databases = []
|
12
12
|
|
13
13
|
ActiveRecord::Base.connection_handler.connection_pool_list(:all).each do |cp|
|
14
|
-
cp.
|
14
|
+
cp.lease_connection.execute('SELECT 1')
|
15
15
|
rescue Exception
|
16
16
|
failed_databases << cp.db_config.name
|
17
17
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: health-monitor-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 12.4.
|
4
|
+
version: 12.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Leonid Beder
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: '0'
|
73
73
|
requirements: []
|
74
|
-
rubygems_version: 3.
|
74
|
+
rubygems_version: 3.4.19
|
75
75
|
signing_key:
|
76
76
|
specification_version: 4
|
77
77
|
summary: Health monitoring Rails plug-in, which checks various services (db, cache,
|