Skip to content

Commit

Permalink
[EDR Workflows] Enable process descendant filtering feature for `main…
Browse files Browse the repository at this point in the history
…` (serverless) (#190054)

## Summary

This PR enables the feature flag
`filterProcessDescendantsForEventFiltersEnabled` for `main` branch, to
release the feature on serverless.

The flag is already enabled for `8.15` release:
- #187627

---------

Co-authored-by: Elastic Machine <[email protected]>
  • Loading branch information
gergoabraham and elasticmachine authored Aug 9, 2024
1 parent bccee8d commit fdb3ee9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export const allowedExperimentalValues = Object.freeze({
/**
* Adds a new option to filter descendants of a process for Management / Event Filters
*/
filterProcessDescendantsForEventFiltersEnabled: false,
filterProcessDescendantsForEventFiltersEnabled: true,

/**
* Enables the new data ingestion hub
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ describe('Event filter form', () => {
it('should not show warning text when unique fields are added', async () => {
formProps.item.entries = [
{
field: 'event.category',
field: 'event.action',
operator: 'included',
type: 'match',
value: 'some value',
Expand All @@ -573,13 +573,13 @@ describe('Event filter form', () => {
it('should not show warning text when field values are not added', async () => {
formProps.item.entries = [
{
field: 'event.category',
field: 'event.action',
operator: 'included',
type: 'match',
value: '',
},
{
field: 'event.category',
field: 'event.action',
operator: 'excluded',
type: 'match',
value: '',
Expand All @@ -596,13 +596,13 @@ describe('Event filter form', () => {
it('should show warning text when duplicate fields are added with values', async () => {
formProps.item.entries = [
{
field: 'event.category',
field: 'event.action',
operator: 'included',
type: 'match',
value: 'some value',
},
{
field: 'event.category',
field: 'event.action',
operator: 'excluded',
type: 'match',
value: 'some other value',
Expand Down

0 comments on commit fdb3ee9

Please sign in to comment.