Module: NewRelic::Agent::Instrumentation::ViewComponent

Included in:
ViewComponent::Prepend
Defined in:
lib/new_relic/agent/instrumentation/view_component/instrumentation.rb

Defined Under Namespace

Modules: Chain, Prepend

Constant Summary collapse

INSTRUMENTATION_NAME =
NewRelic::Agent.base_name(name)

Instance Method Summary collapse

Instance Method Details

#metric_nameObject



23
24
25
26
27
28
29
# File 'lib/new_relic/agent/instrumentation/view_component/instrumentation.rb', line 23

def metric_name
  "View/#{metric_path(self.class.source_location)}/#{self.class.name}"
rescue => e
  NewRelic::Agent.logger.error('Error identifying View Component metric name', e)

  'View/component'
end

#metric_path(identifier) ⇒ Object



31
32
33
34
35
36
37
38
39
# File 'lib/new_relic/agent/instrumentation/view_component/instrumentation.rb', line 31

def metric_path(identifier)
  return 'component' unless identifier

  if (parts = identifier.split('/')).size > 1
    parts[-2..-1].join('/') # Get filepath by assuming the Rails' structure: app/components/home/example_component.rb
  else
    NewRelic::Agent::UNKNOWN_METRIC
  end
end

#render_in_with_tracing(*args) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/new_relic/agent/instrumentation/view_component/instrumentation.rb', line 9

def render_in_with_tracing(*args)
  NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)

  begin
    segment = NewRelic::Agent::Tracer.start_segment(name: metric_name)
    yield
  rescue => e
    NewRelic::Agent.notice_error(e)
    raise
  ensure
    segment&.finish
  end
end