aws-embedded-metrics-customink 0.2.0 → 0.3.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 +4 -4
- data/.github/workflows/lint.yml +23 -0
- data/.rubocop.yml +89 -0
- data/.rubocop_todo.yml +19 -0
- data/CHANGELOG.md +6 -0
- data/Gemfile +3 -2
- data/Gemfile.lock +21 -0
- data/bin/bundle +3 -0
- data/lib/aws-embedded-metrics-customink.rb +1 -1
- data/lib/aws-embedded-metrics-customink/config.rb +1 -1
- data/lib/aws-embedded-metrics-customink/logger.rb +10 -3
- data/lib/aws-embedded-metrics-customink/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19f47b8f7cd28ca38f035c2535f415bad2b1c202ddb10a95493c5d4bbe6d04f0
|
4
|
+
data.tar.gz: 236ed5cab1638a2a730320b844fc7a9e8384bf7f245cf13b206d9be6f3d8698c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55b668526bbccc83bb7a72e1dd41475f15d271f74dc54b3d47ac8019f8ab0ef59e208cde9065845ba32236268801d8afd6267598184e7500c462d16d95721b18
|
7
|
+
data.tar.gz: 67b6a9ea9d13bb39a20db4b4ddb368e7eece759409d9df42a1232575aea1bd06189d7bcf5d2fe4828462c2408551e260e0f667fac50c62220979f292aec43d0a
|
@@ -0,0 +1,23 @@
|
|
1
|
+
name: Lint
|
2
|
+
on: [push]
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
runs-on: ubuntu-latest
|
6
|
+
strategy:
|
7
|
+
matrix:
|
8
|
+
ruby:
|
9
|
+
- '2.5'
|
10
|
+
- '2.7'
|
11
|
+
steps:
|
12
|
+
- name: Checkout
|
13
|
+
uses: actions/checkout@v1
|
14
|
+
- name: Setup Ruby
|
15
|
+
uses: actions/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: ${{ matrix.ruby }}
|
18
|
+
- name: Bundle
|
19
|
+
run: |
|
20
|
+
./bin/setup
|
21
|
+
- name: Rubocop
|
22
|
+
run: |
|
23
|
+
./bin/bundle exec rubocop --parallel
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
2
|
+
|
3
|
+
AllCops:
|
4
|
+
Exclude:
|
5
|
+
- "test/**/*"
|
6
|
+
- "bin/**/*"
|
7
|
+
- "*.gemspec"
|
8
|
+
- Rakefile
|
9
|
+
|
10
|
+
Style/Documentation:
|
11
|
+
Enabled: false
|
12
|
+
|
13
|
+
Style/FrozenStringLiteralComment: # PENDING: [Ruby3.x] Remove this, autofix, test, conform.
|
14
|
+
Enabled: false
|
15
|
+
|
16
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
17
|
+
Enabled: true
|
18
|
+
|
19
|
+
Layout/EmptyLinesAroundClassBody:
|
20
|
+
Enabled: false
|
21
|
+
|
22
|
+
Layout/EmptyLinesAroundModuleBody:
|
23
|
+
Enabled: false
|
24
|
+
|
25
|
+
Layout/SpaceAroundMethodCallOperator:
|
26
|
+
Enabled: true
|
27
|
+
|
28
|
+
Lint/DeprecatedOpenSSLConstant:
|
29
|
+
Enabled: true
|
30
|
+
|
31
|
+
Lint/DuplicateElsifCondition:
|
32
|
+
Enabled: true
|
33
|
+
|
34
|
+
Lint/MixedRegexpCaptureTypes:
|
35
|
+
Enabled: true
|
36
|
+
|
37
|
+
Lint/RaiseException:
|
38
|
+
Enabled: true
|
39
|
+
|
40
|
+
Lint/StructNewOverride:
|
41
|
+
Enabled: true
|
42
|
+
|
43
|
+
Style/AccessorGrouping:
|
44
|
+
Enabled: true
|
45
|
+
|
46
|
+
Style/ArrayCoercion:
|
47
|
+
Enabled: true
|
48
|
+
|
49
|
+
Style/BisectedAttrAccessor:
|
50
|
+
Enabled: true
|
51
|
+
|
52
|
+
Style/CaseLikeIf:
|
53
|
+
Enabled: true
|
54
|
+
|
55
|
+
Style/ExponentialNotation:
|
56
|
+
Enabled: true
|
57
|
+
|
58
|
+
Style/HashAsLastArrayItem:
|
59
|
+
Enabled: true
|
60
|
+
|
61
|
+
Style/HashEachMethods:
|
62
|
+
Enabled: true
|
63
|
+
|
64
|
+
Style/HashLikeCase:
|
65
|
+
Enabled: true
|
66
|
+
|
67
|
+
Style/HashTransformKeys:
|
68
|
+
Enabled: true
|
69
|
+
|
70
|
+
Style/HashTransformValues:
|
71
|
+
Enabled: true
|
72
|
+
|
73
|
+
Style/RedundantAssignment:
|
74
|
+
Enabled: true
|
75
|
+
|
76
|
+
Style/RedundantFetchBlock:
|
77
|
+
Enabled: true
|
78
|
+
|
79
|
+
Style/RedundantFileExtensionInRequire:
|
80
|
+
Enabled: true
|
81
|
+
|
82
|
+
Style/RedundantRegexpCharacterClass:
|
83
|
+
Enabled: true
|
84
|
+
|
85
|
+
Style/RedundantRegexpEscape:
|
86
|
+
Enabled: true
|
87
|
+
|
88
|
+
Style/SlicingWithRange:
|
89
|
+
Enabled: true
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2020-07-30 18:19:25 UTC using RuboCop version 0.88.0.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 1
|
10
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods.
|
11
|
+
Metrics/MethodLength:
|
12
|
+
Max: 15
|
13
|
+
|
14
|
+
# Offense count: 1
|
15
|
+
# Configuration parameters: ExpectMatchingDefinition, CheckDefinitionPathHierarchy, Regex, IgnoreExecutableScripts, AllowedAcronyms.
|
16
|
+
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
|
17
|
+
Naming/FileName:
|
18
|
+
Exclude:
|
19
|
+
- 'lib/aws-embedded-metrics-customink.rb'
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -6,14 +6,34 @@ PATH
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
+
ast (2.4.1)
|
9
10
|
coderay (1.1.3)
|
10
11
|
method_source (1.0.0)
|
11
12
|
minitest (5.14.1)
|
12
13
|
mocha (1.11.2)
|
14
|
+
parallel (1.19.2)
|
15
|
+
parser (2.7.1.4)
|
16
|
+
ast (~> 2.4.1)
|
13
17
|
pry (0.13.1)
|
14
18
|
coderay (~> 1.1)
|
15
19
|
method_source (~> 1.0)
|
20
|
+
rainbow (3.0.0)
|
16
21
|
rake (13.0.1)
|
22
|
+
regexp_parser (1.7.1)
|
23
|
+
rexml (3.2.3)
|
24
|
+
rubocop (0.88.0)
|
25
|
+
parallel (~> 1.10)
|
26
|
+
parser (>= 2.7.1.1)
|
27
|
+
rainbow (>= 2.2.2, < 4.0)
|
28
|
+
regexp_parser (>= 1.7)
|
29
|
+
rexml
|
30
|
+
rubocop-ast (>= 0.1.0, < 1.0)
|
31
|
+
ruby-progressbar (~> 1.7)
|
32
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
33
|
+
rubocop-ast (0.2.0)
|
34
|
+
parser (>= 2.7.0.1)
|
35
|
+
ruby-progressbar (1.10.1)
|
36
|
+
unicode-display_width (1.7.0)
|
17
37
|
|
18
38
|
PLATFORMS
|
19
39
|
ruby
|
@@ -24,6 +44,7 @@ DEPENDENCIES
|
|
24
44
|
mocha
|
25
45
|
pry
|
26
46
|
rake
|
47
|
+
rubocop
|
27
48
|
|
28
49
|
BUNDLED WITH
|
29
50
|
2.1.2
|
data/bin/bundle
ADDED
@@ -21,15 +21,22 @@ module Aws
|
|
21
21
|
@sink.accept(message) unless empty?
|
22
22
|
end
|
23
23
|
|
24
|
+
def benchmark
|
25
|
+
value = nil
|
26
|
+
seconds = Benchmark.realtime { value = yield }
|
27
|
+
milliseconds = (seconds * 1000).to_i
|
28
|
+
[value, milliseconds]
|
29
|
+
end
|
30
|
+
|
24
31
|
def put_dimension(name, value)
|
25
32
|
@dimensions << { name => value }
|
26
33
|
self
|
27
34
|
end
|
28
35
|
|
29
36
|
def put_metric(name, value, unit = nil)
|
30
|
-
@metrics << { 'Name' => name }.tap
|
37
|
+
@metrics << { 'Name' => name }.tap do |m|
|
31
38
|
m['Unit'] = unit if unit
|
32
|
-
|
39
|
+
end
|
33
40
|
set_property name, value
|
34
41
|
end
|
35
42
|
|
@@ -39,7 +46,7 @@ module Aws
|
|
39
46
|
end
|
40
47
|
|
41
48
|
def empty?
|
42
|
-
[@dimensions, @metrics, @properties].all?
|
49
|
+
[@dimensions, @metrics, @properties].all?(&:empty?)
|
43
50
|
end
|
44
51
|
|
45
52
|
def message
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-embedded-metrics-customink
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ken Collins
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-07
|
11
|
+
date: 2020-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Amazon CloudWatch Embedded Metric Format Client Library for Ruby.
|
14
14
|
email:
|
@@ -18,7 +18,10 @@ extensions: []
|
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
20
|
- ".github/workflows/ci.yml"
|
21
|
+
- ".github/workflows/lint.yml"
|
21
22
|
- ".gitignore"
|
23
|
+
- ".rubocop.yml"
|
24
|
+
- ".rubocop_todo.yml"
|
22
25
|
- CHANGELOG.md
|
23
26
|
- CODE_OF_CONDUCT.md
|
24
27
|
- Gemfile
|
@@ -27,6 +30,7 @@ files:
|
|
27
30
|
- README.md
|
28
31
|
- Rakefile
|
29
32
|
- aws-embedded-metrics-customink.gemspec
|
33
|
+
- bin/bundle
|
30
34
|
- bin/console
|
31
35
|
- bin/setup
|
32
36
|
- bin/test
|