Created
May 11, 2020 07:06
-
-
Save esamattis/b98e25eb052f44fc1067795e5d7f93d0 to your computer and use it in GitHub Desktop.
WordPress Action logger
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ActionLogger { | |
static $started; | |
static $prev; | |
static function start() { | |
self::$started = hrtime(true); | |
self::$prev = hrtime(true); | |
add_action('all', [self::class, '__action_all'], 10000); | |
} | |
static function __action_all() { | |
$action = current_filter(); | |
if (in_array($action, ['esc_html', 'gettext', 'graphql_field_definition'])) { | |
return; | |
} | |
$diff = self::to_ms( (hrtime(true) - self::$prev) ); | |
$pos = self::to_ms( (hrtime(true) - self::$started) ); | |
if ($diff < 0.1) { | |
return; | |
} | |
error_log("ACTION ${pos}ms $action $diff ms"); | |
self::$prev = hrtime(true); | |
} | |
static function to_ms($nanoseconds) { | |
return $nanoseconds / 1e+6; | |
} | |
} | |
ActionLogger::start(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment