splunk-otel 1.0.0 → 1.1.0

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: 22ebfcc16e49baa0feef01f353c7c50ce65dc28774bb3ee408c1e996feb5a87b
4
- data.tar.gz: '082b71bf0cca5feb45251792308cd7ddf83995a41f3ffab01e2ba94dd75817d6'
3
+ metadata.gz: 6549c18607d6e48e41c326820885cdbcf5ed1503ccfa28f10b90b63695608a78
4
+ data.tar.gz: 6a1a4884c1b09a07cc36348b9d59537972abd9c4024dbc6b1ae13199bb91091c
5
5
  SHA512:
6
- metadata.gz: fb2e7706f749a7f53866cc7f4d4fd05d2ae6c826b694a490d2bcd79ace5c6f46e9c74c0fa3fc65df53e0b28abdd72e5878d99f8f5f91732465ec24fc423a571b
7
- data.tar.gz: 6fc797ae357239f04bb51aba388e2a161df6e6ea949dc27759ed9e037914cf422e6504e8ffc37986bfc2e1425bef20446a62831914a137d7283825808d1868e6
6
+ metadata.gz: db4051858076eadc6dcb3cdd6e279dbf80a239a22699f8ad5590694ed1b079c0bc70c579fc3a839c346fa00ceda56b58e6263757a1f9bd516cb938836fc511e8
7
+ data.tar.gz: f483859be56aa11350c2744e256c918396b0de8bd2ad31311918d889c1f0c86eae5afa69bcd5a995e88ee348a117c6a14c654e9afac1d5bba7d387925157bdde
@@ -13,6 +13,7 @@ jobs:
13
13
  strategy:
14
14
  matrix:
