Node Device Info

Sys Info

Hostname: {{ system.hostname }}

Uptime: {{ system.uptime }}

OS: {{ system.operating_system }}

Average Load: {{ system.average_load.0 }} {{ system.average_load.1 }} {{ system.average_load.2 }}

{% if system.restart_needed %}

RESTART NEEDED

{% endif %}

HDD Info

{% for disk in system.disks %}

{{disk.name}}

Mounted at: {{disk.mount_point}}

{{disk.available_space}} of {{disk.total_space}} available

{% if not loop.last %}
{% endif %} {% endfor %}

Temperatures

{% for comp in system.components %}

{{ comp.name }} - {{ comp.temperature }}°C

{% if not loop.last %}
{% endif %} {% endfor %}

RAM

{{ system.ram.used_memory }} of {{ system.ram.total_memory }} RAM current in use

{{ system.ram.used_swap }} of {{ system.ram.total_swap }} swap currently in use

Monerod Status

{% if node_info.synchronized %}

Synchronised to {{ node_info.nettype }}

{% else %}

Synchronising to {{ node_info.nettype }}

{% endif %}

Running version {{ node_info.version }} {% if node_info.update_available %}

Which can be updated

{% endif %}

Txs in pool: {{ node_info.tx_pool_size }}

Total Txs: {{ node_info.tx_count }}

Incoming Connections: {{ node_info.incoming_connections_count }}

Outgoing Connections: {{ node_info.outgoing_connections_count }}

RPC Connections: {{ node_info.rpc_connections_count }}

Blockheight: {{ node_info.height }}

Latest block hash: {{ node_info.top_block_hash }}

Node Peers

{{__tera_context}}