@extends('layouts.admin') @section('title') Managing Node: {{ $node->name }} @endsection @section('scripts') @parent @endsection @section('content')
Total Servers | {{ count($servers) }} |
Memory Allocated | {{ is_numeric($stats->memory) ? $stats->memory : 0 }} MB of @if(!is_null($node->memory_overallocate)) {{ $node->memory }} @else {{ $node->memory }} @endif MB |
Disk Allocated | {{ is_numeric($stats->disk) ? $stats->disk : 0 }} 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": "/etc/letsencrypt/live/{{ $node->fqdn }}/fullchain.pem",
"key": "/etc/letsencrypt/live/{{ $node->fqdn }}/privkey.pem"
}
},
"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 | -- % | -- |