mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 02:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Filament\Admin\Resources\Nodes\Widgets;
 | 
						|
 | 
						|
use App\Models\Node;
 | 
						|
use Filament\Support\RawJs;
 | 
						|
use Filament\Widgets\ChartWidget;
 | 
						|
 | 
						|
class NodeCpuChart extends ChartWidget
 | 
						|
{
 | 
						|
    protected ?string $pollingInterval = '5s';
 | 
						|
 | 
						|
    protected ?string $maxHeight = '300px';
 | 
						|
 | 
						|
    public Node $node;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var array<int, array{cpu: string, timestamp: string}>
 | 
						|
     */
 | 
						|
    protected array $cpuHistory = [];
 | 
						|
 | 
						|
    protected int $threads = 0;
 | 
						|
 | 
						|
    protected function getData(): array
 | 
						|
    {
 | 
						|
        $sessionKey = "node_stats.{$this->node->id}";
 | 
						|
 | 
						|
        $data = $this->node->statistics();
 | 
						|
 | 
						|
        $this->threads = session("{$sessionKey}.threads", $this->node->systemInformation()['cpu_count'] ?? 0);
 | 
						|
 | 
						|
        $this->cpuHistory = session("{$sessionKey}.cpu_history", []);
 | 
						|
        $this->cpuHistory[] = [
 | 
						|
            'cpu' => round($data['cpu_percent'] * $this->threads, 2),
 | 
						|
            'timestamp' => now(user()->timezone ?? 'UTC')->format('H:i:s'),
 | 
						|
        ];
 | 
						|
 | 
						|
        $this->cpuHistory = array_slice($this->cpuHistory, -60);
 | 
						|
        session()->put("{$sessionKey}.cpu_history", $this->cpuHistory);
 | 
						|
 | 
						|
        return [
 | 
						|
            'datasets' => [
 | 
						|
                [
 | 
						|
                    'data' => array_column($this->cpuHistory, 'cpu'),
 | 
						|
                    'backgroundColor' => [
 | 
						|
                        'rgba(96, 165, 250, 0.3)',
 | 
						|
                    ],
 | 
						|
                    'tension' => '0.3',
 | 
						|
                    'fill' => true,
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
            'labels' => array_column($this->cpuHistory, 'timestamp'),
 | 
						|
            'locale' => user()->language ?? 'en',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    protected function getType(): string
 | 
						|
    {
 | 
						|
        return 'line';
 | 
						|
    }
 | 
						|
 | 
						|
    protected function getOptions(): RawJs
 | 
						|
    {
 | 
						|
        return RawJs::make(<<<'JS'
 | 
						|
        {
 | 
						|
            scales: {
 | 
						|
                y: {
 | 
						|
                    min: 0,
 | 
						|
                },
 | 
						|
            },
 | 
						|
            plugins: {
 | 
						|
                legend: {
 | 
						|
                    display: false,
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
    JS);
 | 
						|
    }
 | 
						|
 | 
						|
    public function getHeading(): string
 | 
						|
    {
 | 
						|
        $data = array_slice(end($this->cpuHistory), -60);
 | 
						|
 | 
						|
        $cpu = format_number($data['cpu'], maxPrecision: 2);
 | 
						|
        $max = format_number($this->threads * 100);
 | 
						|
 | 
						|
        return trans('admin/node.cpu_chart', ['cpu' => $cpu, 'max' => $max]);
 | 
						|
    }
 | 
						|
}
 |