Sha256: 062e988c718e70b3045a208974321a43569b34174afd1a7c3fe024017d06fb85
Contents?: true
Size: 944 Bytes
Versions: 16
Compression:
Stored size: 944 Bytes
Contents
# typed: true module Datadog module Tracing module Contrib module ActionView # ActionView integration constants # @public_api Changing resource names, tag names, or environment variables creates breaking changes. module Ext ENV_ENABLED = 'DD_TRACE_ACTION_VIEW_ENABLED'.freeze ENV_ANALYTICS_ENABLED = 'DD_TRACE_ACTION_VIEW_ANALYTICS_ENABLED'.freeze ENV_ANALYTICS_SAMPLE_RATE = 'DD_TRACE_ACTION_VIEW_ANALYTICS_SAMPLE_RATE'.freeze SPAN_RENDER_PARTIAL = 'rails.render_partial'.freeze SPAN_RENDER_TEMPLATE = 'rails.render_template'.freeze TAG_COMPONENT = 'action_view'.freeze TAG_LAYOUT = 'rails.layout'.freeze TAG_OPERATION_RENDER_PARTIAL = 'render_partial'.freeze TAG_OPERATION_RENDER_TEMPLATE = 'render_template'.freeze TAG_TEMPLATE_NAME = 'rails.template_name'.freeze end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems