debian-mirror-gitlab/lib/gitlab/lograge/custom_options.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.8 KiB
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# frozen_string_literal: true
module Gitlab
module Lograge
module CustomOptions
2020-05-24 23:13:21 +05:30
include ::Gitlab::Logging::CloudflareHelper
2020-04-08 14:13:33 +05:30
LIMITED_ARRAY_SENTINEL = { key: 'truncated', value: '...' }.freeze
IGNORE_PARAMS = Set.new(%w(controller action format)).freeze
2022-08-13 15:12:31 +05:30
KNOWN_PAYLOAD_PARAMS = [:remote_ip, :user_id, :username, :ua, :queue_duration_s, :response_bytes,
2021-12-11 22:18:48 +05:30
:etag_route, :request_urgency, :target_duration_s] + CLOUDFLARE_CUSTOM_HEADERS.values
2020-04-08 14:13:33 +05:30
def self.call(event)
params = event
.payload[:params]
.each_with_object([]) { |(k, v), array| array << { key: k, value: v } unless IGNORE_PARAMS.include?(k) }
payload = {
time: Time.now.utc.iso8601(3),
2021-12-11 22:18:48 +05:30
params: Gitlab::Utils::LogLimitedArray.log_limited_array(params, sentinel: LIMITED_ARRAY_SENTINEL)
2020-04-08 14:13:33 +05:30
}
2021-12-11 22:18:48 +05:30
2020-05-24 23:13:21 +05:30
payload.merge!(event.payload[:metadata]) if event.payload[:metadata]
2021-12-11 22:18:48 +05:30
optional_payload_params = event.payload.slice(*KNOWN_PAYLOAD_PARAMS).compact
payload.merge!(optional_payload_params)
2020-05-24 23:13:21 +05:30
2020-04-08 14:13:33 +05:30
::Gitlab::InstrumentationHelper.add_instrumentation_data(payload)
2020-06-23 00:09:42 +05:30
payload[Labkit::Correlation::CorrelationId::LOG_KEY] = event.payload[Labkit::Correlation::CorrelationId::LOG_KEY] || Labkit::Correlation::CorrelationId.current_id
2020-04-08 14:13:33 +05:30
# https://github.com/roidrage/lograge#logging-errors--exceptions
exception = event.payload[:exception_object]
::Gitlab::ExceptionLogFormatter.format!(exception, payload)
2022-01-26 12:08:38 +05:30
if Feature.enabled?(:feature_flag_state_logs, type: :ops)
payload[:feature_flag_states] = Feature.logged_states.map { |key, state| "#{key}:#{state ? 1 : 0}" }
end
2022-08-13 15:12:31 +05:30
if Feature.disabled?(:log_response_length)
payload.delete(:response_bytes)
end
2020-04-08 14:13:33 +05:30
payload
end
end
end
end