-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace discover file integrity monitoring (#6287)
* Replace discover * Add changelog * Update CHANGELOG.md --------- Co-authored-by: Maximiliano Ibarra <[email protected]> Co-authored-by: Federico Rodriguez <[email protected]>
- Loading branch information
1 parent
0283b04
commit 5382600
Showing
3 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
plugins/main/public/components/overview/fim/events/file-integrity-monitoring-columns.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { tDataGridColumn } from '../../../common/data-grid'; | ||
|
||
export const fileIntegrityMonitoringColumns: tDataGridColumn[] = [ | ||
{ | ||
id: 'agent.name', | ||
}, | ||
{ | ||
id: 'syscheck.path', | ||
}, | ||
{ | ||
id: 'syscheck.event', | ||
}, | ||
{ | ||
id: 'rule.description', | ||
}, | ||
{ | ||
id: 'rule.level', | ||
}, | ||
{ | ||
id: 'rule.id', | ||
}, | ||
]; |