@extends('layouts.main') @section('title', 'Metrics Dashboard - Prolytics Connect') @section('styles') @endsection @section('content')
We’re thrilled to announce that our Customer-Specific Dashboard will be available in the upcoming version update.
This new feature is designed to provide a personalized and intuitive experience — giving you powerful insights at a glance.
Here’s a preview of how it will look
Select a capacity to refresh visuals, all visuals refresh with each selection. Click "Info" to learn more.
| Workspace | Item Kind | Item Name | Total CU (s) | Total Duration (s) | Operations | Efficiency % |
|---|---|---|---|---|---|---|
|
{{ substr($utilization->workspace_name, 0, 1) }}
{{ $utilization->workspace_name }}
|
{{ $utilization->item_kind }} |
{{ $utilization->item_name ?? 'N/A' }}
|
@php
$maxCu = $utilizations->max('total_cu') ?: 1;
$maxCu = ($maxCu > 0) ? $maxCu : 1; // Ensure maxCu is never 0
$percentage = ($utilization->total_cu && $maxCu > 0) ? (($utilization->total_cu / $maxCu) * 100) : 0;
@endphp
{{ number_format($utilization->total_cu, 1) }}
|
{{ number_format($utilization->total_duration, 1) }} | {{ number_format($utilization->total_operations) }} |
@php
$efficiency = ($utilization->total_duration > 0 && $utilization->total_cu >= 0) ? ($utilization->total_cu / $utilization->total_duration) * 100 : 0;
@endphp
|
No utilization data foundTry adjusting your filters or date range |
||||||
| GRAND TOTAL {{ number_format($utilizations->count()) }} grouped categories |
|
{{ number_format($displayedTotalDuration, 1) }} | {{ number_format($displayedTotalOperations) }} | {{ number_format($displayedEfficiency, 1) }}% | ||