katalyst-healthcheck 0.3.0 → 0.4.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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c405714831e17ff682cee082363e5e3b9433dd622aae6f125c7d6f8cb9e260ba
|
|
4
|
+
data.tar.gz: 5c72ee6dbe280e60404ae84b02b4f7db11a9aa59d8b313a638b5fa8b64c0d1ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5fd33513793e0523ea4e6ff37d5210f0409c1dd6572c9715d97034664164ad1c3f2517bed5b514695b189e59f1170fcd58cb29873e6e03483c46047217acc3f0
|
|
7
|
+
data.tar.gz: b8edd34e5e1c248fedce6067fd6224b50d513b9c4742dc05cdf248c7059222cf00a1aebb4d3a2a7e9b354ffa4b382533977a8325095343bafed5916945ef7ae7
|
data/README.md
CHANGED
|
@@ -58,7 +58,7 @@ the `Katalyst::Healthcheck::Monitored` concern's `healthy!` and `unhealthy` meth
|
|
|
58
58
|
``` ruby
|
|
59
59
|
include Katalyst::Healthcheck::Monitored
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
define_healthcheck_task :my_task, "My task description", interval: 1.day
|
|
62
62
|
|
|
63
63
|
def do_task
|
|
64
64
|
... task code here ...
|
|
@@ -12,9 +12,10 @@ module Katalyst
|
|
|
12
12
|
# @param name [Symbol] The name of the task
|
|
13
13
|
# @param description [String] A description of the task's function
|
|
14
14
|
# @param interval [Integer,ActiveSupport::Duration] Expected frequency that this task runs, e.g. 1.day
|
|
15
|
-
def
|
|
15
|
+
def define_healthcheck_task(name, description, interval:)
|
|
16
16
|
defined_healthcheck_tasks[name] = Task.new(name: name, description: description, interval: interval)
|
|
17
17
|
end
|
|
18
|
+
alias define_task define_healthcheck_task
|
|
18
19
|
|
|
19
20
|
# @return [Hash] Defined tasks keyed by name
|
|
20
21
|
def defined_healthcheck_tasks
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: katalyst-healthcheck
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katalyst Interactive
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-10-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: redis
|
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
84
84
|
- !ruby/object:Gem::Version
|
|
85
85
|
version: '0'
|
|
86
86
|
requirements: []
|
|
87
|
-
rubygems_version: 3.
|
|
87
|
+
rubygems_version: 3.3.15
|
|
88
88
|
signing_key:
|
|
89
89
|
specification_version: 4
|
|
90
90
|
summary: Health check routes and functions
|