-
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.
Replace discover Vulnerability (#6275)
* Replace discover * Add explore agent * Add changelog * Fix events view with agent * Fix changelog.md --------- Co-authored-by: Federico Rodriguez <[email protected]>
- Loading branch information
1 parent
5382600
commit c42fce2
Showing
4 changed files
with
157 additions
and
72 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
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
19 changes: 19 additions & 0 deletions
19
plugins/main/public/components/overview/vulnerabilities/events/vulnerabilities-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,19 @@ | ||
import { tDataGridColumn } from '../../../common/data-grid'; | ||
|
||
export const vulnerabilitiesColumns: tDataGridColumn[] = [ | ||
{ | ||
id: 'agent.name', | ||
}, | ||
{ | ||
id: 'data.vulnerability.package.name', | ||
}, | ||
{ | ||
id: 'data.vulnerability.cve', | ||
}, | ||
{ | ||
id: 'data.vulnerability.severity', | ||
}, | ||
{ | ||
id: 'data.vulnerability.status', | ||
}, | ||
]; |