aspecto-opentelemetry 0.1.9 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 005e783e20aa54623dca0a11daae40ef3e3d8a6d9b83a13b6fd44f11a0a7f00b
4
- data.tar.gz: 9edaffde8afa0cbfb8f3547aec3fd4ab3fc236395e70e6ecb1e60b83f5d563b1
3
+ metadata.gz: a0943b7b3f5688ebe24ae7f8bb45836d082697786ba1ea649e0ed947836f13d2
4
+ data.tar.gz: f9572d70ddeb8419648e78a2edf3b90094e2bb6658701556b01ed5a353b18f3f
5
5
  SHA512:
6
- metadata.gz: a220142b3826b3cf0d95e73c559e0ac5ce0e29828f98883fd6e7f8e7a9c4a486bfe6620a49f73cbc938d23c3b0c48f8782147a69779256719520532112ef1b6d
7
- data.tar.gz: fd9e2c8b3513d25599411f2718ff1f3aa79b75425fd9d81f75f32e1ceb7b69c4228dfc46abc1f0dc64a7f020c2916ed47f1bc29d11539cabf87e91945ce38851
6
+ metadata.gz: 2181743694a6cefbde9138ddbf3dfbcb57a0b95787cf2cbda35f418d05bf6755a40f495bba32a22a0f5184fa83ef3789a63617b1d6eaadf0dcff36623c0a99ec
7
+ data.tar.gz: 9c6d4cfe66c894c6c9a82c04080d8e9653502c9bf97b82149a30522f82c1e5f5f7b2621257cbf7481baa19d776e499663df17d28bb8007940582da0bb716d909
data/README.md CHANGED
@@ -19,8 +19,6 @@ Or, if you use [bundler](https://bundler.io), include aspecto-opentelemetry in y
19
19
 
20
20
  ### Rails Applications
21
21
 
22
- #### Configuration in Code
23
-
24
22
  Add this code to a new file `aspecto.rb` under `config/initializers/`:
25
23
 
26
24
  ```rb
@@ -34,26 +32,8 @@ Aspecto::OpenTelemetry::configure do |c|
34
32
  end
35
33
  ```
36
34
 
37
- #### Configuration via Environment Variables
38
-
39
- In your Gemfile:
40
-
41
- ```
42
- gem 'aspecto-opentelemetry', require: 'aspecto/auto_instrument'
43
- ```
44
-
45
- And set environment variables:
46
-
47
- ```
48
- OTEL_SERVICE_NAME=<YOUR_SERVICE_NAME>
49
- ASPECTO_AUTH=<YOUR_ASPECTO_TOKEN>
50
- # ASPECTO_SAMPLING_RATIO=1.0 # [optional]: defaults to 1.0, use aspecto app to configure remotely
51
- ```
52
-
53
35
  ### Ruby Applications
54
36
 
55
- #### Configuration in Code
56
-
57
37
  Add this code after your require other gems:
58
38
 
59
39
  ```rb
@@ -67,23 +47,6 @@ Aspecto::OpenTelemetry::configure do |c|
67
47
  end
68
48
  ```
69
49
 
70
- #### Configuration via Environment Variables
71
-
72
- Add this require statement after your require other gems:
73
-
74
- ```rb
75
- require 'aspecto/auto_instrument'
76
- ```
77
-
78
- And set environment variables:
79
-
80
- ```
81
- OTEL_SERVICE_NAME=<YOUR_SERVICE_NAME>
82
- ASPECTO_AUTH=<YOUR_ASPECTO_TOKEN>
83
- # ASPECTO_ENV=<CURRENT_ENVIRONMENT> # [optional]: automatically detected for rails and sinatra
84
- # ASPECTO_SAMPLING_RATIO=1.0 # [optional]: defaults to 1.0, use aspecto app to configure remotely
85
- ```
86
-
87
50
  ### Shutdown
88
51
 
89
52
  Call this function when your application shuts down
data/RELEASE.md ADDED
@@ -0,0 +1,4 @@
1
+ # Release steps
2
+ 1. Increment VERSION in [`version.rb`](./lib/aspecto/opentelemetry/version.rb)
3
+ 1. Create and merge Pull Request into `master`
4
+ 1. Run `Publish` Github action on `master` branch 🚀
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Aspecto
4
4
  module OpenTelemetry
5
- VERSION = "0.1.9"
5
+ VERSION = "0.1.10"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aspecto-opentelemetry
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aspecto
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-06 00:00:00.000000000 Z
11
+ date: 2022-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aspecto-opentelemetry-instrumentation-aws_sdk
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.8
19
+ version: 0.4.5
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.1.8
26
+ version: 0.4.5
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: opentelemetry-exporter-otlp
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -190,6 +190,7 @@ files:
190
190
  - Gemfile
191
191
  - LICENSE
192
192
  - README.md
193
+ - RELEASE.md
193
194
  - Rakefile
194
195
  - lib/aspecto/auto_instrument.rb
195
196
  - lib/aspecto/opentelemetry.rb