Harden RTM endpoint adapter handling
This commit is contained in:
@@ -18,12 +18,21 @@ namespace BizTalkCheckmkPulse
|
||||
private readonly MonitoringOptions _options;
|
||||
private readonly FileLogger _logger;
|
||||
|
||||
/// <summary>
|
||||
/// Initialisiert die Endpoint-Pruefung mit Laufzeitgrenzen und Dateiprotokoll.
|
||||
/// </summary>
|
||||
/// <param name="options">Validierte Monitoring-Konfiguration.</param>
|
||||
/// <param name="logger">Gemeinsames Provider-Dateiprotokoll.</param>
|
||||
public EndpointConnectivityProbe(MonitoringOptions options, FileLogger logger)
|
||||
{
|
||||
_options = options;
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Synchronisiert den Katalog und ergaenzt das Gesamtergebnis um Socket-Probes.
|
||||
/// </summary>
|
||||
/// <param name="result">Bereits mit aktuellen BizTalk-Artefakten gefuelltes Ergebnis.</param>
|
||||
public void Query(ProbeResult result)
|
||||
{
|
||||
var state = result.EndpointConnectivity;
|
||||
@@ -141,7 +150,13 @@ namespace BizTalkCheckmkPulse
|
||||
foreach (var probeResult in probeResults)
|
||||
{
|
||||
state.Results.Add(probeResult);
|
||||
if (!probeResult.Available)
|
||||
if (!probeResult.Available && probeResult.Endpoint.BestEffort)
|
||||
{
|
||||
// DATABASE-/WCF-SAP-Ziele sind bewusst Diagnose-Probes: Ein
|
||||
// Fehlschlag darf weder Tageslog noch Checkmk mit Alarmen fluten.
|
||||
state.BestEffortIgnoredFailures++;
|
||||
}
|
||||
else if (!probeResult.Available)
|
||||
{
|
||||
_logger.Warning(
|
||||
"Endpoint unavailable. endpoint=" + Display(probeResult.Endpoint)
|
||||
@@ -157,6 +172,13 @@ namespace BizTalkCheckmkPulse
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Fuehrt manuelle Overrides mit den aktuell automatisch erkannten Zielen zusammen.
|
||||
/// </summary>
|
||||
/// <param name="existing">Vorhandener Katalog oder <see langword="null"/>.</param>
|
||||
/// <param name="candidates">Aktuelle BizTalk-Send-/Receive-Transporte.</param>
|
||||
/// <param name="synchronizedUtc">UTC-Zeitpunkt des vollstaendigen Abgleichs.</param>
|
||||
/// <returns>Neuer, geheimnisfreier Endpoint-Katalog.</returns>
|
||||
internal static EndpointCatalog SynchronizeCatalog(
|
||||
EndpointCatalog existing,
|
||||
IEnumerable<EndpointCandidate> candidates,
|
||||
@@ -223,6 +245,10 @@ namespace BizTalkCheckmkPulse
|
||||
/// Ermittelt aus aktuellen WMI-Kandidaten und manuellen Overrides die in diesem Lauf zu pruefenden Ziele.
|
||||
/// Automatisch erkannte Katalogeintraege werden bewusst nicht als veraltete Laufzeitquelle verwendet.
|
||||
/// </summary>
|
||||
/// <param name="catalog">Gueltiger lokaler Endpoint-Katalog.</param>
|
||||
/// <param name="candidates">Aktuelle aktive und inaktive BizTalk-Transporte.</param>
|
||||
/// <param name="state">Zu aktualisierende Laufzeitzaehler und Aufloesungsdiagnosen.</param>
|
||||
/// <returns>Aktuell aktive, deduplizierte Katalogeintraege.</returns>
|
||||
internal static EndpointCatalogEntry[] ResolveActiveEndpoints(
|
||||
EndpointCatalog catalog,
|
||||
IEnumerable<EndpointCandidate> candidates,
|
||||
@@ -284,10 +310,12 @@ namespace BizTalkCheckmkPulse
|
||||
x.Enabled
|
||||
&& !string.Equals(x.ArtifactType, "Manual", StringComparison.OrdinalIgnoreCase)
|
||||
&& !activeKeys.Contains(x.Key));
|
||||
return selected
|
||||
var resolved = selected
|
||||
.GroupBy(x => x.Key, StringComparer.OrdinalIgnoreCase)
|
||||
.Select(x => x.First())
|
||||
.ToArray();
|
||||
state.BestEffortActive = resolved.Count(x => x.BestEffort);
|
||||
return resolved;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -356,6 +384,13 @@ namespace BizTalkCheckmkPulse
|
||||
}).ToArray();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Berechnet die theoretische Obergrenze fuer vollstaendig timeoutende Zielgruppen.
|
||||
/// </summary>
|
||||
/// <param name="targetCount">Anzahl eindeutiger Socket-Ziele.</param>
|
||||
/// <param name="concurrency">Maximale parallele Probes.</param>
|
||||
/// <param name="timeoutMilliseconds">Timeout je Probe in Millisekunden.</param>
|
||||
/// <returns>Theoretische Worst-Case-Dauer in Millisekunden.</returns>
|
||||
internal static long CalculateWorstCaseProbeMilliseconds(int targetCount, int concurrency, int timeoutMilliseconds)
|
||||
{
|
||||
if (targetCount <= 0)
|
||||
@@ -465,6 +500,11 @@ namespace BizTalkCheckmkPulse
|
||||
: "SocketError=" + socket.SocketErrorCode + ": " + socket.Message;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Formatiert ein geheimnisfreies Socket-Ziel fuer Checkmk und Dateilog.
|
||||
/// </summary>
|
||||
/// <param name="endpoint">Zu formatierender Katalogeintrag.</param>
|
||||
/// <returns>Artefakt, Host, Port und Protokoll ohne URI-Geheimnisse.</returns>
|
||||
internal static string Display(EndpointCatalogEntry endpoint)
|
||||
{
|
||||
var artifact = string.IsNullOrWhiteSpace(endpoint.ApplicationName)
|
||||
|
||||
Reference in New Issue
Block a user