forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 26
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
Data model diagrams #345
Labels
Comments
EntitiesNote rev 0.1 - August 7th, 2024: Add initial diagrams ---
title: Wazuh Data Model
---
erDiagram
AGENT
COMMAND
ALERT
INVENTORY
VULNERABILITY
FIM
SCA
STATISTICS
Relations---
title: Wazuh Data Model
---
erDiagram
AGENT {
string id PK
string internal_key UK
string[] groups
}
COMMAND {
string id PK "The command's ID"
string agent_id FK "The agent's ID"
}
ALERT {
string id PK
string agent_id UK
string[] groups
}
INVENTORY {
string id PK
string agent_id UK
string[] groups
}
VULNERABILITY {
string id PK
string agent_id UK
string[] groups
}
FIM {
string id PK
string agent_id UK
string[] groups
}
SCA {
string id PK
string agent_id UK
string[] groups
}
STATISTICS {
string id PK
}
AGENT one to zero or more COMMAND : "is sent to"
AGENT one to zero or more ALERT : generates
AGENT one to one INVENTORY : has
AGENT one to zero or more VULNERABILITY : has
AGENT one to zero or more FIM : has
AGENT one to zero or more SCA : has
|
Moved to the Feature Complete stage. |
To be revisited in the future. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
The goal of this issue is to generate the data persistence model described in #344. To do that, we'll generate an E/R diagram and iterate it until the data model fulfills the requirements.
Tasks
The text was updated successfully, but these errors were encountered: