stianst / keycloak-dashboard

3 stars 5 forks source link

Add Scanner alerts to the dashboard #23

Open abstractj opened 11 months ago

abstractj commented 11 months ago

Proposal

We currently don't have visibility of scanner alerts within our project. To address this, I suggest we leverage Keycloak dashboards to consolidate and display these alerts. This section allows our team to monitor the security alerts, now that they have permission to see security alerts. The section will show the current status of CVEs on third-party dependencies, container images, plus static code analysis.

Proposed layout:

Attached is a prototype and if we agree about that, I can implement.

Screenshot from 2023-11-01 09-09-50

abstractj commented 11 months ago

@stianst FYI

stianst commented 10 months ago

Makes sense, I'd probably add a new page "Security" rather than add to an existing page. To implement you need to figure out what API to scrape, and do that as part of the update data job, which should be cached in the repo. Try to do it with as few API calls as possible as we can quickly run into API throttling from GH if we do to many invocations.

abstractj commented 10 months ago

Makes sense, I'd probably add a new page "Security" rather than add to an existing page. To implement you need to figure out what API to scrape, and do that as part of the update data job, which should be cached in the repo. Try to do it with as few API calls as possible as we can quickly run into API throttling from GH if we do to many invocations.

Thanks will think about it.