Implement sprints 118-119 distributed failure evidence and triage

This commit is contained in:
Bill
2026-02-24 12:31:17 -07:00
parent b9e666dc9c
commit 1c0645b2f9
40 changed files with 1021 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
#pragma once
// Step 1438: Sprint 119 integration summary.
#include <nlohmann/json.hpp>
struct Sprint119IntegrationSummary {
static constexpr int sprintNumber = 119;
static constexpr int stepsCompleted = 10;
static constexpr const char* theme = "Sprint 119 Plan: Deterministic Cross-Node Failure Triage and Prioritization";
static bool verify() { return sprintNumber == 119 && stepsCompleted == 10; }
static nlohmann::json toJson() {
nlohmann::json j = nlohmann::json::object();
j["sprint"] = sprintNumber;
j["steps"] = stepsCompleted;
j["theme"] = theme;
j["status"] = "complete";
nlohmann::json tools = nlohmann::json::array();
tools.push_back("whetstone_cluster_distributed_failures");
tools.push_back("whetstone_rank_failure_triage_actions");
tools.push_back("whetstone_get_distributed_triage_queue");
j["tools_added"] = tools;
nlohmann::json comps = nlohmann::json::array();
comps.push_back("CrossNodeFailureClusterModel");
comps.push_back("RootCauseRankingPolicyModel");
comps.push_back("BlastRadiusEstimatorForDistributedFailures");
comps.push_back("DeterministicTriageQueuePlannerModel");
comps.push_back("EscalationReasonClassifierModel");
comps.push_back("TriagePacketBundleModel");
j["components"] = comps;
return j;
}
};