Skip to content

Commit

Permalink
Add assetInventoryEnabled feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
albertoblaz committed Dec 11, 2024
1 parent c1addc9 commit d1f2b2d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 8 additions & 0 deletions x-pack/plugins/asset_inventory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ Centralized asset inventory experience within the Elastic Security solution. A c

See the [kibana contributing guide](https://github.com/elastic/kibana/blob/main/CONTRIBUTING.md) for instructions setting up your development environment.

### Feature flag

First, enable the `assetInventoryEnabled` experimental feature flag by adding the following to your `kibana.dev.yml`:

```yml
xpack.securitySolution.enableExperimental: ['assetInventoryEnabled']
```
## Testing
For general guidelines, read [Kibana Testing Guide](https://www.elastic.co/guide/en/kibana/current/development-tests.html) for more details
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,12 @@ export const allowedExperimentalValues = Object.freeze({
/**
* Enables CrowdStrike's RunScript RTR command
*/

crowdstrikeRunScriptEnabled: false,

/**
* Enables the Asset Inventory feature
*/
assetInventoryEnabled: false,
});

type ExperimentalConfigKeys = Array<keyof ExperimentalFeatures>;
Expand Down

0 comments on commit d1f2b2d

Please sign in to comment.