feature_flag.result.reason
Release candidateenumas of v1.44.0
The reason code which shows how a feature flag value was determined.
Examples
- static
- targeting_match
- error
- default
Values (9)
staticThe resolved value is static (no dynamic evaluation).defaultThe resolved value fell back to a pre-configured value (no dynamic evaluation occurred or dynamic evaluation yielded no result).targeting_matchThe resolved value was the result of a dynamic evaluation, such as a rule or specific user-targeting.splitThe resolved value was the result of pseudorandom assignment.cachedThe resolved value was retrieved from cache.disabledThe resolved value was the result of the flag being disabled in the management system.unknownThe reason for the resolved value could not be determined.staleThe resolved value is non-authoritative or possibly out of dateerrorThe resolved value was the result of an error.
Used by
events (1)
- feature_flag.evaluation
* required on that signal.
History
- v1.35.0stability
Promoted to release_candidate.
Added as development.