Commit 31160ea
Fix App Insights emission silently dropping events when evaluator definition has no
Rubric evaluators registered without metric metadata produce an evaluator
definition payload of `{"type": "rubric"}` (RAISvc's `RubricBasedEvaluatorDefinition.Metrics`
defaults to empty and validation does not require it). In
`_build_internal_log_attributes` the helper called
`evaluator_definition.get("metrics").get(metric_name)` which raises
`AttributeError: 'NoneType' object has no attribute 'get'` when `metrics`
is missing or set to None. That exception is caught by the per-event
`try/except` in `_log_events_to_app_insights` and silently swallowed, so
`event_logger.emit()` is never called for any event in the run. The net
effect is that App Insights receives zero `gen_ai.evaluation.result` events
for the entire eval — observed in production for `rubric-manual-260526043804-e45a09`
in the westus2 bug bash project, while other rubric evaluators in the same
workspace that had populated metric metadata continued to emit normally.
Guard the metrics lookup so a single misshapen definition does not abort
emission for the whole run.
Added regression tests for `_build_internal_log_attributes` covering:
missing `metrics` key, `metrics: None`, `metrics: {}`, `metrics: [...]`
(malformed type), and the happy path where metric metadata is preserved.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>metrics
1 parent 5da28b4 commit 31160ea
3 files changed
Lines changed: 96 additions & 1 deletion
File tree
- sdk/evaluation/azure-ai-evaluation
- azure/ai/evaluation/_evaluate
- tests/unittests
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
22 | 23 | | |
23 | 24 | | |
24 | 25 | | |
| |||
Lines changed: 5 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1136 | 1136 | | |
1137 | 1137 | | |
1138 | 1138 | | |
1139 | | - | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
1140 | 1144 | | |
1141 | 1145 | | |
1142 | 1146 | | |
| |||
Lines changed: 90 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2161 | 2161 | | |
2162 | 2162 | | |
2163 | 2163 | | |
| 2164 | + | |
| 2165 | + | |
| 2166 | + | |
| 2167 | + | |
| 2168 | + | |
| 2169 | + | |
| 2170 | + | |
| 2171 | + | |
| 2172 | + | |
| 2173 | + | |
| 2174 | + | |
| 2175 | + | |
| 2176 | + | |
| 2177 | + | |
| 2178 | + | |
| 2179 | + | |
| 2180 | + | |
| 2181 | + | |
| 2182 | + | |
| 2183 | + | |
| 2184 | + | |
| 2185 | + | |
| 2186 | + | |
| 2187 | + | |
| 2188 | + | |
| 2189 | + | |
| 2190 | + | |
| 2191 | + | |
| 2192 | + | |
| 2193 | + | |
| 2194 | + | |
| 2195 | + | |
| 2196 | + | |
| 2197 | + | |
| 2198 | + | |
| 2199 | + | |
| 2200 | + | |
| 2201 | + | |
| 2202 | + | |
| 2203 | + | |
| 2204 | + | |
| 2205 | + | |
| 2206 | + | |
| 2207 | + | |
| 2208 | + | |
| 2209 | + | |
| 2210 | + | |
| 2211 | + | |
| 2212 | + | |
| 2213 | + | |
| 2214 | + | |
| 2215 | + | |
| 2216 | + | |
| 2217 | + | |
| 2218 | + | |
| 2219 | + | |
| 2220 | + | |
| 2221 | + | |
| 2222 | + | |
| 2223 | + | |
| 2224 | + | |
| 2225 | + | |
| 2226 | + | |
| 2227 | + | |
| 2228 | + | |
| 2229 | + | |
| 2230 | + | |
| 2231 | + | |
| 2232 | + | |
| 2233 | + | |
| 2234 | + | |
| 2235 | + | |
| 2236 | + | |
| 2237 | + | |
| 2238 | + | |
| 2239 | + | |
| 2240 | + | |
| 2241 | + | |
| 2242 | + | |
| 2243 | + | |
| 2244 | + | |
| 2245 | + | |
| 2246 | + | |
| 2247 | + | |
| 2248 | + | |
| 2249 | + | |
| 2250 | + | |
| 2251 | + | |
| 2252 | + | |
| 2253 | + | |
2164 | 2254 | | |
2165 | 2255 | | |
2166 | 2256 | | |
| |||
0 commit comments