uawdijnntqw1x1x1
IP : 216.73.217.174
Hostname : mailtech.lifestyleretreats.com
Kernel : Linux mailtech.lifestyleretreats.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Disable Function : exec,passthru,shell_exec,system
OS : Linux
PATH:
/
home
/
lrindo5
/
radhia.lrindo.com
/
wp-content
/
plugins
/
w3-total-cache
/
UsageStatistics_Plugin.php
/
/
<?php namespace W3TC; class UsageStatistics_Plugin { public function run() { $core = Dispatcher::component( 'UsageStatistics_Core' ); $core->add_shutdown_handler(); // usage default statistics handling add_action( 'w3tc_usage_statistics_of_request', array( $this, 'w3tc_usage_statistics_of_request' ), 10, 1 ); add_filter( 'w3tc_usage_statistics_metrics', array( $this, 'w3tc_usage_statistics_metrics' ) ); } public function w3tc_usage_statistics_of_request( $storage ) { $used_100kb = memory_get_peak_usage( true ) / 1024 / 10.24; $storage->counter_add( 'php_memory_100kb', $used_100kb ); $storage->counter_add( 'php_requests', 1 ); } public function w3tc_usage_statistics_metrics( $metrics ) { return array_merge( $metrics, array( 'php_memory_100kb', 'php_requests' ) ); } }
/home/lrindo5/radhia.lrindo.com/wp-content/plugins/w3-total-cache/UsageStatistics_Plugin.php