http://modulesgarden.com * CONTACT -> contact@modulesgarden.com * * * This software is furnished under a license and may be used and copied * only in accordance with the terms of such license and with the * inclusion of the above copyright notice. This software or any other * copies thereof may not be provided or otherwise made available to any * other person. No title to and ownership of the software is hereby * transferred. * * * ******************************************************************** */ namespace ModulesGarden\Servers\ProxmoxCloudVps\App\UI\ServiceGraph\Pages; use ModulesGarden\ProxmoxAddon\App\Models\RrdData; use ModulesGarden\ProxmoxAddon\App\Services\Cloud\ProductService; use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\AdminArea; use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\ClientArea; use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Graphs\Line; use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Graphs\Models\DataSet; use function ModulesGarden\Servers\ProxmoxCloudVps\Core\Helper\sl; /** * Class ServiceCpuGraph * @package ModulesGarden\Servers\ProxmoxCloudVps\App\UI\ServiceGraph\Pages */ class ServiceCpuGraph extends BaseGraph { protected $id = 'serviceCpuGraph'; protected $name = 'serviceCpuGraph'; /** * */ public function initContent() { $this->unsetShowTitle(); //yAxes $this->updateChartScale('yAxes', [ [ 'scaleLabel' => [ 'display' => true, 'labelString' => sl('lang')->tr("CPU %") ], 'ticks' => [ 'beginAtZero' => true, 'fontSize' => 10 ], ]]); //xAxes $this->updateChartScale('xAxes', [ [ 'display' => false, ]]); //Tooltip $this->updateChartOption('tooltips', [ 'callbacks' => [ 'label' => 'mgTooltipCpu' ] ]); } /** * @throws \Exception+ */ public function prepareAjaxData() { session_write_close(); $labels = []; $dataSets = [ 'cpu' => [] ]; foreach ($this->rrdDataQuery() as $rrd) { $labels[] = $rrd->date; $dataSets['cpu'][] = (isset($rrd->cpu) ? (float)$rrd->cpu : 0) * 100; } //Labels $this->setLabels($labels); //CPU Usage $lang = sl('lang'); $dataSet = new DataSet(); $dataSet->setTitle($lang->tr('CPU Usage')) ->setData($dataSets['cpu']) ->setConfigurationDataSet([ "backgroundColor" => "rgba(174, 198, 57, 0.79)", "borderColor" => "rgba(174, 198, 57, 1)" ]); $this->addDataSet($dataSet); } }