# frozen_string_literal: true # Copyright The OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 module OpenTelemetry module Instrumentation module ActiveRecord module Patches # Module to prepend to ActiveRecord::Base for instrumentation module Querying def self.prepended(base) class << base prepend ClassMethods end end # Contains ActiveRecord::Querying to be patched module ClassMethods def find_by_sql(...) tracer.in_span("#{self}.find_by_sql") do super end end private def tracer ActiveRecord::Instrumentation.instance.tracer end end end end end end end