scout_apm_logging 1.2.0 → 2.0.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.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +1 -1
  3. data/.rubocop.yml +1 -2
  4. data/CHANGELOG.md +5 -11
  5. data/README.md +7 -2
  6. data/lib/scout_apm/logging/config.rb +16 -27
  7. data/lib/scout_apm/logging/context.rb +0 -8
  8. data/lib/scout_apm/logging/loggers/capture.rb +1 -1
  9. data/lib/scout_apm/logging/loggers/formatter.rb +17 -12
  10. data/lib/scout_apm/logging/loggers/logger.rb +1 -127
  11. data/lib/scout_apm/logging/loggers/opentelemetry/log_record_patch.rb +38 -0
  12. data/lib/scout_apm/logging/loggers/opentelemetry/opentelemetry.rb +8 -31
  13. data/lib/scout_apm/logging/version.rb +1 -1
  14. data/lib/scout_apm_logging.rb +3 -1
  15. data/scout_apm_logging.gemspec +4 -5
  16. data/spec/integration/rails/lifecycle_spec.rb +6 -50
  17. data/spec/rails/app.rb +2 -37
  18. metadata +36 -47
  19. data/lib/scout_apm/logging/loggers/opentelemetry/LICENSE +0 -201
  20. data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/log_record.rb +0 -18
  21. data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/logger.rb +0 -64
  22. data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/logger_provider.rb +0 -31
  23. data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/severity_number.rb +0 -43
  24. data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/version.rb +0 -18
  25. data/lib/scout_apm/logging/loggers/opentelemetry/api/logs.rb +0 -28
  26. data/lib/scout_apm/logging/loggers/opentelemetry/exporter/exporter/otlp/logs_exporter.rb +0 -398
  27. data/lib/scout_apm/logging/loggers/opentelemetry/exporter/exporter/otlp/version.rb +0 -20
  28. data/lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/collector/logs/v1/logs_service_pb.rb +0 -43
  29. data/lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/common/v1/common_pb.rb +0 -58
  30. data/lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/logs/v1/logs_pb.rb +0 -91
  31. data/lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/resource/v1/resource_pb.rb +0 -33
  32. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/export/batch_log_record_processor.rb +0 -223
  33. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/export/log_record_exporter.rb +0 -64
  34. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/export.rb +0 -34
  35. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record.rb +0 -170
  36. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record_data.rb +0 -31
  37. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record_limits.rb +0 -49
  38. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record_processor.rb +0 -52
  39. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/logger.rb +0 -98
  40. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/logger_provider.rb +0 -170
  41. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/version.rb +0 -20
  42. data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs.rb +0 -29
  43. data/spec/unit/loggers/logger_spec.rb +0 -95
data/spec/rails/app.rb CHANGED
@@ -5,7 +5,6 @@ rescue LoadError # rubocop:disable Lint/SuppressedException
5
5
  end
6
6
 
7
7
  require 'action_controller/railtie'
8
- require 'action_cable/engine'
9
8
  require 'logger'
10
9
  require 'scout_apm_logging'
11
10
 
@@ -14,58 +13,24 @@ Rails.logger = ActiveSupport::TaggedLogging.new(Logger.new($stdout))
14
13
  class App < ::Rails::Application
15
14
  config.eager_load = false
16
15
  config.log_level = :info
17
- config.action_cable.cable = { 'adapter' => 'async' }
18
- config.action_cable.connection_class = -> { ApplicationCable::Connection }
19
- config.action_cable.disable_request_forgery_protection = true
20
16
 
21
17
  routes.append do
22
- mount ActionCable.server => '/cable'
23
18
  root to: 'root#index'
24
19
  end
25
20
  end
26
21
 
27
22
  class RootController < ActionController::Base
28
- def index # rubocop:disable Metrics/AbcSize
23
+ def index
24
+ Rails.logger.warn('Add location log attributes')
29
25
  Rails.logger.tagged('TEST').info('Some log')
30
26
  Rails.logger.tagged('YIELD') { logger.info('Yield Test') }
31
27
  Rails.logger.info('Another Log')
32
28
  Rails.logger.debug('Should not be captured')
33
- Rails.logger.warn('Warn level log')
34
- Rails.logger.error('Error level log')
35
- Rails.logger.fatal('Fatal level log')
36
29
 
