Skip to content
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

fix: Improve formatting for Sekoia.io agent #1625

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions docs/xdr/features/collect/integrations/endpoint/sekoiaio.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,29 +117,29 @@ The Endpoint Detection Agent is easy to install on Windows or Linux systems once
sudo systemctl status SEKOIAEndpointAgent.service
```

Once installed, the agent collects, normalizes, and sends event logs to Sekoia.io. The protocol used to send events is HTTPS (443).

#### journald configuration

To get events, the agent pushes rules to the audit framework. By default, **journald** might listen to the audit socket for events.
#### journald configuration

To get events, the agent pushes rules to the audit framework. By default, **journald** might listen to the audit socket for events.

To disable audit logging, do the following as root:


# Stop listening to audit events
systemctl stop systemd-journald-audit.socket

# Disable it to avoid future start
systemctl disable systemd-journald-audit.socket

# Masking will prevent starting by other services
systemctl mask systemd-journald-audit.socket

# Restart journald
systemctl restart systemd-journald


A reboot may be necessary if the audit events are still appearing in the logs.

To disable audit logging, do the following as root:


# Stop listening to audit events
systemctl stop systemd-journald-audit.socket

# Disable it to avoid future start
systemctl disable systemd-journald-audit.socket

# Masking will prevent starting by other services
systemctl mask systemd-journald-audit.socket

# Restart journald
systemctl restart systemd-journald


A reboot may be necessary if the audit events are still appearing in the logs.
Once installed, the agent collects, normalizes, and sends event logs to Sekoia.io. The protocol used to send events is HTTPS (443).

#### Setting the region

Expand All @@ -164,7 +164,7 @@ To update the agent manually, follow the instructions specific to your OS.

=== "Windows"

Execute the following command **as an administrator**:
Execute the following command **as an administrator**:

```shell
$ProgramFiles\EndpointAgent\agent.exe update
Expand Down Expand Up @@ -204,7 +204,7 @@ To uninstall the agent, follow the instructions specific to your OS.

=== "Linux"

Execute the following command:
Execute the following command:

```shell
sudo /opt/endpoint-agent/agent uninstall
Expand Down Expand Up @@ -237,7 +237,7 @@ To uninstall the agent, follow the instructions specific to your OS.
sudo /opt/endpoint-agent/agent -service uninstall
```

Then, remove the folders created by the agent:
Then, remove the folders created by the agent:

```shell
sudo rm -rf /opt/endpoint-agent
Expand Down
Loading