80 lines
3.2 KiB
PHP
Executable File
80 lines
3.2 KiB
PHP
Executable File
<div class="glass p-4 space-y-3">
|
|
<div class="flex items-center justify-between">
|
|
<h3 class="text-xs uppercase tracking-widest text-white/50 font-medium">System</h3>
|
|
<span class="text-[10px] font-mono text-white/30"><?php echo e(now()->format('H:i:s')); ?></span>
|
|
</div>
|
|
|
|
|
|
<div>
|
|
<div class="flex items-center justify-between text-xs mb-1">
|
|
<span class="text-white/60">CPU</span>
|
|
<span class="font-mono text-white"><?php echo e($stats['cpu']); ?>%</span>
|
|
</div>
|
|
<div class="h-1 bg-white/5 rounded-full overflow-hidden">
|
|
<div class="h-full bg-primary rounded-full transition-all"
|
|
style="width: <?php echo e($stats['cpu']); ?>%"></div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div>
|
|
<div class="flex items-center justify-between text-xs mb-1">
|
|
<span class="text-white/60">RAM</span>
|
|
<span class="font-mono text-white">
|
|
<?php echo e($stats['memory']['used_mb']); ?>/<?php echo e($stats['memory']['total_mb']); ?> MB
|
|
</span>
|
|
</div>
|
|
<div class="h-1 bg-white/5 rounded-full overflow-hidden">
|
|
<div class="h-full bg-primary rounded-full transition-all"
|
|
style="width: <?php echo e($stats['memory']['percent']); ?>%"></div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div>
|
|
<div class="flex items-center justify-between text-xs mb-1">
|
|
<span class="text-white/60">Disk</span>
|
|
<span class="font-mono text-white">
|
|
<?php echo e($stats['disk']['used_gb']); ?>/<?php echo e($stats['disk']['total_gb']); ?> GB
|
|
</span>
|
|
</div>
|
|
<div class="h-1 bg-white/5 rounded-full overflow-hidden">
|
|
<div class="h-full bg-primary rounded-full transition-all"
|
|
style="width: <?php echo e($stats['disk']['percent']); ?>%"></div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="flex items-center justify-between text-xs">
|
|
<span class="text-white/60">Load</span>
|
|
<span class="font-mono text-white/80">
|
|
<?php echo e(number_format($stats['load']['1m'], 2)); ?>
|
|
|
|
<span class="text-white/30">·</span>
|
|
<?php echo e(number_format($stats['load']['5m'], 2)); ?>
|
|
|
|
<span class="text-white/30">·</span>
|
|
<?php echo e(number_format($stats['load']['15m'], 2)); ?>
|
|
|
|
</span>
|
|
</div>
|
|
|
|
|
|
<div class="flex items-center justify-between text-xs pt-2 border-t border-white/5">
|
|
<span class="text-white/60">Ollama</span>
|
|
<span class="flex items-center gap-1.5 font-mono">
|
|
<span class="w-1.5 h-1.5 rounded-full <?php echo e($stats['ollama']['online'] ? 'bg-emerald-400 shadow-[0_0_6px_rgb(52_211_153)]' : 'bg-red-500'); ?>"></span>
|
|
<span class="text-white/80">
|
|
<?php echo e($stats['ollama']['online'] ? $stats['ollama']['models'].' Modelle' : 'offline'); ?>
|
|
|
|
</span>
|
|
</span>
|
|
</div>
|
|
|
|
|
|
<div class="flex items-center justify-between text-xs">
|
|
<span class="text-white/60">Queue</span>
|
|
<span class="font-mono text-white/80"><?php echo e($stats['queue']); ?> pending</span>
|
|
</div>
|
|
</div>
|
|
<?php /**PATH /var/www/resources/views/livewire/widgets/system-stats.blade.php ENDPATH**/ ?>
|