The stream tracer for outlier detection seems to record each stream closure with status.isOk() != true as an error. The rate of success is then used for success rate and failure percentage outlier detectors.
I'd like to understand more as to what happens in the following cases:
- A hedged stream is cancelled because another winning stream was committed.
- The client cancels the call due to context expiration or any other reason unrelated to the call itself.
Would it still be recorded as an error and accounted for outlier detection?
The stream tracer for outlier detection seems to record each stream closure with
status.isOk() != trueas an error. The rate of success is then used for success rate and failure percentage outlier detectors.I'd like to understand more as to what happens in the following cases:
Would it still be recorded as an error and accounted for outlier detection?