scout_apm_logging 1.0.3 → 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.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +17 -2
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +9 -0
- data/README.md +7 -2
- data/lib/scout_apm/logging/config.rb +1 -1
- data/lib/scout_apm/logging/loggers/formatter.rb +2 -2
- data/lib/scout_apm/logging/loggers/opentelemetry/log_record_patch.rb +38 -0
- data/lib/scout_apm/logging/loggers/opentelemetry/opentelemetry.rb +8 -31
- data/lib/scout_apm/logging/version.rb +1 -1
- data/scout_apm_logging.gemspec +5 -3
- data/spec/integration/rails/lifecycle_spec.rb +1 -1
- metadata +37 -31
- data/lib/scout_apm/logging/loggers/opentelemetry/LICENSE +0 -201
- data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/log_record.rb +0 -18
- data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/logger.rb +0 -64
- data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/logger_provider.rb +0 -31
- data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/severity_number.rb +0 -43
- data/lib/scout_apm/logging/loggers/opentelemetry/api/logs/version.rb +0 -18
- data/lib/scout_apm/logging/loggers/opentelemetry/api/logs.rb +0 -28
- data/lib/scout_apm/logging/loggers/opentelemetry/exporter/exporter/otlp/logs_exporter.rb +0 -389
- data/lib/scout_apm/logging/loggers/opentelemetry/exporter/exporter/otlp/version.rb +0 -20
- data/lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/collector/logs/v1/logs_service_pb.rb +0 -43
- data/lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/common/v1/common_pb.rb +0 -58
- data/lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/logs/v1/logs_pb.rb +0 -91
- data/lib/scout_apm/logging/loggers/opentelemetry/exporter/proto/resource/v1/resource_pb.rb +0 -33
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/export/batch_log_record_processor.rb +0 -225
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/export/log_record_exporter.rb +0 -64
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/export.rb +0 -34
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record.rb +0 -115
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record_data.rb +0 -31
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/log_record_processor.rb +0 -53
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/logger.rb +0 -94
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/logger_provider.rb +0 -158
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs/version.rb +0 -20
- data/lib/scout_apm/logging/loggers/opentelemetry/sdk/logs.rb +0 -28
@@ -1,53 +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 SDK
|
12
|
-
module Logs
|
13
|
-
# LogRecordProcessor describes a duck type and provides a synchronous no-op hook for when a
|
14
|
-
# {LogRecord} is emitted. It is not required to subclass this
|
15
|
-
# class to provide an implementation of LogRecordProcessor, provided the interface is
|
16
|
-
# satisfied.
|
17
|
-
class LogRecordProcessor
|
18
|
-
# Called when a {LogRecord} is emitted. Subsequent calls are not
|
19
|
-
# permitted after shutdown is called.
|
20
|
-
# @param [LogRecord] log_record The emitted {LogRecord}
|
21
|
-
# @param [Context] context The {Context}
|
22
|
-
def on_emit(log_record, context); end
|
23
|
-
|
24
|
-
# Export all log records to the configured `Exporter` that have not yet
|
25
|
-
# been exported.
|
26
|
-
#
|
27
|
-
# This method should only be called in cases where it is absolutely
|
28
|
-
# necessary, such as when using some FaaS providers that may suspend
|
29
|
-
# the process after an invocation, but before the `Processor` exports
|
30
|
-
# the completed spans.
|
31
|
-
#
|
32
|
-
# @param [Numeric] timeout An optional timeout in seconds.
|
33
|
-
# @return [Integer] Export::SUCCESS if no error occurred, Export::FAILURE if
|
34
|
-
# a non-specific failure occurred, Export::TIMEOUT if a timeout occurred.
|
35
|
-
def force_flush(timeout: nil)
|
36
|
-
Export::SUCCESS
|
37
|
-
end
|
38
|
-
|
39
|
-
# Called when {LoggerProvider#shutdown} is called.
|
40
|
-
#
|
41
|
-
# @param [Numeric] timeout An optional timeout in seconds.
|
42
|
-
# @return [Integer] Export::SUCCESS if no error occurred, Export::FAILURE if
|
43
|
-
# a non-specific failure occurred, Export::TIMEOUT if a timeout occurred.
|
44
|
-
def shutdown(timeout: nil)
|
45
|
-
Export::SUCCESS
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
@@ -1,94 +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 SDK
|
12
|
-
module Logs
|
13
|
-
# The SDK implementation of OpenTelemetry::Logs::Logger
|
14
|
-
class Logger < OpenTelemetry::Logs::Logger
|
15
|
-
# @api private
|
16
|
-
#
|
17
|
-
# Returns a new {OpenTelemetry::SDK::Logs::Logger} instance. This should
|
18
|
-
# not be called directly. New loggers should be created using
|
19
|
-
# {LoggerProvider#logger}.
|
20
|
-
#
|
21
|
-
# @param [String] name Instrumentation package name
|
22
|
-
# @param [String] version Instrumentation package version
|
23
|
-
# @param [LoggerProvider] logger_provider The {LoggerProvider} that
|
24
|
-
# initialized the logger
|
25
|
-
#
|
26
|
-
# @return [OpenTelemetry::SDK::Logs::Logger]
|
27
|
-
def initialize(name, version, logger_provider)
|
28
|
-
@instrumentation_scope = ::OpenTelemetry::SDK::InstrumentationScope.new(name, version)
|
29
|
-
@logger_provider = logger_provider
|
30
|
-
end
|
31
|
-
|
32
|
-
# Emit a {LogRecord} to the processing pipeline.
|
33
|
-
#
|
34
|
-
# @param [optional Time] timestamp Time when the event occurred.
|
35
|
-
# @param [optional Time] observed_timestamp Time when the event was
|
36
|
-
# observed by the collection system.
|
37
|
-
# @param [optional OpenTelemetry::Trace::SpanContext] span_context The
|
38
|
-
# OpenTelemetry::Trace::SpanContext to associate with the
|
39
|
-
# {LogRecord}.
|
40
|
-
# @param severity_number [optional Integer] Numerical value of the
|
41
|
-
# severity. Smaller numerical values correspond to less severe events
|
42
|
-
# (such as debug events), larger numerical values correspond to more
|
43
|
-
# severe events (such as errors and critical events).
|
44
|
-
# @param [optional String, Numeric, Boolean, Array<String, Numeric,
|
45
|
-
# Boolean>, Hash{String => String, Numeric, Boolean, Array<String,
|
46
|
-
# Numeric, Boolean>}] body A value containing the body of the log record.
|
47
|
-
# @param [optional Hash{String => String, Numeric, Boolean,
|
48
|
-
# Array<String, Numeric, Boolean>}] attributes Additional information
|
49
|
-
# about the event.
|
50
|
-
# @param [optional String (16-byte binary)] trace_id Request trace id as
|
51
|
-
# defined in {https://www.w3.org/TR/trace-context/#trace-id W3C Trace Context}.
|
52
|
-
# Can be set for logs that are part of request processing and have an
|
53
|
-
# assigned trace id.
|
54
|
-
# @param [optional String (8-byte binary)] span_id Span id. Can be set
|
55
|
-
# for logs that are part of a particular processing span. If span_id
|
56
|
-
# is present trace_id should also be present.
|
57
|
-
# @param [optional Integer (8-bit byte of bit flags)] trace_flags Trace
|
58
|
-
# flag as defined in {https://www.w3.org/TR/trace-context/#trace-flags W3C Trace Context}
|
59
|
-
# specification. At the time of writing the specification defines one
|
60
|
-
# flag - the SAMPLED flag.
|
61
|
-
# @param [optional OpenTelemetry::Context] context The OpenTelemetry::Context
|
62
|
-
# to associate with the {LogRecord}.
|
63
|
-
#
|
64
|
-
# @api public
|
65
|
-
def on_emit(timestamp: nil,
|
66
|
-
observed_timestamp: Time.now,
|
67
|
-
severity_text: nil,
|
68
|
-
severity_number: nil,
|
69
|
-
body: nil,
|
70
|
-
attributes: nil,
|
71
|
-
trace_id: nil,
|
72
|
-
span_id: nil,
|
73
|
-
trace_flags: nil,
|
74
|
-
context: ::OpenTelemetry::Context.current)
|
75
|
-
|
76
|
-
@logger_provider.on_emit(timestamp: timestamp,
|
77
|
-
observed_timestamp: observed_timestamp,
|
78
|
-
severity_text: severity_text,
|
79
|
-
severity_number: severity_number,
|
80
|
-
body: body,
|
81
|
-
attributes: attributes,
|
82
|
-
trace_id: nil,
|
83
|
-
span_id: nil,
|
84
|
-
trace_flags: nil,
|
85
|
-
instrumentation_scope: @instrumentation_scope,
|
86
|
-
context: context)
|
87
|
-
end
|
88
|
-
end
|
89
|
-
end
|
90
|
-
end
|
91
|
-
end
|
92
|
-
end
|
93
|
-
end
|
94
|
-
end
|
@@ -1,158 +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 SDK
|
12
|
-
module Logs
|
13
|
-
# The SDK implementation of OpenTelemetry::Logs::LoggerProvider.
|
14
|
-
class LoggerProvider < OpenTelemetry::Logs::LoggerProvider
|
15
|
-
UNEXPECTED_ERROR_MESSAGE = 'unexpected error in ' \
|
16
|
-
'OpenTelemetry::SDK::Logs::LoggerProvider#%s'
|
17
|
-
|
18
|
-
private_constant :UNEXPECTED_ERROR_MESSAGE
|
19
|
-
|
20
|
-
# Returns a new LoggerProvider instance.
|
21
|
-
#
|
22
|
-
# @param [optional Resource] resource The resource to associate with
|
23
|
-
# new LogRecords created by {Logger}s created by this LoggerProvider.
|
24
|
-
#
|
25
|
-
# @return [OpenTelemetry::SDK::Logs::LoggerProvider]
|
26
|
-
def initialize(resource: OpenTelemetry::SDK::Resources::Resource.create)
|
27
|
-
@log_record_processors = []
|
28
|
-
@mutex = Mutex.new
|
29
|
-
@resource = resource
|
30
|
-
@stopped = false
|
31
|
-
end
|
32
|
-
|
33
|
-
# Returns an {OpenTelemetry::SDK::Logs::Logger} instance.
|
34
|
-
#
|
35
|
-
# @param [String] name Instrumentation package name
|
36
|
-
# @param [optional String] version Instrumentation package version
|
37
|
-
#
|
38
|
-
# @return [OpenTelemetry::SDK::Logs::Logger]
|
39
|
-
def logger(name:, version: nil)
|
40
|
-
version ||= ''
|
41
|
-
|
42
|
-
if !name.is_a?(String) || name.empty?
|
43
|
-
OpenTelemetry.logger.warn('LoggerProvider#logger called with an ' \
|
44
|
-
"invalid name. Name provided: #{name.inspect}")
|
45
|
-
end
|
46
|
-
|
47
|
-
Logger.new(name, version, self)
|
48
|
-
end
|
49
|
-
|
50
|
-
# Adds a new log record processor to this LoggerProvider's
|
51
|
-
# log_record_processors.
|
52
|
-
#
|
53
|
-
# @param [LogRecordProcessor] log_record_processor The
|
54
|
-
# {LogRecordProcessor} to add to this LoggerProvider.
|
55
|
-
def add_log_record_processor(log_record_processor)
|
56
|
-
@mutex.synchronize do
|
57
|
-
if @stopped
|
58
|
-
OpenTelemetry.logger.warn('calling LoggerProvider#' \
|
59
|
-
'add_log_record_processor after shutdown.')
|
60
|
-
return
|
61
|
-
end
|
62
|
-
@log_record_processors = @log_record_processors.dup.push(log_record_processor)
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
# Attempts to stop all the activity for this LoggerProvider. Calls
|
67
|
-
# {LogRecordProcessor#shutdown} for all registered {LogRecordProcessor}s.
|
68
|
-
#
|
69
|
-
# This operation may block until all log records are processed. Must
|
70
|
-
# be called before turning off the main application to ensure all data
|
71
|
-
# are processed and exported.
|
72
|
-
#
|
73
|
-
# After this is called all newly created {LogRecord}s will be no-op.
|
74
|
-
#
|
75
|
-
# @param [optional Numeric] timeout An optional timeout in seconds.
|
76
|
-
# @return [Integer] Export::SUCCESS if no error occurred, Export::FAILURE if
|
77
|
-
# a non-specific failure occurred, Export::TIMEOUT if a timeout occurred.
|
78
|
-
def shutdown(timeout: nil)
|
79
|
-
@mutex.synchronize do
|
80
|
-
if @stopped
|
81
|
-
OpenTelemetry.logger.warn('LoggerProvider#shutdown called multiple times.')
|
82
|
-
return Export::FAILURE
|
83
|
-
end
|
84
|
-
|
85
|
-
start_time = OpenTelemetry::Common::Utilities.timeout_timestamp
|
86
|
-
results = @log_record_processors.map do |processor|
|
87
|
-
remaining_timeout = OpenTelemetry::Common::Utilities.maybe_timeout(timeout, start_time)
|
88
|
-
break [Export::TIMEOUT] if remaining_timeout&.zero?
|
89
|
-
|
90
|
-
processor.shutdown(timeout: remaining_timeout)
|
91
|
-
end
|
92
|
-
|
93
|
-
@stopped = true
|
94
|
-
results.max || Export::SUCCESS
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
# Immediately export all {LogRecord}s that have not yet been exported
|
99
|
-
# for all the registered {LogRecordProcessor}s.
|
100
|
-
#
|
101
|
-
# This method should only be called in cases where it is absolutely
|
102
|
-
# necessary, such as when using some FaaS providers that may suspend
|
103
|
-
# the process after an invocation, but before the {LogRecordProcessor}
|
104
|
-
# exports the completed {LogRecord}s.
|
105
|
-
#
|
106
|
-
# @param [optional Numeric] timeout An optional timeout in seconds.
|
107
|
-
# @return [Integer] Export::SUCCESS if no error occurred, Export::FAILURE if
|
108
|
-
# a non-specific failure occurred, Export::TIMEOUT if a timeout occurred.
|
109
|
-
def force_flush(timeout: nil)
|
110
|
-
@mutex.synchronize do
|
111
|
-
return Export::SUCCESS if @stopped
|
112
|
-
|
113
|
-
start_time = OpenTelemetry::Common::Utilities.timeout_timestamp
|
114
|
-
results = @log_record_processors.map do |processor|
|
115
|
-
remaining_timeout = OpenTelemetry::Common::Utilities.maybe_timeout(timeout, start_time)
|
116
|
-
return Export::TIMEOUT if remaining_timeout&.zero?
|
117
|
-
|
118
|
-
processor.force_flush(timeout: remaining_timeout)
|
119
|
-
end
|
120
|
-
|
121
|
-
results.max || Export::SUCCESS
|
122
|
-
end
|
123
|
-
end
|
124
|
-
|
125
|
-
# @api private
|
126
|
-
def on_emit(timestamp: nil,
|
127
|
-
observed_timestamp: nil,
|
128
|
-
severity_text: nil,
|
129
|
-
severity_number: nil,
|
130
|
-
body: nil,
|
131
|
-
attributes: nil,
|
132
|
-
trace_id: nil,
|
133
|
-
span_id: nil,
|
134
|
-
trace_flags: nil,
|
135
|
-
instrumentation_scope: nil,
|
136
|
-
context: nil)
|
137
|
-
|
138
|
-
log_record = LogRecord.new(timestamp: timestamp,
|
139
|
-
observed_timestamp: observed_timestamp,
|
140
|
-
severity_text: severity_text,
|
141
|
-
severity_number: severity_number,
|
142
|
-
body: body,
|
143
|
-
attributes: attributes,
|
144
|
-
trace_id: trace_id,
|
145
|
-
span_id: span_id,
|
146
|
-
trace_flags: trace_flags,
|
147
|
-
resource: @resource,
|
148
|
-
instrumentation_scope: instrumentation_scope)
|
149
|
-
|
150
|
-
@log_record_processors.each { |processor| processor.on_emit(log_record, context) }
|
151
|
-
end
|
152
|
-
end
|
153
|
-
end
|
154
|
-
end
|
155
|
-
end
|
156
|
-
end
|
157
|
-
end
|
158
|
-
end
|
@@ -1,20 +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 SDK
|
12
|
-
module Logs
|
13
|
-
# Current OpenTelemetry logs sdk version
|
14
|
-
VERSION = '0.1.0'
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
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/version'
|
8
|
-
require_relative 'logs/logger'
|
9
|
-
require_relative 'logs/logger_provider'
|
10
|
-
require_relative 'logs/log_record'
|
11
|
-
require_relative 'logs/log_record_data'
|
12
|
-
require_relative 'logs/log_record_processor'
|
13
|
-
require_relative 'logs/export'
|
14
|
-
|
15
|
-
module ScoutApm
|
16
|
-
module Logging
|
17
|
-
module Loggers
|
18
|
-
module OpenTelemetry
|
19
|
-
module SDK
|
20
|
-
# The Logs module contains the OpenTelemetry logs reference
|
21
|
-
# implementation.
|
22
|
-
module Logs
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|