mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Metric threshold] Remove disabling missing group for document count aggregation (#173898)
Closes #173396
## Summary
This PR removes disabling missing group settings when aggregation is
document count because it also works as expected for this case. ([more
info](https://github.com/elastic/kibana/issues/173396#issuecomment-1867399404))
<img
src="d5b974cf
-e18d-4d34-82ff-3891f57e719d"
width=500 />
This commit is contained in:
parent
f8f0d87d5b
commit
af4dcb419a
1 changed files with 1 additions and 1 deletions
|
@ -479,7 +479,7 @@ export const Expressions: React.FC<Props> = (props) => {
|
|||
</EuiToolTip>
|
||||
</>
|
||||
}
|
||||
disabled={disableNoData || !hasGroupBy}
|
||||
disabled={!hasGroupBy}
|
||||
checked={Boolean(hasGroupBy && ruleParams.alertOnGroupDisappear)}
|
||||
onChange={(e) => setRuleParams('alertOnGroupDisappear', e.target.checked)}
|
||||
/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue