• Модуль: scale
  • Путь к файлу: ~/bitrix/modules/scale/lib/serversdata.php
  • Класс: BitrixScaleServersData
  • Вызов: ServersData::getGraphCategories
static function getGraphCategories($hostname)
{
	$result = array();
	$roles = static::getServerRoles($hostname);

	foreach($roles as $roleId => $role)
		$result = array_merge($result, BitrixScaleRolesData::getGraphsCategories($roleId));

	return $result;
}