@@ -67,6 +97,14 @@ export function NodeCard({ node }: NodeCardProps) {
Status:
{node.Status}
+
+ IP Address:
+ {isLoading ? (
+
+ ) : (
+ {data.Status.Addr}
+ )}
+
Availability:
{node.Availability}
@@ -75,6 +113,29 @@ export function NodeCard({ node }: NodeCardProps) {
Engine Version:
{node.EngineVersion}
+
+ CPU:
+ {isLoading ? (
+
+ ) : (
+
+ {(data.Description.Resources.NanoCPUs / 1e9).toFixed(2)} GHz
+
+ )}
+
+
+ Memory:
+ {isLoading ? (
+
+ ) : (
+
+ {(data.Description.Resources.MemoryBytes / 1024 ** 3).toFixed(
+ 2,
+ )}{" "}
+ GB
+
+ )}
+
TLS Status:
{node.TLSStatus}