From 8113ad90212c78bbb071e38cb11b9fb999f23521 Mon Sep 17 00:00:00 2001 From: ckazz Date: Fri, 14 Aug 2026 12:23:17 -0700 Subject: [PATCH] fix(docs): correct GalileoMetric -> SplunkAOEvaluator rename in migration guide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SplunkAOMetric does not exist in the codebase. The correct replacement for GalileoMetric is SplunkAOEvaluator (evaluator.py). Fix the §3.3 table,the accompanying diff example, and the §9 migration checklist. --- splunk-ao-migration-tool/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/splunk-ao-migration-tool/README.md b/splunk-ao-migration-tool/README.md index 250c0f95..d34c134f 100644 --- a/splunk-ao-migration-tool/README.md +++ b/splunk-ao-migration-tool/README.md @@ -195,13 +195,13 @@ All sub-module paths follow the same rename pattern: | Old | New | |-----|-----| -| `GalileoMetric` | `SplunkAOMetric` | +| `GalileoMetric` | `SplunkAOEvaluator` | | `GalileoMetrics` | `SplunkAOEvaluators` | | `GalileoScorers` | **Removed** (see §5.2) | ```diff - from galileo import GalileoMetric, GalileoMetrics -+ from splunk_ao import SplunkAOMetric, SplunkAOEvaluators ++ from splunk_ao import SplunkAOEvaluator, SplunkAOEvaluators ``` ### 3.4 Handlers & Middleware @@ -449,7 +449,7 @@ The following are **unchanged** between galileo and splunk-ao and require no mig - [ ] Rename `GalileoAPIError` → `SplunkAOAPIError` - [ ] Rename `GalileoLoggerException` → `SplunkAOLoggerException` - [ ] Rename `GalileoFutureError` → `SplunkAOFutureError` -- [ ] Rename `GalileoMetric` → `SplunkAOMetric` +- [ ] Rename `GalileoMetric` → `SplunkAOEvaluator` - [ ] Rename `GalileoMetrics` → `SplunkAOEvaluators` - [ ] Replace `GalileoScorers` with `SplunkAOEvaluators` - [ ] Rename `GalileoAgentControlBridge` → `SplunkAOAgentControlBridge`