15
15
  rubygems: [
16
+ { ruby: "3.2", appraisal: "rails-7.0" },
16
17
  { ruby: "3.1", appraisal: "rails-7.0" },
17
18
  { ruby: "3.0", appraisal: "rails-7.0" },
18
19
  { ruby: "2.7", appraisal: "rails-7.0" },
@@ -27,13 +28,17 @@ jobs:
27
28
  run: docker-compose up -d
28
29
 
29
30
  - name: Set up Ruby ${{ matrix.rubygems.ruby }}
30
- uses: ruby/setup-ruby@v1.117.0
31
+ uses: ruby/setup-ruby@v1.134.0
31
32
  with:
32
33
  ruby-version: ${{ matrix.rubygems.ruby }}
33
34
  - name: Apply RubyGems fixes
34
35
  run: gem update --system
36
+ - name: Ensure we have modern bundler
37
+ run: gem install bundler -v '~> 2.3.26'
35
38
  - name: Install dependencies
36
- run: bundle install
39
+ run: bundle _2.3.26_
40
+ - name: Verify nokogiri
41
+ run: bundle exec nokogiri -v
37
42
  - name: Install appraisal dependencies
38
43
  run: bundle exec appraisal install
39
44
  - name: Rubocop
data/.gitignore CHANGED
@@ -12,5 +12,5 @@ Gemfile.lock
12
12
  # allow private binstubs
13
13
  bin/
14
14
 
15
- # appraisals
15
+ # appraisal
16
16
  /gemfiles/
data/README.md CHANGED
@@ -43,13 +43,13 @@ This Splunk distribution comes with the following defaults:
43
43
  Install the gem by adding it to your project's `Gemfile`:
44
44
 
45
45
  ``` ruby
46
- gem "splunk-otel", "~> 0.1"
46
+ gem "splunk-otel", "~> 1.0"
47
47
  ```
48
48
 
49
49
  or
50
50
 
51
51
  ```shell
52
- bundle add splunk-otel --version "~> 0.1"
52
+ bundle add splunk-otel --version "~> 1.0"
53
53
  ```
54
54
 
55
55
  Configure OpenTelemetry using the `Splunk::Otel` module from `splunk/otel`:
@@ -119,7 +119,7 @@ the
119
119
  gem in your Gemfile:
120
120
 
121
121
  ``` ruby
122
- gem "opentelemetry-instrumentation-all", "~> 0.23"
122
+ gem "opentelemetry-instrumentation-all", "~> 0.27"
123
123
  ```
124
124
 
125
125
  Enable the instrumentations from the gem by passing `auto_instrument:true` to
@@ -185,7 +185,7 @@ the project's `Gemfile`. For example, to install the
185
185
  instrumentation:
186
186
 
187
187
  ```
188
- gem "opentelemetry-instrumentation-sinatra", "~> 0.19"
188
+ gem "opentelemetry-instrumentation-sinatra", "~> 0.21"
189
189
  ```
190
190
 
191
191
  In a block passed to `Splunk::Otel.configure` configure the SDK to use
@@ -254,7 +254,7 @@ For troubleshooting information, see the [Troubleshooting](docs/troubleshooting.
254
254
 
255
255
  # License
256
256
 
257
- The Splunk OpenTelemetry Ruby distribution is released under the terms of the
257
+ The Splunk OpenTelemetry Ruby distribution is licensed under the terms of the
258
258
  Apache Software License version 2.0. For more details, see [the license
259
259
  file](./LICENSE).
260
260
 
@@ -1,6 +1,45 @@
1
1
  # Instrumenting Rails
2
2
 
3
- TODO
3
+ Install the instrumentation library by adding it to your project's `Gemfile`:
4
+
5
+ ``` ruby
6
+ gem "opentelemetry-instrumentation-rails", "~> 0.24"
7
+ ```
8
+
9
+ or install the gem using `bundle`:
10
+
11
+ ```shell
12
+ bundle add opentelemetry-instrumentation-rails --version "~> 0.24"
13
+ ```
14
+
15
+ Configure OpenTelemetry to use all available instrumentation libraries by adding the
16
+ `Splunk::Otel` module from `splunk/otel` and `use_all()` method to a Rails initializer:
17
+
18
+ ``` ruby
19
+ # config/initializers/opentelemetry.rb
20
+ require "splunk/otel"
21
+ ...
22
+ Splunk::Otel.configure do |c|
23
+ c.use_all()
24
+ end
25
+ ```
26
+
27
+ You can disable individual components' instrumentation as options to
28
+ `use_all`. For example to disable Active Record instrumentation:
29
+
30
+ ``` ruby
31
+ Splunk::Otel.configure do |c|
32
+ c.use_all({ 'OpenTelemetry::Instrumentation::ActiveRecord' => { enabled: false } })
33
+ end
34
+ ```
35
+
36
+ To enable only Rails, you can use an individual `c.use`:
37
+
38
+ ```ruby
39
+ Splunk::Otel.configure do |c|
40
+ c.use 'OpenTelemetry::Instrumentation::Rails'
41
+ end
42
+ ```
4
43
 
5
44
  ## Example
6
45
 
@@ -1,7 +1,7 @@
1
1
  FROM ruby:3.1.2-buster
2
2
  RUN apt-get update -qq
3
3
  RUN apt-get install -y \
4
- nodejs="10.24.0~dfsg-1~deb10u1" \
4
+ nodejs="10.24.0~dfsg-1~deb10u2" \
5
5
  netcat=1.10-41.1
6
6
 
7
7
  # ruby comes with older versions of bundler sometimes
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-10-25
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at tsloughter+work@splunk.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in sinatra_example.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "test-unit", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.7"
13
+
14
+ gem "opentelemetry-instrumentation-pg"
15
+ gem "opentelemetry-instrumentation-sinatra"
16
+ gem "pg"
17
+ gem "puma"
18
+ gem "sinatra", "~> 3.0"
19
+ gem "splunk-otel"
@@ -0,0 +1,34 @@
1
+ # Sinatra and PG Example
2
+
3
+ This example contains a Sinatra webapp that connects to and queries a Postgres
4
+ database (see the `docker-compose.yml` file for running the database).
5
+
6
+ Sinatra and PG are instrumented through OpenTelemetry libraries enabled in
7
+ `config.ru`:
8
+
9
+ ``` ruby
10
+ OpenTelemetry::SDK.configure do |c|
11
+ c.use 'OpenTelemetry::Instrumentation::Sinatra'
12
+ c.use 'OpenTelemetry::Instrumentation::PG'
13
+ end
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ By default the spans are output to the console but this can be overriden by
19
+ setting the environment varirable `OTEL_TRACES_EXPORTER`.
20
+
21
+ ``` shell
22
+ $ docker-compose up -d
23
+
24
+ $ bundle install
25
+
26
+ $ bundle exec rackup
27
+ ```
28
+
29
+ From a separate shell:
30
+
31
+ ``` shell
32
+ $ curl 0.0.0.0:9292
33
+ query result is [["1", "2", "3"]]
34
+ ```
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/*_test.rb"]
10
+ end
11
+
12
+ require "rubocop/rake_task"
13
+
14
+ RuboCop::RakeTask.new
15
+
16
+ task default: %i[test rubocop]
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "rubygems"
4
+ require "bundler/setup"
5
+
6
+ Bundler.require
7
+ ENV["OTEL_TRACES_EXPORTER"] ||= "console"
8
+ OpenTelemetry::SDK.configure do |c|
9
+ c.use "OpenTelemetry::Instrumentation::Sinatra"
10
+ c.use "OpenTelemetry::Instrumentation::PG"
11
+ end
12
+
13
+ require "./lib/sinatra_example"
14
+ run SinatraExample::App
@@ -0,0 +1,11 @@
1
+ version: '3.7'
2
+
3
+ services:
4
+ postgres:
5
+ image: postgres:14.6-alpine
6
+ environment:
7
+ - POSTGRES_USER=test
8
+ - POSTGRES_DB=test
9
+ - POSTGRES_PASSWORD=password
10
+ ports:
11
+ - 5432:5432
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SinatraExample
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "sinatra_example/version"
4
+ require "sinatra"
5
+ require "splunk/otel"
6
+
7
+ module SinatraExample
8
+ class Error < StandardError; end
9
+
10
+ # Sinatra example app with postgres query
11
+ class App < Sinatra::Base
12
+ set :bind, "0.0.0.0"
13
+
14
+ get "/" do
15
+ conn = PG::Connection.open(host: "localhost",
16
+ port: "5432",
17
+ user: "test",
18
+ dbname: "test",
19
+ password: "password")
20
+ r = conn.exec("SELECT 1, 2, 3").values
21
+
22
+ "query result is #{r}"
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/sinatra_example/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "sinatra_example"
7
+ spec.version = SinatraExample::VERSION
8
+ spec.authors = ["Tristan Sloughter"]
9
+ spec.email = ["tsloughter+work@splunk.com"]
10
+
11
+ spec.summary = "Example instrumented sinatra app"
12
+ spec.description = "Example instrumented sinatra app"
13
+ spec.required_ruby_version = ">= 2.6.0"
14
+
15
+ # Specify which files should be added to the gem when it is released.
16
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
17
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
18
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+ end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Splunk
4
4
  module Otel
5
- VERSION = "1.0.0"
5
+ VERSION = "1.1.0"
6
6
  end
7
7
  end
data/lib/splunk/otel.rb CHANGED
@@ -124,7 +124,7 @@ module Splunk
124
124
  # add the access token header if the env variable is set
125
125
  def set_access_token_header
126
126
  splunk_access_token = ENV.fetch("SPLUNK_ACCESS_TOKEN", nil)
127
- return if splunk_access_token.nil?
127
+ return if splunk_access_token.to_s.empty?
128
128
 
129
129
  access_header = "x-sf-token=#{splunk_access_token}"
130
130
  headers = ENV.fetch("OTEL_EXPORTER_OTLP_HEADERS", nil)
data/splunk-otel.gemspec CHANGED
@@ -28,18 +28,20 @@ Gem::Specification.new do |spec|
28
28
  spec.add_dependency "opentelemetry-api", "~> 1.0"
29
29
  spec.add_dependency "opentelemetry-exporter-jaeger", ">= 0.20.1", "< 0.23.0"
30
30
  spec.add_dependency "opentelemetry-exporter-otlp", ">= 0.21", "< 0.25"
31
- spec.add_dependency "opentelemetry-instrumentation-base", "~> 0.21.0"
31
+ spec.add_dependency "opentelemetry-instrumentation-base", "~> 0.21"
32
32
  spec.add_dependency "opentelemetry-propagator-b3", ">= 0.19.2", "< 0.21.0"
33
33
  spec.add_dependency "opentelemetry-sdk", "~> 1.0"
34
34
 
35
35
  # development tooling
36
36
  spec.add_development_dependency "appraisal", "2.4.1"
37
+ spec.add_development_dependency "bundler", "2.3.26"
37
38
  spec.add_development_dependency "rake", "13.0.6"
38
39
  spec.add_development_dependency "rubocop", "1.36.0"
39
40
  spec.add_development_dependency "rubocop-rake", "0.6.0"
40
41
  spec.add_development_dependency "simplecov", "0.21.2"
41
42
  spec.add_development_dependency "simplecov-cobertura", "2.1.0"
42
43
  spec.add_development_dependency "test-unit", "3.5.3"
44
+ spec.add_development_dependency "tzinfo-data", "1.2022.7"
43
45
 
44
46
  # development dependencies for integration testing
45
47
  spec.add_development_dependency "opentelemetry-instrumentation-action_pack", "~> 0.2.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: splunk-otel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Splunk
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-29 00:00:00.000000000 Z
11
+ date: 2023-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opentelemetry-api
@@ -70,14 +70,14 @@ dependencies:
70
70
  requirements:
71
71
  - - "~>"
72
72
  - !ruby/object:Gem::Version
73
- version: 0.21.0
73
+ version: '0.21'
74
74
  type: :runtime
75
75
  prerelease: false
76
76
  version_requirements: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - "~>"
79
79
  - !ruby/object:Gem::Version
80
- version: 0.21.0
80
+ version: '0.21'
81
81
  - !ruby/object:Gem::Dependency
82
82
  name: opentelemetry-propagator-b3
83
83
  requirement: !ruby/object:Gem::Requirement
@@ -126,6 +126,20 @@ dependencies:
126
126
  - - '='
127
127
  - !ruby/object:Gem::Version
128
128
  version: 2.4.1
129
+ - !ruby/object:Gem::Dependency
130
+ name: bundler
131
+ requirement: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - '='
134
+ - !ruby/object:Gem::Version
135
+ version: 2.3.26
136
+ type: :development
137
+ prerelease: false
138
+ version_requirements: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - '='
141
+ - !ruby/object:Gem::Version
142
+ version: 2.3.26
129
143
  - !ruby/object:Gem::Dependency
130
144
  name: rake
131
145
  requirement: !ruby/object:Gem::Requirement
@@ -210,6 +224,20 @@ dependencies:
210
224
  - - '='
211
225
  - !ruby/object:Gem::Version
212
226
  version: 3.5.3
227
+ - !ruby/object:Gem::Dependency
228
+ name: tzinfo-data
229
+ requirement: !ruby/object:Gem::Requirement
230
+ requirements:
231
+ - - '='
232
+ - !ruby/object:Gem::Version
233
+ version: 1.2022.7
234
+ type: :development
235
+ prerelease: false
236
+ version_requirements: !ruby/object:Gem::Requirement
237
+ requirements:
238
+ - - '='
239
+ - !ruby/object:Gem::Version
240
+ version: 1.2022.7
213
241
  - !ruby/object:Gem::Dependency
214
242
  name: opentelemetry-instrumentation-action_pack
215
243
  requirement: !ruby/object:Gem::Requirement
@@ -280,7 +308,7 @@ dependencies:
280
308
  - - ">="
281
309
  - !ruby/object:Gem::Version
282
310
  version: '0'
283
- description:
311
+ description:
284
312
  email:
285
313
  - splunk-oss@splunk.com
286
314
  executables: []
@@ -326,6 +354,18 @@ files:
326
354
  - examples/rails-7-barebones/docker-compose.yml
327
355
  - examples/rails-7-barebones/tests-e2e/rails_7_barebones_test.rb
328
356
  - examples/rails-7-barebones/wait-for.sh
357
+ - examples/sinatra_example/.gitignore
358
+ - examples/sinatra_example/.rubocop.yml
359
+ - examples/sinatra_example/CHANGELOG.md
360
+ - examples/sinatra_example/CODE_OF_CONDUCT.md
361
+ - examples/sinatra_example/Gemfile
362
+ - examples/sinatra_example/README.md
363
+ - examples/sinatra_example/Rakefile
364
+ - examples/sinatra_example/config.ru
365
+ - examples/sinatra_example/docker-compose.yml
366
+ - examples/sinatra_example/lib/sinatra_example.rb
367
+ - examples/sinatra_example/lib/sinatra_example/version.rb
368
+ - examples/sinatra_example/sinatra_example.gemspec
329
369
  - examples/smart-agent/.gitignore
330
370
  - examples/smart-agent/Gemfile
331
371
  - examples/smart-agent/docker-compose.yml
@@ -349,7 +389,7 @@ homepage: https://github.com/signalfx/splunk-otel-ruby
349
389
  licenses: []
350
390
  metadata:
351
391
  rubygems_mfa_required: 'true'
352
- post_install_message:
392
+ post_install_message:
353
393
  rdoc_options: []
354
394
  require_paths:
355
395
  - lib
@@ -364,8 +404,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
364
404
  - !ruby/object:Gem::Version
365
405
  version: '0'
366
406
  requirements: []
367
- rubygems_version: 3.3.7
368
- signing_key:
407
+ rubygems_version: 3.2.22
408
+ signing_key:
369
409
  specification_version: 4
370
410
  summary: Splunk OpenTelemetry Ruby distribution
371
411
  test_files: []