-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Vulnerabilities dashboard] Research about vulnerabilities dashboard context/scope #5800
Comments
Current vulnerabilities module behaviorRight now, all the data retrieve to show in the vuls module become from wazuh api endpoints like: The current behavior only supports the data from an agent, don't have the way to get global information and make general metrics. Vulnerabilities InventoryUI Components usedThe inventory view use the following UI elements to show the module data: Severity chart:
Details card:
Summary chart:
Vuls table:
Note wz-requestapiRequest methodThis methods calls to the WorkflowsequenceDiagram;
Note left of UI (client-side): UI Component needs data to render!
UI (client-side)->>Plugin API (server-side): make a call to fetching data
Note left of Plugin API (server-side): the plugin server-side works like a middleware(layer) between plugin a wazuh api
Plugin API (server-side)->>Wazuh Server API: authorize call and make a request to the wazuh API
Wazuh Server API->>Plugin API (server-side): response with the data requested
Plugin API (server-side)--> UI (client-side): retrieve the information requtested
Disadvantages
|
Description
Make a research about the vulnerability module domain and define the scope.
Register the scope and the related domain about the new dashboard.
Related to epic #5763
The text was updated successfully, but these errors were encountered: