@extends('layouts.admin') @section('title') Managing Node: {{ $node->name }} @endsection @section('scripts') @parent @endsection @section('content')
| Total Servers | {{ count($servers) }} | 
| Memory Allocated | {{ $stats->memory }} MB of @if(!is_null($node->memory_overallocate)) {{ $node->memory }} @else {{ $node->memory }} @endif MB | 
| Disk Allocated | {{ $stats->disk }} MB of @if(!is_null($node->disk_overallocate)) {{ $node->disk }} @else {{ $node->disk }} @endif MB | 
auto-installer or auto-updater to setup the daemon.
                    {
    "web": {
        "listen": {{ $node->daemonListen }},
        "ssl": {
            "enabled": {{ $node->sceheme === 'https' ? 'true' : 'false' }},
            "certificate": "~/.ssl/ssl.cert",
            "key": "~/.ssl/ssl.key"
        }
    },
    "docker": {
        "socket": "/var/run/docker.sock"
    },
    "sftp": {
        "path": "{{ $node->daemonBase }}",
        "port": {{ $node->daemonSFTP }},
        "container": "container_id"
    },
    "logger": {
        "path": "logs/",
        "src": false,
        "level": "info",
        "period": "1d",
        "count": 3
    },
    "remote": {
        "download": "{{ url('/remote/download') }}"
    },
    "uploads": {
        "maximumSize": 1000000
    },
    "keys": [
        "{{ $node->daemonSecret }}"
    ]
}| IP Address | Ports | @foreach($allocations as $ip => $ports) | 
| {{ $ip }} | @foreach($ports as $id => $allocation)
                                            @if (($id % 2) === 0)
                                                @if($allocation->assigned_to === null)
                                                     {{ $allocation->port }} @else {{ $allocation->port }} @endif @endif @endforeach | @foreach($ports as $id => $allocation)
                                            @if (($id % 2) === 1)
                                                @if($allocation->assigned_to === null)
                                                     {{ $allocation->port }} @else {{ $allocation->port }} @endif @endif @endforeach | 
10% and the CPU usage below displays 90% that means the server is using 9% of the total system CPU.
                    | Name | Owner | Service | Memory | Disk | CPU | Status | 
|---|---|---|---|---|---|---|
| {{ $server->name }} | {{ $server->a_ownerEmail }} | {{ $server->a_serviceName }} | -- / {{ $server->memory }} MB | {{ $server->disk }} MB | -- % | -- |