37
30
  render plain: Rails.version
38
31
  end
39
32
  end
40
33
 
41
- module ApplicationCable
42
- class Channel < ActionCable::Channel::Base
43
- end
44
- end
45
-
46
- module ApplicationCable
47
- class Connection < ActionCable::Connection::Base
48
- identified_by :id
49
-
50
- def connect
51
- self.id = SecureRandom.uuid
52
- logger.info("ActionCable Connected: #{id}")
53
- end
54
- end
55
- end
56
-
57
- class TestChannel < ApplicationCable::Channel
58
- def subscribed
59
- stream_from 'test_channel'
60
- logger.info 'Subscribed to test_channel'
61
- end
62
-
63
- def ding(data)
64
- logger.info "Ding received with data: #{data.inspect}"
65
- transmit({ dong: "Server response to: '#{data['message']}'" })
66
- end
67
- end
68
-
69
34
  def initialize_app
70
35
  App.initialize!
71
36
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout_apm_logging
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scout APM
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-18 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: googleapis-common-protos-types
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: google-protobuf
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '3.0'
33
+ version: '3.18'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '3.0'
40
+ version: '3.18'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: opentelemetry-api
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: opentelemetry-exporter-otlp-logs
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 0.2.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 0.2.0
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: opentelemetry-instrumentation-base
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -80,6 +94,20 @@ dependencies:
80
94
  - - ">="
81
95
  - !ruby/object:Gem::Version
82
96
  version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: opentelemetry-logs-sdk
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 0.2.0
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: 0.2.0
83
111
  - !ruby/object:Gem::Dependency
84
112
  name: opentelemetry-sdk
85
113
  requirement: !ruby/object:Gem::Requirement
@@ -164,20 +192,6 @@ dependencies:
164
192
  - - ">="
165
193
  - !ruby/object:Gem::Version
166
194
  version: '0'
167
- - !ruby/object:Gem::Dependency
168
- name: action_cable_client
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - ">="
172
- - !ruby/object:Gem::Version
173
- version: '0'
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - ">="
179
- - !ruby/object:Gem::Version
180
- version: '0'
181
195
  description: Sets up log monitoring for Scout APM Ruby clients.
182
196
  email:
183
197
  - support@scoutapp.com
@@ -201,32 +215,9 @@ files:
201
215
  - lib/scout_apm/logging/loggers/capture.rb
202
216
  - lib/scout_apm/logging/loggers/formatter.rb
203
217
  - lib/scout_apm/logging/loggers/logger.rb
204
- - lib/scout_apm/logging/loggers/opentelemetry/LICENSE
205
218
  - lib/scout_apm/logging/loggers/opentelemetry/NOTICE
206
- - lib/scout_apm/logging/loggers/opentelemetry/api/logs.rb
207
- - lib/scout_apm/logging/loggers/opentelemetry/api/logs/log_record.rb
208
- - lib/scout_apm/logging/loggers/opentelemetry/api/logs/logger.rb
209
- - lib/scout_apm/logging/loggers/opentelemetry/api/logs/logger_provider.rb
210
- - lib/scout_apm/logging/loggers/opentelemetry/api/logs/severity_number.rb
211
- - lib/scout_apm/logging/loggers/opentelemetry/api/logs/version.rb
212
- - lib/scout_apm/logging/loggers/opentelemetry/exporter/exporter/otlp/logs_exporter.rb
213
- - lib/scout_apm/logging/loggers/opentelemetry/exporter/exporter/otlp/version.rb
214
- - lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/collector/logs/v1/logs_service_pb.rb
215
- - lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/common/v1/common_pb.rb
216
- - lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/logs/v1/logs_pb.rb
217
- - lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/resource/v1/resource_pb.rb
219
+ - lib/scout_apm/logging/loggers/opentelemetry/log_record_patch.rb
218
220
  - lib/scout_apm/logging/loggers/opentelemetry/opentelemetry.rb
219
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs.rb
220
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/export.rb
221
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/export/batch_log_record_processor.rb
222
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/export/log_record_exporter.rb
223
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record.rb
224
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record_data.rb
225
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record_limits.rb
226
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record_processor.rb
227
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/logger.rb
228
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/logger_provider.rb
229
- - lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/version.rb
230
221
  - lib/scout_apm/logging/loggers/patches/rails_logger.rb
