Open fallwith opened 2 months ago
The Ruby content generated for new instrumentation by the instrumentation generator ought to leverage NewRelic::Agent.record_instrumentation_invocation to report supportability metrics.
NewRelic::Agent.record_instrumentation_invocation
Here's Sidekiq's for example:
INSTRUMENTATION_NAME = 'SidekiqClient' NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
https://new-relic.atlassian.net/browse/NR-306578
The Ruby content generated for new instrumentation by the instrumentation generator ought to leverage
NewRelic::Agent.record_instrumentation_invocation
to report supportability metrics.Here's Sidekiq's for example: