From 5b9536978083f77157a1fb9b874a9aefb8f7c8f7 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Thu, 5 Jan 2017 14:49:37 +0100 Subject: [PATCH] dont waste time by retrieving per script stats --- plugins/php/php_opcache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/php/php_opcache.php b/plugins/php/php_opcache.php index c23d62b0..a4437a35 100644 --- a/plugins/php/php_opcache.php +++ b/plugins/php/php_opcache.php @@ -5,7 +5,7 @@ if (function_exists('opcache_get_status')) { - $data = opcache_get_status(); + $data = opcache_get_status(false); $output = array( 'mem_used.value' => $data['memory_usage']['used_memory'], 'mem_free.value' => $data['memory_usage']['free_memory'],