| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
/**
* File: Extension_NewRelic_Page.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class Extension_NewRelic_Page
*
* phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
*/
class Extension_NewRelic_Page extends Base_Page_Settings {
/**
* Current page
*
* @var string
*/
protected $_page = 'w3tc_monitoring';
/**
* Renders the content for the New Relic extension page.
*
* @return void
*/
public function render_content() {
$w3tc_config = Dispatcher::config();
$monitoring_type = $w3tc_config->get_string( array( 'newrelic', 'monitoring_type' ) );
if ( 'browser' === $monitoring_type ) {
return;
}
$nerser = Dispatcher::component( 'Extension_NewRelic_Service' );
$new_relic_configured = $w3tc_config->get_string( array( 'newrelic', 'api_key' ) ) && $w3tc_config->get_string( array( 'newrelic', 'apm.application_name' ) );
$verify_running = $nerser->verify_running();
$application_settings = array();
try {
$application_settings = $nerser->get_application_settings();
} catch ( \Exception $ex ) {
$application_settings = array();
}
$view_metric = Util_Request::get_boolean( 'view_metric', false );
if ( ! empty( $view_metric ) ) {
$metric_names = $nerser->get_metric_names( Util_Request::get_string( 'regex', '' ) );
}
require W3TC_DIR . '/Extension_NewRelic_Page_View_Apm.php';
}
}