speedshop-cloudwatch 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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +278 -0
- data/Rakefile +40 -0
- data/bin/console +11 -0
- data/bin/setup +15 -0
- data/lib/speedshop/cloudwatch/active_job.rb +24 -0
- data/lib/speedshop/cloudwatch/all.rb +8 -0
- data/lib/speedshop/cloudwatch/config.rb +61 -0
- data/lib/speedshop/cloudwatch/metrics.rb +181 -0
- data/lib/speedshop/cloudwatch/puma.rb +57 -0
- data/lib/speedshop/cloudwatch/rack.rb +23 -0
- data/lib/speedshop/cloudwatch/railtie.rb +19 -0
- data/lib/speedshop/cloudwatch/reporter.rb +315 -0
- data/lib/speedshop/cloudwatch/sidekiq.rb +118 -0
- data/lib/speedshop/cloudwatch/version.rb +7 -0
- data/lib/speedshop/cloudwatch.rb +48 -0
- data/lib/speedshop-cloudwatch.rb +3 -0
- data/speedshop-cloudwatch.gemspec +30 -0
- metadata +81 -0
metadata
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: speedshop-cloudwatch
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Nate Berkopec
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2025-11-17 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: aws-sdk-cloudwatch
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 1.81.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 1.81.0
|
|
27
|
+
description: This gem helps integrate your Ruby application with AWS CloudWatch, reporting
|
|
28
|
+
metrics from Puma, Rack, Sidekiq, and ActiveJob in background threads to avoid adding
|
|
29
|
+
latency to requests and jobs.
|
|
30
|
+
email:
|
|
31
|
+
- nate.berkopec@speedshop.co
|
|
32
|
+
executables: []
|
|
33
|
+
extensions: []
|
|
34
|
+
extra_rdoc_files: []
|
|
35
|
+
files:
|
|
36
|
+
- LICENSE.txt
|
|
37
|
+
- README.md
|
|
38
|
+
- Rakefile
|
|
39
|
+
- bin/console
|
|
40
|
+
- bin/setup
|
|
41
|
+
- lib/speedshop-cloudwatch.rb
|
|
42
|
+
- lib/speedshop/cloudwatch.rb
|
|
43
|
+
- lib/speedshop/cloudwatch/active_job.rb
|
|
44
|
+
- lib/speedshop/cloudwatch/all.rb
|
|
45
|
+
- lib/speedshop/cloudwatch/config.rb
|
|
46
|
+
- lib/speedshop/cloudwatch/metrics.rb
|
|
47
|
+
- lib/speedshop/cloudwatch/puma.rb
|
|
48
|
+
- lib/speedshop/cloudwatch/rack.rb
|
|
49
|
+
- lib/speedshop/cloudwatch/railtie.rb
|
|
50
|
+
- lib/speedshop/cloudwatch/reporter.rb
|
|
51
|
+
- lib/speedshop/cloudwatch/sidekiq.rb
|
|
52
|
+
- lib/speedshop/cloudwatch/version.rb
|
|
53
|
+
- speedshop-cloudwatch.gemspec
|
|
54
|
+
homepage: https://github.com/nateberkopec/speedshop-cloudwatch
|
|
55
|
+
licenses:
|
|
56
|
+
- MIT
|
|
57
|
+
metadata:
|
|
58
|
+
allowed_push_host: https://rubygems.org
|
|
59
|
+
homepage_uri: https://github.com/nateberkopec/speedshop-cloudwatch
|
|
60
|
+
source_code_uri: https://github.com/nateberkopec/speedshop-cloudwatch
|
|
61
|
+
post_install_message:
|
|
62
|
+
rdoc_options: []
|
|
63
|
+
require_paths:
|
|
64
|
+
- lib
|
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: 2.7.0
|
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
requirements: []
|
|
76
|
+
rubygems_version: 3.1.6
|
|
77
|
+
signing_key:
|
|
78
|
+
specification_version: 4
|
|
79
|
+
summary: Ruby application integration with AWS CloudWatch for Puma, Rack, Sidekiq,
|
|
80
|
+
and ActiveJob
|
|
81
|
+
test_files: []
|