Module: NewRelic::Agent::Instrumentation::ActiveRecordPrepend::RelationExtensions
- Defined in:
- lib/new_relic/agent/instrumentation/active_record_prepend.rb
Instance Method Summary collapse
- #calculate(*args, &blk) ⇒ Object
- #delete_all(*args, &blk) ⇒ Object
- #destroy_all(*args, &blk) ⇒ Object
- #pluck(*args, &blk) ⇒ Object
- #update_all(*args, &blk) ⇒ Object
Instance Method Details
permalink #calculate(*args, &blk) ⇒ Object
[View source]
83 84 85 86 87 |
# File 'lib/new_relic/agent/instrumentation/active_record_prepend.rb', line 83 def calculate(*args, &blk) ::NewRelic::Agent.with_database_metric_name(self.name, nil, ACTIVE_RECORD) do super end end |
permalink #delete_all(*args, &blk) ⇒ Object
[View source]
71 72 73 74 75 |
# File 'lib/new_relic/agent/instrumentation/active_record_prepend.rb', line 71 def delete_all(*args, &blk) ::NewRelic::Agent.with_database_metric_name(self.name, nil, ACTIVE_RECORD) do super end end |
permalink #destroy_all(*args, &blk) ⇒ Object
[View source]
77 78 79 80 81 |
# File 'lib/new_relic/agent/instrumentation/active_record_prepend.rb', line 77 def destroy_all(*args, &blk) ::NewRelic::Agent.with_database_metric_name(self.name, nil, ACTIVE_RECORD) do super end end |
permalink #pluck(*args, &blk) ⇒ Object
[View source]
89 90 91 92 93 |
# File 'lib/new_relic/agent/instrumentation/active_record_prepend.rb', line 89 def pluck(*args, &blk) ::NewRelic::Agent.with_database_metric_name(self.name, nil, ACTIVE_RECORD) do super end end |
permalink #update_all(*args, &blk) ⇒ Object
[View source]
65 66 67 68 69 |
# File 'lib/new_relic/agent/instrumentation/active_record_prepend.rb', line 65 def update_all(*args, &blk) ::NewRelic::Agent.with_database_metric_name(self.name, nil, ACTIVE_RECORD) do super end end |