kicks_liveness 0.1.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.
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kicks_liveness
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - PoroshkinaVV
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: |
13
+ A liveness probe for RabbitMQ worker pods that loads no Rails and never talks
14
+ to the broker. The worker publishes a heartbeat to tmpfs from inside its own
15
+ process, checking its Bunny consumers in memory; the probe only reads the
16
+ file's mtime and runs as `bundle exec kicks-liveness`. It loads no application
17
+ code; aside from Bundler and the interpreter it loads only the gem's small
18
+ probe files, while the state itself comes from tmpfs. A broker hiccup cannot
19
+ restart every replica at once.
20
+ email:
21
+ - lera.poroshkina@mail.ru
22
+ executables:
23
+ - kicks-liveness
24
+ extensions: []
25
+ extra_rdoc_files: []
26
+ files:
27
+ - CHANGELOG.md
28
+ - LICENSE.txt
29
+ - README.md
30
+ - docs/DESIGN.md
31
+ - docs/KUBERNETES.md
32
+ - docs/LIMITATIONS.md
33
+ - docs/SETUP.md
34
+ - docs/VERIFYING.md
35
+ - exe/kicks-liveness
36
+ - lib/kicks_liveness.rb
37
+ - lib/kicks_liveness/attempts.rb
38
+ - lib/kicks_liveness/configuration.rb
39
+ - lib/kicks_liveness/heartbeat.rb
40
+ - lib/kicks_liveness/hooks.rb
41
+ - lib/kicks_liveness/monitor.rb
42
+ - lib/kicks_liveness/probe.rb
43
+ - lib/kicks_liveness/railtie.rb
44
+ - lib/kicks_liveness/registry.rb
45
+ - lib/kicks_liveness/version.rb
46
+ homepage: https://github.com/PoroshkinaVV/kicks_liveness
47
+ licenses:
48
+ - MIT
49
+ metadata:
50
+ source_code_uri: https://github.com/PoroshkinaVV/kicks_liveness
51
+ documentation_uri: https://rubydoc.info/gems/kicks_liveness/0.1.0
52
+ changelog_uri: https://github.com/PoroshkinaVV/kicks_liveness/blob/main/CHANGELOG.md
53
+ bug_tracker_uri: https://github.com/PoroshkinaVV/kicks_liveness/issues
54
+ rubygems_mfa_required: 'true'
55
+ rdoc_options: []
56
+ require_paths:
57
+ - lib
58
+ required_ruby_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '3.1'
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ requirements: []
69
+ rubygems_version: 3.6.9
70
+ specification_version: 4
71
+ summary: Liveness probe for Kicks and Sneakers workers. No Rails, no broker call.
72
+ test_files: []