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

Network Interfaces

{% for network_if in system.network_ifs %}

{{ network_if.name }}

Total Sent: {{ network_if.total_sent }}

Total Received: {{ network_if.total_received }}

{% endfor %}

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 %}

Monerod Time Up: {{ node_info.time_up_pretty }}

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 }}

Free Space: {{ node_info.free_space_pretty }}

Database Size: {{ node_info.db_size_pretty }}

Node Peers

{{__tera_context}}