231
222
  - lib/scout_apm/logging/loggers/patches/tagged_logging.rb
232
223
  - lib/scout_apm/logging/loggers/proxy.rb
@@ -244,7 +235,6 @@ files:
244
235
  - spec/spec_helper.rb
245
236
  - spec/unit/config_spec.rb
246
237
  - spec/unit/loggers/capture_spec.rb
247
- - spec/unit/loggers/logger_spec.rb
248
238
  homepage: https://github.com/scoutapp/scout_apm_ruby_logging
249
239
  licenses:
250
240
  - MIT
@@ -257,7 +247,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
257
247
  requirements:
258
248
  - - ">="
259
249
  - !ruby/object:Gem::Version
260
- version: '2.6'
250
+ version: '3.1'
261
251
  required_rubygems_version: !ruby/object:Gem::Requirement
262
252
  requirements:
263
253
  - - ">="
@@ -276,4 +266,3 @@ test_files:
276
266
  - spec/spec_helper.rb
277
267
  - spec/unit/config_spec.rb
278
268
  - spec/unit/loggers/capture_spec.rb
279
- - spec/unit/loggers/logger_spec.rb
@@ -1,201 +0,0 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction,
10
- and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by
13
- the copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all
16
- other entities that control, are controlled by, or are under common
17
- control with that entity. For the purposes of this definition,
18
- "control" means (i) the power, direct or indirect, to cause the
19
- direction or management of such entity, whether by contract or
20
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
- outstanding shares, or (iii) beneficial ownership of such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity
24
- exercising permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation
28
- source, and configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical
31
- transformation or translation of a Source form, including but
32
- not limited to compiled object code, generated documentation,
33
- and conversions to other media types.
34
-
35
- "Work" shall mean the work of authorship, whether in Source or
36
- Object form, made available under the License, as indicated by a
37
- copyright notice that is included in or attached to the work
38
- (an example is provided in the Appendix below).
39
-
40
- "Derivative Works" shall mean any work, whether in Source or Object
41
- form, that is based on (or derived from) the Work and for which the
42
- editorial revisions, annotations, elaborations, or other modifications
43
- represent, as a whole, an original work of authorship. For the purposes
44
- of this License, Derivative Works shall not include works that remain
45
- separable from, or merely link (or bind by name) to the interfaces of,
46
- the Work and Derivative Works thereof.
47
-
48
- "Contribution" shall mean any work of authorship, including
49
- the original version of the Work and any modifications or additions
50
- to that Work or Derivative Works thereof, that is intentionally
51
- submitted to Licensor for inclusion in the Work by the copyright owner
52
- or by an individual or Legal Entity authorized to submit on behalf of
53
- the copyright owner. For the purposes of this definition, "submitted"
54
- means any form of electronic, verbal, or written communication sent
55
- to the Licensor or its representatives, including but not limited to
56
- communication on electronic mailing lists, source code control systems,
57
- and issue tracking systems that are managed by, or on behalf of, the
58
- Licensor for the purpose of discussing and improving the Work, but
59
- excluding communication that is conspicuously marked or otherwise
60
- designated in writing by the copyright owner as "Not a Contribution."
61
-
62
- "Contributor" shall mean Licensor and any individual or Legal Entity
63
- on behalf of whom a Contribution has been received by Licensor and
64
- subsequently incorporated within the Work.
65
-
66
- 2. Grant of Copyright License. Subject to the terms and conditions of
67
- this License, each Contributor hereby grants to You a perpetual,
68
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
- copyright license to reproduce, prepare Derivative Works of,
70
- publicly display, publicly perform, sublicense, and distribute the
71
- Work and such Derivative Works in Source or Object form.
72
-
73
- 3. Grant of Patent License. Subject to the terms and conditions of
74
- this License, each Contributor hereby grants to You a perpetual,
75
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
- (except as stated in this section) patent license to make, have made,
77
- use, offer to sell, sell, import, and otherwise transfer the Work,
78
- where such license applies only to those patent claims licensable
79
- by such Contributor that are necessarily infringed by their
80
- Contribution(s) alone or by combination of their Contribution(s)
81
- with the Work to which such Contribution(s) was submitted. If You
82
- institute patent litigation against any entity (including a
83
- cross-claim or counterclaim in a lawsuit) alleging that the Work
84
- or a Contribution incorporated within the Work constitutes direct
85
- or contributory patent infringement, then any patent licenses
86
- granted to You under this License for that Work shall terminate
87
- as of the date such litigation is filed.
88
-
89
- 4. Redistribution. You may reproduce and distribute copies of the
90
- Work or Derivative Works thereof in any medium, with or without
91
- modifications, and in Source or Object form, provided that You
92
- meet the following conditions:
93
-
94
- (a) You must give any other recipients of the Work or
95
- Derivative Works a copy of this License; and
96
-
97
- (b) You must cause any modified files to carry prominent notices
98
- stating that You changed the files; and
99
-
100
- (c) You must retain, in the Source form of any Derivative Works
101
- that You distribute, all copyright, patent, trademark, and
102
- attribution notices from the Source form of the Work,
103
- excluding those notices that do not pertain to any part of
104
- the Derivative Works; and
105
-
106
- (d) If the Work includes a "NOTICE" text file as part of its
107
- distribution, then any Derivative Works that You distribute must
108
- include a readable copy of the attribution notices contained
109
- within such NOTICE file, excluding those notices that do not
110
- pertain to any part of the Derivative Works, in at least one
111
- of the following places: within a NOTICE text file distributed
112
- as part of the Derivative Works; within the Source form or
113
- documentation, if provided along with the Derivative Works; or,
114
- within a display generated by the Derivative Works, if and
115
- wherever such third-party notices normally appear. The contents
116
- of the NOTICE file are for informational purposes only and
117
- do not modify the License. You may add Your own attribution
118
- notices within Derivative Works that You distribute, alongside
119
- or as an addendum to the NOTICE text from the Work, provided
120
- that such additional attribution notices cannot be construed
121
- as modifying the License.
122
-
123
- You may add Your own copyright statement to Your modifications and
124
- may provide additional or different license terms and conditions
125
- for use, reproduction, or distribution of Your modifications, or
126
- for any such Derivative Works as a whole, provided Your use,
127
- reproduction, and distribution of the Work otherwise complies with
128
- the conditions stated in this License.
129
-
130
- 5. Submission of Contributions. Unless You explicitly state otherwise,
131
- any Contribution intentionally submitted for inclusion in the Work
132
- by You to the Licensor shall be under the terms and conditions of
133
- this License, without any additional terms or conditions.
134
- Notwithstanding the above, nothing herein shall supersede or modify
135
- the terms of any separate license agreement you may have executed
136
- with Licensor regarding such Contributions.
137
-
138
- 6. Trademarks. This License does not grant permission to use the trade
139
- names, trademarks, service marks, or product names of the Licensor,
140
- except as required for reasonable and customary use in describing the
141
- origin of the Work and reproducing the content of the NOTICE file.
142
-
143
- 7. Disclaimer of Warranty. Unless required by applicable law or
144
- agreed to in writing, Licensor provides the Work (and each
145
- Contributor provides its Contributions) on an "AS IS" BASIS,
146
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
- implied, including, without limitation, any warranties or conditions
148
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
- PARTICULAR PURPOSE. You are solely responsible for determining the
150
- appropriateness of using or redistributing the Work and assume any
151
- risks associated with Your exercise of permissions under this License.
152
-
153
- 8. Limitation of Liability. In no event and under no legal theory,
154
- whether in tort (including negligence), contract, or otherwise,
155
- unless required by applicable law (such as deliberate and grossly
156
- negligent acts) or agreed to in writing, shall any Contributor be
157
- liable to You for damages, including any direct, indirect, special,
158
- incidental, or consequential damages of any character arising as a
159
- result of this License or out of the use or inability to use the
160
- Work (including but not limited to damages for loss of goodwill,
161
- work stoppage, computer failure or malfunction, or any and all
162
- other commercial damages or losses), even if such Contributor
163
- has been advised of the possibility of such damages.
164
-
165
- 9. Accepting Warranty or Additional Liability. While redistributing
166
- the Work or Derivative Works thereof, You may choose to offer,
167
- and charge a fee for, acceptance of support, warranty, indemnity,
168
- or other liability obligations and/or rights consistent with this
169
- License. However, in accepting such obligations, You may act only
170
- on Your own behalf and on Your sole responsibility, not on behalf
171
- of any other Contributor, and only if You agree to indemnify,
172
- defend, and hold each Contributor harmless for any liability
173
- incurred by, or claims asserted against, such Contributor by reason
174
- of your accepting any such warranty or additional liability.
175
-
176
- END OF TERMS AND CONDITIONS
177
-
178
- APPENDIX: How to apply the Apache License to your work.
179
-
180
- To apply the Apache License to your work, attach the following
181
- boilerplate notice, with the fields enclosed by brackets "[]"
182
- replaced with your own identifying information. (Don't include
183
- the brackets!) The text should be enclosed in the appropriate
184
- comment syntax for the file format. We also recommend that a
185
- file or class name and description of purpose be included on the
186
- same "printed page" as the copyright notice for easier
187
- identification within third-party archives.
188
-
189
- Copyright [yyyy] [name of copyright owner]
190
-
191
- Licensed under the Apache License, Version 2.0 (the "License");
192
- you may not use this file except in compliance with the License.
193
- You may obtain a copy of the License at
194
-
195
- http://www.apache.org/licenses/LICENSE-2.0
196
-
197
- Unless required by applicable law or agreed to in writing, software
198
- distributed under the License is distributed on an "AS IS" BASIS,
199
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
- See the License for the specific language governing permissions and
201
- limitations under the License.
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Copyright The OpenTelemetry Authors
4
- #
5
- # SPDX-License-Identifier: Apache-2.0
6
-
7
- module ScoutApm
8
- module Logging
9
- module Loggers
10
- module OpenTelemetry
11
- module Logs
12
- # No-op implementation of an emitted log and its associated attributes.
13
- class LogRecord; end
14
- end
15
- end
16
- end
17
- end
18
- end
@@ -1,64 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Copyright The OpenTelemetry Authors
4
- #
5
- # SPDX-License-Identifier: Apache-2.0
6
-
7
- module ScoutApm
8
- module Logging
9
- module Loggers
10
- module OpenTelemetry
11
- module Logs
12
- # No-op implementation of logger.
13
- class Logger
14
- # rubocop:disable Style/EmptyMethod
15
-
16
- # Emit a {LogRecord} to the processing pipeline.
17
- #
18
- # @param timestamp [optional Time] Time when the event occurred.
19
- # @param observed_timestamp [optional Time] Time when the event was
20
- # observed by the collection system.
21
- # @param context [optional Context] The Context to associate with the
22
- # LogRecord. Intended default: OpenTelemetry::Context.current
23
- # @param severity_number [optional Integer] Numerical value of the
24
- # severity. Smaller numerical values correspond to less severe events
25
- # (such as debug events), larger numerical values correspond to more
26
- # severe events (such as errors and critical events).
27
- # @param [optional String] severity_text Original string representation of
28
- # the severity as it is known at the source. Also known as log level.
29
- # @param [optional String, Numeric, Boolean, Array<String, Numeric,
30
- # Boolean>, Hash{String => String, Numeric, Boolean, Array<String,
31
- # Numeric, Boolean>}] body A value containing the body of the log record.
32
- # @param [optional String] trace_id The trace ID associated with the
33
- # current context.
34
- # @param [optional String] span_id The span ID associated with the
35
- # current context.
36
- # @param [optional TraceFlags] trace_flags The trace flags associated
37
- # with the current context.
38
- # @param [optional Hash{String => String, Numeric, Boolean,
39
- # Array<String, Numeric, Boolean>}] attributes Additional information
40
- # about the event.
41
- # @param [optional Context] context The Context to associate with the
42
- # LogRecord. Intended default: OpenTelemetry::Context.current
43
- #
44
- # @api public
45
- def on_emit(
46
- timestamp: nil,
47
- observed_timestamp: nil,
48
- severity_number: nil,
49
- severity_text: nil,
50
- body: nil,
51
- trace_id: nil,
52
- span_id: nil,
53
- trace_flags: nil,
54
- attributes: nil,
55
- context: nil
56
- )
57
- end
58
- # rubocop:enable Style/EmptyMethod
59
- end
60
- end
61
- end
62
- end
63
- end
64
- end
@@ -1,31 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Copyright The OpenTelemetry Authors
4
- #
5
- # SPDX-License-Identifier: Apache-2.0
6
-
7
- module ScoutApm
8
- module Logging
9
- module Loggers
10
- module OpenTelemetry
11
- module Logs
12
- # No-op implementation of a logger provider.
13
- class LoggerProvider
14
- NOOP_LOGGER = OpenTelemetry::Logs::Logger.new
15
- private_constant :NOOP_LOGGER
16
-
17
- # Returns an {OpenTelemetry::Logs::Logger} instance.
18
- #
19
- # @param [optional String] name Instrumentation package name
20
- # @param [optional String] version Instrumentation package version
21
- #
22
- # @return [OpenTelemetry::Logs::Logger]
23
- def logger(name = nil, version = nil)
24
- @logger ||= NOOP_LOGGER
25
- end
26
- end
27
- end
28
- end
29
- end
30
- end
31
- end
@@ -1,43 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Copyright The OpenTelemetry Authors
4
- #
5
- # SPDX-License-Identifier: Apache-2.0
6
-
7
- module ScoutApm
8
- module Logging
9
- module Loggers
10
- module OpenTelemetry
11
- module Logs
12
- class SeverityNumber
13
- SEVERITY_NUMBER_UNSPECIFIED = 0
14
- SEVERITY_NUMBER_TRACE = 1
15
- SEVERITY_NUMBER_TRACE2 = 2
16
- SEVERITY_NUMBER_TRACE3 = 3
17
- SEVERITY_NUMBER_TRACE4 = 4
18
- SEVERITY_NUMBER_DEBUG = 5
19
- SEVERITY_NUMBER_DEBUG2 = 7
20
- SEVERITY_NUMBER_DEBUG3 = 6
21
- SEVERITY_NUMBER_DEBUG4 = 8
22
- SEVERITY_NUMBER_INFO = 9
23
- SEVERITY_NUMBER_INFO2 = 10
24
- SEVERITY_NUMBER_INFO3 = 11
25
- SEVERITY_NUMBER_INFO4 = 12
26
- SEVERITY_NUMBER_WARN = 13
27
- SEVERITY_NUMBER_WARN2 = 14
28
- SEVERITY_NUMBER_WARN3 = 15
29
- SEVERITY_NUMBER_WARN4 = 16
30
- SEVERITY_NUMBER_ERROR = 17
31
- SEVERITY_NUMBER_ERROR2 = 18
32
- SEVERITY_NUMBER_ERROR3 = 19
33
- SEVERITY_NUMBER_ERROR4 = 20
34
- SEVERITY_NUMBER_FATAL = 21
35
- SEVERITY_NUMBER_FATAL2 = 22
36
- SEVERITY_NUMBER_FATAL3 = 23
37
- SEVERITY_NUMBER_FATAL4 = 24
38
- end
39
- end
40
- end
41
- end
42
- end
43
- end
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Copyright The OpenTelemetry Authors
4
- #
5
- # SPDX-License-Identifier: Apache-2.0
6
-
7
- module ScoutApm
8
- module Logging
9
- module Loggers
10
- module OpenTelemetry
11
- module Logs
12
- ## Current OpenTelemetry logs version
13
- VERSION = '0.1.0'
14
- end
15
- end
16
- end
17
- end
18
- end
@@ -1,28 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Copyright The OpenTelemetry Authors
4
- #
5
- # SPDX-License-Identifier: Apache-2.0
6
-
7
- require_relative 'logs/log_record'
8
- require_relative 'logs/logger'
9
- require_relative 'logs/logger_provider'
10
- require_relative 'logs/severity_number'
11
-
12
- module ScoutApm
13
- module Logging
14
- module Loggers
15
- module OpenTelemetry
16
- # The Logs API records a timestamped record with metadata.
17
- # In OpenTelemetry, any data that is not part of a distributed trace or a
18
- # metric is a log. For example, events are a specific type of log.
19
- #
20
- # This API is provided for logging library authors to build log
21
- # appenders/bridges. It should NOT be used directly by application
22
- # developers.
23
- module Logs
24
- end
25
- end
26
- end
27
- end
28
- end