This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
Replies: 1 comment 2 replies
-
API: |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We would like to be able to estimate the time and cost of scans before the scans are running, in order to give the user a better understanding of what will be the cost and resource utilization of the scan before he starts scanning.
To be able to estimate the time and cost of scans, it is necessary to gather actual scanned filesystem size and time benchmarks per plugged scanner. This information can then be added to the assetScan that API object that is reported the the backend.
Time measurement :
add new benchmark field to asset scan that will contain start and end time for each family, and also a general scan time.
There are 2 options for measuring time:
Size calculations:
need to report size of supported input types only:
for directories, need to calculate the total dir size
for images, calculate image size
for exploits, sboms - not relevant
The size will be reported as the total size of all the inputs to the family scan, and should also include the mounted volumes size.
Beta Was this translation helpful? Give feedback.
All reactions