diff --git a/OrcanodeMonitor/Core/Fetcher.cs b/OrcanodeMonitor/Core/Fetcher.cs index 7a92f17..5c9c969 100644 --- a/OrcanodeMonitor/Core/Fetcher.cs +++ b/OrcanodeMonitor/Core/Fetcher.cs @@ -546,6 +546,7 @@ private static void UpdateOrcasoundNode(JsonElement feed, List foundLi { // We have duplicate nodes to merge. In theory we shouldn't have any // node state for the dataplicity-only node. (TODO: verify this) + logger.LogWarning($"Merging duplicate nodes for {node.DataplicitySerial}"); node.DataplicityDescription = dataplicityNode.DataplicityDescription; node.DataplicityName = dataplicityNode.DataplicityName; node.DataplicityOnline = dataplicityNode.DataplicityOnline; diff --git a/OrcanodeMonitor/Core/MezmoFetcher.cs b/OrcanodeMonitor/Core/MezmoFetcher.cs index e361381..2fbfb81 100644 --- a/OrcanodeMonitor/Core/MezmoFetcher.cs +++ b/OrcanodeMonitor/Core/MezmoFetcher.cs @@ -212,7 +212,7 @@ public async static Task UpdateMezmoHostsAsync(OrcanodeMonitorContext context, I Orcanode? oldNode = originalList.Find(a => a.S3NodeName == unfoundNode.S3NodeName); if (oldNode != null) { - logger.LogInformation($"Mezmo node no longer found: {unfoundNode.S3NodeName}"); + logger.LogInformation($"Mezmo node not found: {unfoundNode.S3NodeName}"); oldNode.MezmoLogSize = 0; } } diff --git a/OrcanodeMonitor/Pages/Index.cshtml b/OrcanodeMonitor/Pages/Index.cshtml index 3b559a6..6337478 100644 --- a/OrcanodeMonitor/Pages/Index.cshtml +++ b/OrcanodeMonitor/Pages/Index.cshtml @@ -32,7 +32,7 @@ @Html.DisplayFor(modelItem => item.DisplayName) - + @Html.DisplayFor(modelItem => item.DataplicityConnectionStatus) @@ -72,8 +72,8 @@ } - + @Model.GetUptimePercentage(item)%