Hello Anyam,Thanks for your response, further I would like you to elaborate below concerns in-order as the official documentation has not discussed those config as in depth:
1) Can a single agent let say agent name is ABC can be part of two separate Groups i-e G1 and G2?
2) Can a single group can have two agents but each agent is of different OS i-e agent ABC is windows and agent XYZ is Linux?
--> If that is the case then what would be the impact of agent.conf file configuration on each agent? because in this case agent.conf will going to have configuration for both linux and windows.. Is it possible can we allow to break the configuration of agent.conf file into two sections as one for windows agent and other for linux agent so that windows agent will only updates its agent.conf file with windows relavant part and linux' agent.conf file with its linux part.
Sample agent.conf file at wazuh-server end:
<agent_config>
<syscheck>
<directories realtime="yes" >/var/ossec/etc/ossec.conf</directories>
</syscheck>
</agent_config>
<agent_config>
<syscheck>
<directories realtime="yes" >C:\Program Files (x86)\ossec-agent\ossec.conf</directories>
</syscheck>
</agent_config>
Here I want is the Yellow should update at linux end only and red one at windows end, one thing to keep in notice that we are having above config under single agent.conf file having multiple windows and linux agents.
Note: I have already tested above case but observing the entire file is been updated on both windows and linux end...
3) Please confirm is realtime syscheck is supported for both windows and linux?