function new_relic_rpm_flush_caches in New Relic 7
Implements hook_flush_caches().
Detect when cache tables are cleared.
File
- ./
new_relic_rpm.module, line 105 - Drupal module implementing New Relic.
Code
function new_relic_rpm_flush_caches() {
if (extension_loaded('newrelic')) {
_new_relic_rpm_deploy('Drupal Cache Flush', 'Drupal Cache Flush: all', 'All caches cleared.');
}
}