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\ProxmoxAddon\App\UI\NodeDetail\Pages; use ModulesGarden\ProxmoxAddon as main; use ModulesGarden\ProxmoxAddon\Core\UI\Interfaces\AdminArea; use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Forms\Fields\Select; use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Graphs\Line; use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Graphs\Models\DataSet; class NetworkGraph extends Line implements AdminArea { use LoadAPIData; protected $id = 'networkGraph'; protected $name = 'networkGraph'; protected $graphSettingsEnabled = true; protected $graphSettingsKey = 'cpuGraphSettings'; public function initContent() { $selectScope = new Select('timeframe'); $selectScope->setAvailableValues([ 'hour' => 'Hour', 'day' => 'Day', 'week' => 'Week', 'year' => 'Year', ]); $selectScope->setDefaultValue('week'); $this->addSettingField($selectScope); $this->updateChartScale('yAxes', [ [ 'scaleLabel' => [ 'display' => true, 'labelString' => 'Bytes/s' ], 'ticks' => [ 'callback' => 'mgBytesToSize' ], ]]); $this->updateChartOption('tooltips', [ 'callbacks' => [ 'label' => 'mgTooltipCallbackForNet' ] ]); } public function prepareAjaxData() { if ($this->configChartsSettings->timeframe) { $this->timeframe = $this->configChartsSettings->timeframe; } $rrdata = main\Core\Helper\DatabaseCache::loadData( $this->graphSettingsKey .$this->timeframe. '_cacheData', [$this, 'loadApiData'], 30, true); $labels = []; $dataSets = [ 'netin' => [], 'netout' => [], ]; $dateFormat = in_array($this->timeframe, ['hour', 'day']) ? "H:i:s" : "Y-m-d"; foreach ($rrdata as $rrd) { $labels[] = date($dateFormat, $rrd['time']); $dataSets['netin'][] = (float)$rrd['netin'] ; $dataSets['netout'][] = (float)$rrd['netout']; } //Labels $this->setLabels($labels); //Net In $lang = main\Core\ServiceLocator::call('lang'); $dataSet = new DataSet(); $dataSet->setTitle($lang->absoluteT('Net In')) ->setData($dataSets['netin']) ->setConfigurationDataSet([ "backgroundColor" => 'rgba(174, 198, 57, 0.79)', "borderColor" => 'rgba(174, 198, 57, 1)', ]); $this->addDataSet($dataSet); //Net Out $dataSet = new DataSet(); $dataSet->setTitle($lang->absoluteT('Net Out')) ->setData($dataSets['netout']) ->setConfigurationDataSet([ "backgroundColor" => 'rgba(39, 133, 134, 0.91)', "borderColor" => 'rgba(39, 133, 134, 1)', ]); $this->addDataSet($dataSet); } }