-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
72 lines (56 loc) · 2.23 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
gem "rails", "~> 7.0.8"
# Use sqlite3 as the database for Active Record
gem "sqlite3", "~> 1.4"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 6.4"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem "rack-cors"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end
group :test do
gem 'minitest'
gem 'opentelemetry-test-helpers'
gem 'rack-test'
end
# OpenTelemetry gems with logging-related enhancements
gem 'opentelemetry-api',
git: 'https://github.com/kaylareopelle/opentelemetry-ruby',
branch: 'log-record-processor3',
glob: 'api/*.gemspec'
gem 'opentelemetry-sdk',
git: 'https://github.com/kaylareopelle/opentelemetry-ruby',
branch: 'log-record-processor3',
glob: 'sdk/*.gemspec'
# Unreleased, logs-specific gems
gem 'opentelemetry-logs-api',
git: 'https://github.com/kaylareopelle/opentelemetry-ruby',
branch: 'log-record-processor3',
glob: 'logs_api/*.gemspec'
gem 'opentelemetry-logs-sdk',
git: 'https://github.com/kaylareopelle/opentelemetry-ruby',
branch: 'log-record-processor3',
glob: 'logs_sdk/*.gemspec'
# OTLP Exporters
# We don't need to change anything with the main OTLP exporter
gem 'opentelemetry-exporter-otlp'
# The OTLP logging exporter has not been released
gem 'opentelemetry-exporter-otlp-logs',
git: 'https://github.com/kaylareopelle/opentelemetry-ruby',
branch: 'log-record-processor3',
glob: 'exporter/otlp-logs/*.gemspec'
# Instrumentation and Ruby Logger bridge
gem 'opentelemetry-instrumentation-all',
git: 'https://github.com/kaylareopelle/opentelemetry-ruby-contrib',
branch: 'logger-instrumentation',
glob: 'instrumentation/all/*.gemspec'
gem 'opentelemetry-instrumentation-logger',
git: 'https://github.com/kaylareopelle/opentelemetry-ruby-contrib',
branch: 'logger-instrumentation',
glob: 'instrumentation/logger/*.gemspec'