skywalking 0.0.0.alpha
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/.asf.yaml +40 -0
- data/.rspec +3 -0
- data/.rubocop.yml +236 -0
- data/CHANGELOG.md +15 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE +201 -0
- data/NOTICE +5 -0
- data/README.md +18 -0
- data/Rakefile +23 -0
- data/docs/How-to-release.md +179 -0
- data/examples/rails-demo/.dockerignore +47 -0
- data/examples/rails-demo/.gitattributes +9 -0
- data/examples/rails-demo/.gitignore +34 -0
- data/examples/rails-demo/.kamal/hooks/docker-setup.sample +3 -0
- data/examples/rails-demo/.kamal/hooks/post-deploy.sample +14 -0
- data/examples/rails-demo/.kamal/hooks/post-proxy-reboot.sample +3 -0
- data/examples/rails-demo/.kamal/hooks/pre-build.sample +51 -0
- data/examples/rails-demo/.kamal/hooks/pre-connect.sample +47 -0
- data/examples/rails-demo/.kamal/hooks/pre-deploy.sample +109 -0
- data/examples/rails-demo/.kamal/hooks/pre-proxy-reboot.sample +3 -0
- data/examples/rails-demo/.kamal/secrets +17 -0
- data/examples/rails-demo/.rubocop.yml +8 -0
- data/examples/rails-demo/.ruby-version +1 -0
- data/examples/rails-demo/Dockerfile +72 -0
- data/examples/rails-demo/Gemfile +64 -0
- data/examples/rails-demo/README.md +24 -0
- data/examples/rails-demo/Rakefile +6 -0
- data/examples/rails-demo/app/assets/images/.keep +0 -0
- data/examples/rails-demo/app/assets/stylesheets/application.css +10 -0
- data/examples/rails-demo/app/controllers/application_controller.rb +4 -0
- data/examples/rails-demo/app/controllers/concerns/.keep +0 -0
- data/examples/rails-demo/app/helpers/application_helper.rb +2 -0
- data/examples/rails-demo/app/javascript/application.js +3 -0
- data/examples/rails-demo/app/javascript/controllers/application.js +9 -0
- data/examples/rails-demo/app/javascript/controllers/hello_controller.js +7 -0
- data/examples/rails-demo/app/javascript/controllers/index.js +4 -0
- data/examples/rails-demo/app/jobs/application_job.rb +7 -0
- data/examples/rails-demo/app/mailers/application_mailer.rb +4 -0
- data/examples/rails-demo/app/models/application_record.rb +3 -0
- data/examples/rails-demo/app/models/concerns/.keep +0 -0
- data/examples/rails-demo/app/views/layouts/application.html.erb +28 -0
- data/examples/rails-demo/app/views/layouts/mailer.html.erb +13 -0
- data/examples/rails-demo/app/views/layouts/mailer.text.erb +1 -0
- data/examples/rails-demo/app/views/pwa/manifest.json.erb +22 -0
- data/examples/rails-demo/app/views/pwa/service-worker.js +26 -0
- data/examples/rails-demo/bin/brakeman +7 -0
- data/examples/rails-demo/bin/bundle +109 -0
- data/examples/rails-demo/bin/dev +2 -0
- data/examples/rails-demo/bin/docker-entrypoint +14 -0
- data/examples/rails-demo/bin/importmap +4 -0
- data/examples/rails-demo/bin/jobs +6 -0
- data/examples/rails-demo/bin/kamal +27 -0
- data/examples/rails-demo/bin/rails +4 -0
- data/examples/rails-demo/bin/rake +4 -0
- data/examples/rails-demo/bin/rubocop +8 -0
- data/examples/rails-demo/bin/setup +34 -0
- data/examples/rails-demo/bin/thrust +5 -0
- data/examples/rails-demo/config/application.rb +27 -0
- data/examples/rails-demo/config/boot.rb +4 -0
- data/examples/rails-demo/config/cable.yml +17 -0
- data/examples/rails-demo/config/cache.yml +16 -0
- data/examples/rails-demo/config/credentials.yml.enc +1 -0
- data/examples/rails-demo/config/database.yml +41 -0
- data/examples/rails-demo/config/deploy.yml +116 -0
- data/examples/rails-demo/config/environment.rb +5 -0
- data/examples/rails-demo/config/environments/development.rb +72 -0
- data/examples/rails-demo/config/environments/production.rb +90 -0
- data/examples/rails-demo/config/environments/test.rb +53 -0
- data/examples/rails-demo/config/importmap.rb +7 -0
- data/examples/rails-demo/config/initializers/assets.rb +7 -0
- data/examples/rails-demo/config/initializers/content_security_policy.rb +25 -0
- data/examples/rails-demo/config/initializers/filter_parameter_logging.rb +8 -0
- data/examples/rails-demo/config/initializers/inflections.rb +16 -0
- data/examples/rails-demo/config/initializers/skywalking_ruby.rb +18 -0
- data/examples/rails-demo/config/locales/en.yml +31 -0
- data/examples/rails-demo/config/puma.rb +41 -0
- data/examples/rails-demo/config/queue.yml +18 -0
- data/examples/rails-demo/config/recurring.yml +10 -0
- data/examples/rails-demo/config/routes.rb +14 -0
- data/examples/rails-demo/config/storage.yml +34 -0
- data/examples/rails-demo/config.ru +6 -0
- data/examples/rails-demo/db/cable_schema.rb +11 -0
- data/examples/rails-demo/db/cache_schema.rb +14 -0
- data/examples/rails-demo/db/queue_schema.rb +129 -0
- data/examples/rails-demo/db/seeds.rb +9 -0
- data/examples/rails-demo/lib/tasks/.keep +0 -0
- data/examples/rails-demo/log/.keep +0 -0
- data/examples/rails-demo/public/400.html +114 -0
- data/examples/rails-demo/public/404.html +114 -0
- data/examples/rails-demo/public/406-unsupported-browser.html +114 -0
- data/examples/rails-demo/public/422.html +114 -0
- data/examples/rails-demo/public/500.html +114 -0
- data/examples/rails-demo/public/icon.png +0 -0
- data/examples/rails-demo/public/icon.svg +3 -0
- data/examples/rails-demo/public/robots.txt +1 -0
- data/examples/rails-demo/script/.keep +0 -0
- data/examples/rails-demo/storage/.keep +0 -0
- data/examples/rails-demo/test/application_system_test_case.rb +5 -0
- data/examples/rails-demo/test/controllers/.keep +0 -0
- data/examples/rails-demo/test/fixtures/files/.keep +0 -0
- data/examples/rails-demo/test/helpers/.keep +0 -0
- data/examples/rails-demo/test/integration/.keep +0 -0
- data/examples/rails-demo/test/mailers/.keep +0 -0
- data/examples/rails-demo/test/models/.keep +0 -0
- data/examples/rails-demo/test/system/.keep +0 -0
- data/examples/rails-demo/test/test_helper.rb +15 -0
- data/examples/rails-demo/tmp/.keep +0 -0
- data/examples/rails-demo/tmp/pids/.keep +0 -0
- data/examples/rails-demo/tmp/storage/.keep +0 -0
- data/examples/rails-demo/vendor/.keep +0 -0
- data/examples/rails-demo/vendor/javascript/.keep +0 -0
- data/examples/sinatra-demo/sinatra-demo.rb +32 -0
- data/lib/skywalking/agent.rb +98 -0
- data/lib/skywalking/configuration.rb +255 -0
- data/lib/skywalking/environment.rb +50 -0
- data/lib/skywalking/log/logger.rb +53 -0
- data/lib/skywalking/plugins/redis5.rb +70 -0
- data/lib/skywalking/plugins/sinatra.rb +55 -0
- data/lib/skywalking/plugins_manager.rb +84 -0
- data/lib/skywalking/proto/asyncprofiler/AsyncProfiler_pb.rb +23 -0
- data/lib/skywalking/proto/asyncprofiler/AsyncProfiler_services_pb.rb +45 -0
- data/lib/skywalking/proto/browser/BrowserPerfCompat_pb.rb +15 -0
- data/lib/skywalking/proto/browser/BrowserPerfCompat_services_pb.rb +42 -0
- data/lib/skywalking/proto/browser/BrowserPerf_pb.rb +21 -0
- data/lib/skywalking/proto/browser/BrowserPerf_services_pb.rb +46 -0
- data/lib/skywalking/proto/common/Command_pb.rb +20 -0
- data/lib/skywalking/proto/common/Common_pb.rb +21 -0
- data/lib/skywalking/proto/ebpf/accesslog_pb.rb +58 -0
- data/lib/skywalking/proto/ebpf/accesslog_services_pb.rb +42 -0
- data/lib/skywalking/proto/event/Event_pb.rb +21 -0
- data/lib/skywalking/proto/event/Event_services_pb.rb +45 -0
- data/lib/skywalking/proto/language-agent/CLRMetricCompat_pb.rb +15 -0
- data/lib/skywalking/proto/language-agent/CLRMetricCompat_services_pb.rb +38 -0
- data/lib/skywalking/proto/language-agent/CLRMetric_pb.rb +23 -0
- data/lib/skywalking/proto/language-agent/CLRMetric_services_pb.rb +42 -0
- data/lib/skywalking/proto/language-agent/ConfigurationDiscoveryService_pb.rb +19 -0
- data/lib/skywalking/proto/language-agent/ConfigurationDiscoveryService_services_pb.rb +51 -0
- data/lib/skywalking/proto/language-agent/JVMMetricCompat_pb.rb +15 -0
- data/lib/skywalking/proto/language-agent/JVMMetricCompat_services_pb.rb +39 -0
- data/lib/skywalking/proto/language-agent/JVMMetric_pb.rb +28 -0
- data/lib/skywalking/proto/language-agent/JVMMetric_services_pb.rb +43 -0
- data/lib/skywalking/proto/language-agent/MeterCompat_pb.rb +15 -0
- data/lib/skywalking/proto/language-agent/MeterCompat_services_pb.rb +39 -0
- data/lib/skywalking/proto/language-agent/Meter_pb.rb +24 -0
- data/lib/skywalking/proto/language-agent/Meter_services_pb.rb +48 -0
- data/lib/skywalking/proto/language-agent/TracingCompat_pb.rb +15 -0
- data/lib/skywalking/proto/language-agent/TracingCompat_services_pb.rb +48 -0
- data/lib/skywalking/proto/language-agent/Tracing_pb.rb +31 -0
- data/lib/skywalking/proto/language-agent/Tracing_services_pb.rb +71 -0
- data/lib/skywalking/proto/logging/Logging_pb.rb +26 -0
- data/lib/skywalking/proto/logging/Logging_services_pb.rb +46 -0
- data/lib/skywalking/proto/management/ManagementCompat_pb.rb +15 -0
- data/lib/skywalking/proto/management/ManagementCompat_services_pb.rb +44 -0
- data/lib/skywalking/proto/management/Management_pb.rb +21 -0
- data/lib/skywalking/proto/management/Management_services_pb.rb +48 -0
- data/lib/skywalking/proto/profile/ProfileCompat_pb.rb +15 -0
- data/lib/skywalking/proto/profile/ProfileCompat_services_pb.rb +43 -0
- data/lib/skywalking/proto/profile/Profile_pb.rb +22 -0
- data/lib/skywalking/proto/profile/Profile_services_pb.rb +47 -0
- data/lib/skywalking/proto/service-mesh-probe/service-mesh_pb.rb +25 -0
- data/lib/skywalking/proto/service-mesh-probe/service-mesh_services_pb.rb +43 -0
- data/lib/skywalking/reporter/buffer_trigger.rb +108 -0
- data/lib/skywalking/reporter/client/grpc_client.rb +114 -0
- data/lib/skywalking/reporter/client/proto.rb +29 -0
- data/lib/skywalking/reporter/grpc.rb +46 -0
- data/lib/skywalking/reporter/protocol.rb +28 -0
- data/lib/skywalking/reporter/report.rb +82 -0
- data/lib/skywalking/reporter/scheduler.rb +158 -0
- data/lib/skywalking/tracing/carrier.rb +121 -0
- data/lib/skywalking/tracing/carrier_item.rb +27 -0
- data/lib/skywalking/tracing/constants.rb +49 -0
- data/lib/skywalking/tracing/entry_span.rb +48 -0
- data/lib/skywalking/tracing/exit_span.rb +53 -0
- data/lib/skywalking/tracing/ignored_context.rb +34 -0
- data/lib/skywalking/tracing/noop_span.rb +32 -0
- data/lib/skywalking/tracing/segment.rb +57 -0
- data/lib/skywalking/tracing/span.rb +111 -0
- data/lib/skywalking/tracing/span_context.rb +242 -0
- data/lib/skywalking/tracing/tag.rb +49 -0
- data/lib/skywalking/utils/id_gen.rb +30 -0
- data/lib/skywalking/version.rb +18 -0
- data/lib/skywalking.rb +36 -0
- metadata +340 -0
metadata
ADDED
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: skywalking
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0.alpha
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Apache SkyWalking Team
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2024-12-30 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rubocop
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rubocop-performance
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: grpc
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: grpc-tools
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: rackup
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - ">="
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '0'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - ">="
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '0'
|
|
125
|
+
description: The Ruby Agent for Apache SkyWalking
|
|
126
|
+
email:
|
|
127
|
+
- dev@skywalking.apache.org
|
|
128
|
+
executables: []
|
|
129
|
+
extensions: []
|
|
130
|
+
extra_rdoc_files: []
|
|
131
|
+
files:
|
|
132
|
+
- ".asf.yaml"
|
|
133
|
+
- ".rspec"
|
|
134
|
+
- ".rubocop.yml"
|
|
135
|
+
- CHANGELOG.md
|
|
136
|
+
- CODE_OF_CONDUCT.md
|
|
137
|
+
- LICENSE
|
|
138
|
+
- NOTICE
|
|
139
|
+
- README.md
|
|
140
|
+
- Rakefile
|
|
141
|
+
- docs/How-to-release.md
|
|
142
|
+
- examples/rails-demo/.dockerignore
|
|
143
|
+
- examples/rails-demo/.gitattributes
|
|
144
|
+
- examples/rails-demo/.gitignore
|
|
145
|
+
- examples/rails-demo/.kamal/hooks/docker-setup.sample
|
|
146
|
+
- examples/rails-demo/.kamal/hooks/post-deploy.sample
|
|
147
|
+
- examples/rails-demo/.kamal/hooks/post-proxy-reboot.sample
|
|
148
|
+
- examples/rails-demo/.kamal/hooks/pre-build.sample
|
|
149
|
+
- examples/rails-demo/.kamal/hooks/pre-connect.sample
|
|
150
|
+
- examples/rails-demo/.kamal/hooks/pre-deploy.sample
|
|
151
|
+
- examples/rails-demo/.kamal/hooks/pre-proxy-reboot.sample
|
|
152
|
+
- examples/rails-demo/.kamal/secrets
|
|
153
|
+
- examples/rails-demo/.rubocop.yml
|
|
154
|
+
- examples/rails-demo/.ruby-version
|
|
155
|
+
- examples/rails-demo/Dockerfile
|
|
156
|
+
- examples/rails-demo/Gemfile
|
|
157
|
+
- examples/rails-demo/README.md
|
|
158
|
+
- examples/rails-demo/Rakefile
|
|
159
|
+
- examples/rails-demo/app/assets/images/.keep
|
|
160
|
+
- examples/rails-demo/app/assets/stylesheets/application.css
|
|
161
|
+
- examples/rails-demo/app/controllers/application_controller.rb
|
|
162
|
+
- examples/rails-demo/app/controllers/concerns/.keep
|
|
163
|
+
- examples/rails-demo/app/helpers/application_helper.rb
|
|
164
|
+
- examples/rails-demo/app/javascript/application.js
|
|
165
|
+
- examples/rails-demo/app/javascript/controllers/application.js
|
|
166
|
+
- examples/rails-demo/app/javascript/controllers/hello_controller.js
|
|
167
|
+
- examples/rails-demo/app/javascript/controllers/index.js
|
|
168
|
+
- examples/rails-demo/app/jobs/application_job.rb
|
|
169
|
+
- examples/rails-demo/app/mailers/application_mailer.rb
|
|
170
|
+
- examples/rails-demo/app/models/application_record.rb
|
|
171
|
+
- examples/rails-demo/app/models/concerns/.keep
|
|
172
|
+
- examples/rails-demo/app/views/layouts/application.html.erb
|
|
173
|
+
- examples/rails-demo/app/views/layouts/mailer.html.erb
|
|
174
|
+
- examples/rails-demo/app/views/layouts/mailer.text.erb
|
|
175
|
+
- examples/rails-demo/app/views/pwa/manifest.json.erb
|
|
176
|
+
- examples/rails-demo/app/views/pwa/service-worker.js
|
|
177
|
+
- examples/rails-demo/bin/brakeman
|
|
178
|
+
- examples/rails-demo/bin/bundle
|
|
179
|
+
- examples/rails-demo/bin/dev
|
|
180
|
+
- examples/rails-demo/bin/docker-entrypoint
|
|
181
|
+
- examples/rails-demo/bin/importmap
|
|
182
|
+
- examples/rails-demo/bin/jobs
|
|
183
|
+
- examples/rails-demo/bin/kamal
|
|
184
|
+
- examples/rails-demo/bin/rails
|
|
185
|
+
- examples/rails-demo/bin/rake
|
|
186
|
+
- examples/rails-demo/bin/rubocop
|
|
187
|
+
- examples/rails-demo/bin/setup
|
|
188
|
+
- examples/rails-demo/bin/thrust
|
|
189
|
+
- examples/rails-demo/config.ru
|
|
190
|
+
- examples/rails-demo/config/application.rb
|
|
191
|
+
- examples/rails-demo/config/boot.rb
|
|
192
|
+
- examples/rails-demo/config/cable.yml
|
|
193
|
+
- examples/rails-demo/config/cache.yml
|
|
194
|
+
- examples/rails-demo/config/credentials.yml.enc
|
|
195
|
+
- examples/rails-demo/config/database.yml
|
|
196
|
+
- examples/rails-demo/config/deploy.yml
|
|
197
|
+
- examples/rails-demo/config/environment.rb
|
|
198
|
+
- examples/rails-demo/config/environments/development.rb
|
|
199
|
+
- examples/rails-demo/config/environments/production.rb
|
|
200
|
+
- examples/rails-demo/config/environments/test.rb
|
|
201
|
+
- examples/rails-demo/config/importmap.rb
|
|
202
|
+
- examples/rails-demo/config/initializers/assets.rb
|
|
203
|
+
- examples/rails-demo/config/initializers/content_security_policy.rb
|
|
204
|
+
- examples/rails-demo/config/initializers/filter_parameter_logging.rb
|
|
205
|
+
- examples/rails-demo/config/initializers/inflections.rb
|
|
206
|
+
- examples/rails-demo/config/initializers/skywalking_ruby.rb
|
|
207
|
+
- examples/rails-demo/config/locales/en.yml
|
|
208
|
+
- examples/rails-demo/config/puma.rb
|
|
209
|
+
- examples/rails-demo/config/queue.yml
|
|
210
|
+
- examples/rails-demo/config/recurring.yml
|
|
211
|
+
- examples/rails-demo/config/routes.rb
|
|
212
|
+
- examples/rails-demo/config/storage.yml
|
|
213
|
+
- examples/rails-demo/db/cable_schema.rb
|
|
214
|
+
- examples/rails-demo/db/cache_schema.rb
|
|
215
|
+
- examples/rails-demo/db/queue_schema.rb
|
|
216
|
+
- examples/rails-demo/db/seeds.rb
|
|
217
|
+
- examples/rails-demo/lib/tasks/.keep
|
|
218
|
+
- examples/rails-demo/log/.keep
|
|
219
|
+
- examples/rails-demo/public/400.html
|
|
220
|
+
- examples/rails-demo/public/404.html
|
|
221
|
+
- examples/rails-demo/public/406-unsupported-browser.html
|
|
222
|
+
- examples/rails-demo/public/422.html
|
|
223
|
+
- examples/rails-demo/public/500.html
|
|
224
|
+
- examples/rails-demo/public/icon.png
|
|
225
|
+
- examples/rails-demo/public/icon.svg
|
|
226
|
+
- examples/rails-demo/public/robots.txt
|
|
227
|
+
- examples/rails-demo/script/.keep
|
|
228
|
+
- examples/rails-demo/storage/.keep
|
|
229
|
+
- examples/rails-demo/test/application_system_test_case.rb
|
|
230
|
+
- examples/rails-demo/test/controllers/.keep
|
|
231
|
+
- examples/rails-demo/test/fixtures/files/.keep
|
|
232
|
+
- examples/rails-demo/test/helpers/.keep
|
|
233
|
+
- examples/rails-demo/test/integration/.keep
|
|
234
|
+
- examples/rails-demo/test/mailers/.keep
|
|
235
|
+
- examples/rails-demo/test/models/.keep
|
|
236
|
+
- examples/rails-demo/test/system/.keep
|
|
237
|
+
- examples/rails-demo/test/test_helper.rb
|
|
238
|
+
- examples/rails-demo/tmp/.keep
|
|
239
|
+
- examples/rails-demo/tmp/pids/.keep
|
|
240
|
+
- examples/rails-demo/tmp/storage/.keep
|
|
241
|
+
- examples/rails-demo/vendor/.keep
|
|
242
|
+
- examples/rails-demo/vendor/javascript/.keep
|
|
243
|
+
- examples/sinatra-demo/sinatra-demo.rb
|
|
244
|
+
- lib/skywalking.rb
|
|
245
|
+
- lib/skywalking/agent.rb
|
|
246
|
+
- lib/skywalking/configuration.rb
|
|
247
|
+
- lib/skywalking/environment.rb
|
|
248
|
+
- lib/skywalking/log/logger.rb
|
|
249
|
+
- lib/skywalking/plugins/redis5.rb
|
|
250
|
+
- lib/skywalking/plugins/sinatra.rb
|
|
251
|
+
- lib/skywalking/plugins_manager.rb
|
|
252
|
+
- lib/skywalking/proto/asyncprofiler/AsyncProfiler_pb.rb
|
|
253
|
+
- lib/skywalking/proto/asyncprofiler/AsyncProfiler_services_pb.rb
|
|
254
|
+
- lib/skywalking/proto/browser/BrowserPerfCompat_pb.rb
|
|
255
|
+
- lib/skywalking/proto/browser/BrowserPerfCompat_services_pb.rb
|
|
256
|
+
- lib/skywalking/proto/browser/BrowserPerf_pb.rb
|
|
257
|
+
- lib/skywalking/proto/browser/BrowserPerf_services_pb.rb
|
|
258
|
+
- lib/skywalking/proto/common/Command_pb.rb
|
|
259
|
+
- lib/skywalking/proto/common/Common_pb.rb
|
|
260
|
+
- lib/skywalking/proto/ebpf/accesslog_pb.rb
|
|
261
|
+
- lib/skywalking/proto/ebpf/accesslog_services_pb.rb
|
|
262
|
+
- lib/skywalking/proto/event/Event_pb.rb
|
|
263
|
+
- lib/skywalking/proto/event/Event_services_pb.rb
|
|
264
|
+
- lib/skywalking/proto/language-agent/CLRMetricCompat_pb.rb
|
|
265
|
+
- lib/skywalking/proto/language-agent/CLRMetricCompat_services_pb.rb
|
|
266
|
+
- lib/skywalking/proto/language-agent/CLRMetric_pb.rb
|
|
267
|
+
- lib/skywalking/proto/language-agent/CLRMetric_services_pb.rb
|
|
268
|
+
- lib/skywalking/proto/language-agent/ConfigurationDiscoveryService_pb.rb
|
|
269
|
+
- lib/skywalking/proto/language-agent/ConfigurationDiscoveryService_services_pb.rb
|
|
270
|
+
- lib/skywalking/proto/language-agent/JVMMetricCompat_pb.rb
|
|
271
|
+
- lib/skywalking/proto/language-agent/JVMMetricCompat_services_pb.rb
|
|
272
|
+
- lib/skywalking/proto/language-agent/JVMMetric_pb.rb
|
|
273
|
+
- lib/skywalking/proto/language-agent/JVMMetric_services_pb.rb
|
|
274
|
+
- lib/skywalking/proto/language-agent/MeterCompat_pb.rb
|
|
275
|
+
- lib/skywalking/proto/language-agent/MeterCompat_services_pb.rb
|
|
276
|
+
- lib/skywalking/proto/language-agent/Meter_pb.rb
|
|
277
|
+
- lib/skywalking/proto/language-agent/Meter_services_pb.rb
|
|
278
|
+
- lib/skywalking/proto/language-agent/TracingCompat_pb.rb
|
|
279
|
+
- lib/skywalking/proto/language-agent/TracingCompat_services_pb.rb
|
|
280
|
+
- lib/skywalking/proto/language-agent/Tracing_pb.rb
|
|
281
|
+
- lib/skywalking/proto/language-agent/Tracing_services_pb.rb
|
|
282
|
+
- lib/skywalking/proto/logging/Logging_pb.rb
|
|
283
|
+
- lib/skywalking/proto/logging/Logging_services_pb.rb
|
|
284
|
+
- lib/skywalking/proto/management/ManagementCompat_pb.rb
|
|
285
|
+
- lib/skywalking/proto/management/ManagementCompat_services_pb.rb
|
|
286
|
+
- lib/skywalking/proto/management/Management_pb.rb
|
|
287
|
+
- lib/skywalking/proto/management/Management_services_pb.rb
|
|
288
|
+
- lib/skywalking/proto/profile/ProfileCompat_pb.rb
|
|
289
|
+
- lib/skywalking/proto/profile/ProfileCompat_services_pb.rb
|
|
290
|
+
- lib/skywalking/proto/profile/Profile_pb.rb
|
|
291
|
+
- lib/skywalking/proto/profile/Profile_services_pb.rb
|
|
292
|
+
- lib/skywalking/proto/service-mesh-probe/service-mesh_pb.rb
|
|
293
|
+
- lib/skywalking/proto/service-mesh-probe/service-mesh_services_pb.rb
|
|
294
|
+
- lib/skywalking/reporter/buffer_trigger.rb
|
|
295
|
+
- lib/skywalking/reporter/client/grpc_client.rb
|
|
296
|
+
- lib/skywalking/reporter/client/proto.rb
|
|
297
|
+
- lib/skywalking/reporter/grpc.rb
|
|
298
|
+
- lib/skywalking/reporter/protocol.rb
|
|
299
|
+
- lib/skywalking/reporter/report.rb
|
|
300
|
+
- lib/skywalking/reporter/scheduler.rb
|
|
301
|
+
- lib/skywalking/tracing/carrier.rb
|
|
302
|
+
- lib/skywalking/tracing/carrier_item.rb
|
|
303
|
+
- lib/skywalking/tracing/constants.rb
|
|
304
|
+
- lib/skywalking/tracing/entry_span.rb
|
|
305
|
+
- lib/skywalking/tracing/exit_span.rb
|
|
306
|
+
- lib/skywalking/tracing/ignored_context.rb
|
|
307
|
+
- lib/skywalking/tracing/noop_span.rb
|
|
308
|
+
- lib/skywalking/tracing/segment.rb
|
|
309
|
+
- lib/skywalking/tracing/span.rb
|
|
310
|
+
- lib/skywalking/tracing/span_context.rb
|
|
311
|
+
- lib/skywalking/tracing/tag.rb
|
|
312
|
+
- lib/skywalking/utils/id_gen.rb
|
|
313
|
+
- lib/skywalking/version.rb
|
|
314
|
+
homepage: https://skywalking.apache.org/
|
|
315
|
+
licenses:
|
|
316
|
+
- Apache-2.0
|
|
317
|
+
metadata:
|
|
318
|
+
homepage_uri: https://skywalking.apache.org/
|
|
319
|
+
source_code_uri: https://github.com/apache/skywalking-ruby
|
|
320
|
+
changelog_uri: https://github.com/apache/skywalking-ruby/blob/main/CHANGELOG.md
|
|
321
|
+
post_install_message:
|
|
322
|
+
rdoc_options: []
|
|
323
|
+
require_paths:
|
|
324
|
+
- lib
|
|
325
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
326
|
+
requirements:
|
|
327
|
+
- - ">="
|
|
328
|
+
- !ruby/object:Gem::Version
|
|
329
|
+
version: 3.0.0
|
|
330
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
331
|
+
requirements:
|
|
332
|
+
- - ">="
|
|
333
|
+
- !ruby/object:Gem::Version
|
|
334
|
+
version: '0'
|
|
335
|
+
requirements: []
|
|
336
|
+
rubygems_version: 3.5.22
|
|
337
|
+
signing_key:
|
|
338
|
+
specification_version: 4
|
|
339
|
+
summary: Skywalking Ruby
|
|
340
|
+
test_files: []
|