-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1329d8
commit 5b9402e
Showing
2 changed files
with
38 additions
and
11 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
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', | ||
}, | ||
]; |