Sha256: 01f7fc053b9e588666e65981437d9d2b885314e7570987d655ad360b671978ce
Contents?: true
Size: 679 Bytes
Versions: 58
Compression:
Stored size: 679 Bytes
Contents
# (c) Copyright IBM Corp. 2021 # (c) Copyright Instana Inc. 2021 module Instana module Instrumentation module ActionView def render_partial(*args) call_payload = { render: { type: :partial, name: @options.is_a?(Hash) ? @options[:partial].to_s : 'Unknown' } } ::Instana::Tracer.trace(:render, call_payload) { super(*args) } end def render_collection(*args) call_payload = { render: { type: :collection, name: @path.to_s } } ::Instana::Tracer.trace(:render, call_payload) { super(*args) } end end end end
Version data entries
58 entries across 58 versions & 1 rubygems