• Модуль: perfmon
  • Путь к файлу: ~/bitrix/modules/perfmon/classes/general/keeper.php
  • Класс: CPerfomanceKeeper
  • Вызов: CPerfomanceKeeper::countComponents
static function countComponents(&$comps_count, &$comps_time, $arIncludeDebug)
{
	$comps_count = 0;
	$comps_time = 0.0;

	foreach ($arIncludeDebug as $ar)
	{
		if (array_key_exists("REL_PATH", $ar))
		{
			$comps_count++;
			$comps_time += $ar["TIME"];
		}
	}
}