In BuildTopProductMetric, the description is built with an interpolated string and then ?? "Unknown product".
Impact:
- The fallback is unreachable
- Null or empty operator/product names can surface as malformed labels
Suggested fix:
- Check
OperatorName and ProductName explicitly before formatting, or coalesce each value separately.
In
BuildTopProductMetric, the description is built with an interpolated string and then?? "Unknown product".Impact:
Suggested fix:
OperatorNameandProductNameexplicitly before formatting, or coalesce each value separately.