Added most node_info information
That I've found relevant or interesting at least
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
}
|
||||
.warning {
|
||||
color: yellow;
|
||||
}
|
||||
.node_data {
|
||||
font-family: monospace, monospace;
|
||||
}
|
||||
@@ -77,31 +78,38 @@
|
||||
{% endfor %}
|
||||
<p>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Monerod Status</h1>
|
||||
<div class="monerodstatus">
|
||||
<div class="monerodinfocard">
|
||||
<div class="infocards">
|
||||
<div class="infocard">
|
||||
{% if node_info.synchronized %}
|
||||
<p><span class="success">Synchronised</span> to {{ node_info.nettype }}</p>
|
||||
{% else %}
|
||||
<p><span class="warning">Synchronising</span> to {{ node_info.nettype }}</p>
|
||||
{% endif %}
|
||||
<p> Running version {{ node_info.version }}
|
||||
<p> Running version <span class="node_data">{{ node_info.version }}</span>
|
||||
{% if node_info.update_available %}
|
||||
<p class="warning">Which can be updated</p>
|
||||
<span class="warning">Which can be updated</span>
|
||||
{% endif %}
|
||||
</p>
|
||||
<p>Monerod Time Up: <span class="node_data">{{ node_info.time_up_pretty }}</span></p>
|
||||
</div>
|
||||
<div class="monerodinfocard">
|
||||
<p>Txs in pool: <span>{{ node_info.tx_pool_size }}</span></p>
|
||||
<p>Total Txs: <span>{{ node_info.tx_count }}</span></p>
|
||||
<div class="infocard">
|
||||
<p>Txs in pool: <span class="node_data">{{ node_info.tx_pool_size }}</span></p>
|
||||
<p>Total Txs: <span class="node_data">{{ node_info.tx_count }}</span></p>
|
||||
</div>
|
||||
<div class="moneroinfocard">
|
||||
<p>Incoming Connections: <span>{{ node_info.incoming_connections_count }}</span></p>
|
||||
<p>Outgoing Connections: <span>{{ node_info.outgoing_connections_count }}</span></p>
|
||||
<p>RPC Connections: <span>{{ node_info.rpc_connections_count }}</span></p>
|
||||
<div class="infocard">
|
||||
<p>Incoming Connections: <span class="node_data">{{ node_info.incoming_connections_count }}</span></p>
|
||||
<p>Outgoing Connections: <span class="node_data">{{ node_info.outgoing_connections_count }}</span></p>
|
||||
<p>RPC Connections: <span class="node_data">{{ node_info.rpc_connections_count }}</span></p>
|
||||
</div>
|
||||
<div class="moneroinfocard">
|
||||
<p>Blockheight: <span>{{ node_info.height }}</span></p>
|
||||
<p>Latest block hash: <span>{{ node_info.top_block_hash }}</span></p>
|
||||
<div class="infocard">
|
||||
<p>Blockheight: <span class="node_data">{{ node_info.height }}</span></p>
|
||||
<p>Latest block hash: <span class="node_data">{{ node_info.top_block_hash }}</span></p>
|
||||
</div>
|
||||
<div class="infocard">
|
||||
<p>Free Space: <span class="node_data">{{ node_info.free_space_pretty }}</span></p>
|
||||
<p>Database Size: <span class="node_data"> {{ node_info.db_size_pretty }}</span></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user