puma-cloudwatch 0.3.0 → 0.3.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/puma_cloudwatch/metrics/looper.rb +1 -1
- data/lib/puma_cloudwatch/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 597cac59de90ceaab9f7824dc362138439fff16affcd0166fcfac7d286c0c53e
|
|
4
|
+
data.tar.gz: 714fe4f86113cdf8bdb5ff55e52aea97477edf0880ef72a2ba0d51d159c2cf69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c298cd269d1e8aa81f204c9cb8afea0576c36775ccb4117ee7e967ba06913387bbc1d958d21c30fbf637eab6564e217ed276d6c6256872bc20ad30e29b0bd14d
|
|
7
|
+
data.tar.gz: '09cd67be3c688102cedca2d80bd0b13d8184340ed16a22388b6f8c5f7a0d7e0c99cad9fb0f9db889e8229e2987819c9c9863e662811edab687d0f33fea8f231e'
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [0.3.1]
|
|
7
|
+
- fix PUMA_CLOUDWATCH_MUTE_START_MESSAGE var
|
|
8
|
+
|
|
6
9
|
## [0.3.0]
|
|
7
10
|
- add PUMA\_CLOUDWATCH\_ENABLED env var check
|
|
8
11
|
- improve puma-cloudwatch plugin message
|
|
@@ -14,7 +14,7 @@ class PumaCloudwatch::Metrics
|
|
|
14
14
|
|
|
15
15
|
def run
|
|
16
16
|
raise StandardError, "Puma control app is not activated" if @control_url == nil
|
|
17
|
-
puts(message) unless ENV['
|
|
17
|
+
puts(message) unless ENV['PUMA_CLOUDWATCH_MUTE_START_MESSAGE']
|
|
18
18
|
Thread.new do
|
|
19
19
|
perform
|
|
20
20
|
end
|