cloudwatch-metrics 0.1.10 → 0.1.11
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/README.md +13 -1
- data/lib/cloudwatch_metrics/version.rb +1 -1
- data/lib/cloudwatch_metrics.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: dce097d501539877de89d8451ef1c4f3fe2a96cbaebee60a06292b733696e30d
|
|
4
|
+
data.tar.gz: c65b336e84a4ed3c6c185b582e1e3488e2e95edfd01dab02f7a7d68c3e084e04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5decfcc8b1023d215c7771e3548888f6c3c5cddca8f23eee819d258b811ec3b1cca4c30114da6a9cf02312b1bcc1b6034477509539e40b41c83c7e47069c2bef
|
|
7
|
+
data.tar.gz: 386f21b0c4efe665d3b01963c9ffc236b9e9c4a22bd33d2f0f651b25076cac4bfde3ce9e985791074b28ee97c0296ee69fd6472a9c5c9e32243a82ea87edcc88
|
data/README.md
CHANGED
|
@@ -59,4 +59,16 @@ Both reporting methods accept optional parameters, which are detailed below, alo
|
|
|
59
59
|
|
|
60
60
|
## Cloudwatch Concepts
|
|
61
61
|
|
|
62
|
-
Refer to the [Cloudwatch Documentation](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html) for a general overview of custom metrics in CloudWatch.
|
|
62
|
+
Refer to the [Cloudwatch Documentation](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html) for a general overview of custom metrics in CloudWatch.
|
|
63
|
+
|
|
64
|
+
## Changing this gem
|
|
65
|
+
|
|
66
|
+
If you make changes to this gem you need to do a few things to make those updates available to clients.
|
|
67
|
+
|
|
68
|
+
**Prerequisites**: You will need an account on [rubygems.org](https://rubygems.org/) and you will need to be added as an owner of this gem. Talk to Seth for this. ([Managing Owners](https://guides.rubygems.org/managing-owners-using-ui/))
|
|
69
|
+
|
|
70
|
+
1. Bump the version in `lib/cloudwatch_metrics/version.rb`
|
|
71
|
+
2. Build the updated gem with `gem build cloudwatch_metrics.gemspec`
|
|
72
|
+
3. Push the updated to gem to rubygems with `gem push ./cloudwatch-metrics-[VERSION].gem`
|
|
73
|
+
|
|
74
|
+
When the change has been published clients can update to the latest version with `bundle update cloudwatch-metrics`.
|
data/lib/cloudwatch_metrics.rb
CHANGED