Skip to content

Latest commit

 

History

History
108 lines (91 loc) · 4.73 KB

install-elastic-agent.asciidoc

File metadata and controls

108 lines (91 loc) · 4.73 KB

Install {agent}s

Important
Restrictions

Note the following restrictions when installing {agent} on your system:

  • You can install only a single {agent} per host. Due to the fact that the {agent} may read data sources that are only accessible by a superuser, {agent} will therefore also need to be executed with superuser permissions.

  • You might need to log in as a root user (or Administrator on Windows) to run the commands described here. After the {agent} service is installed and running, make sure you run these commands without prepending them with ./ to avoid invoking the wrong binary.

  • Running {agent} commands using the Windows PowerShell ISE is not supported.

You have a few options for installing and managing an {agent}:

Important
Restrictions in {serverless-short}

If you are using {agent} with {serverless-full}, note these differences from use with {ess} and self-managed {es}:

  • The number of {agents} that may be connected to an {serverless-full} project is limited to 10 thousand.

  • The minimum supported version of {agent} supported for use with {serverless-full} is 8.11.0.

Minimum Requirements

Minimum requirements have been determined by running the {agent} on a GCP e2-micro instance (2vCPU/1GB). The {agent} used the default policy, running the system integration and self-monitoring. During upgrades, double the disk space is required to store the new {agent} binary. After the upgrade completes, the original {agent} is removed from disk to free up the space.

CPU

Under 2% total, including all monitoring processes

Disk

1.7 GB

RSS Mem Size

400 MB

Adding integrations will increase the memory used by the agent and its processes.

Limiting CPU usage

If you need to limit the amount of CPU consumption you can use the agent.limits.go_max_procs configuration option. This parameter limits the number of operating system threads that can be executing Go code simultaneously in each Go process. The agent.limits.go_max_procs option accepts an integer value not less than 0, which is the default value that stands for "all available CPUs".

The agent.limits.go_max_procs limit applies independently to the agent and each underlying Go process that it supervises. For example, if {agent} is configured to supervise two {beats} with agent.limits.go_max_procs: 2 in the policy, then the total CPU limit is six, where each of the three processes (one {agent} and two {Beats}) may execute independently on two CPUs.

This setting is similar to the {beats} {filebeat-ref}/configuration-general-options.html#_max_procs[max_procs] setting. For more detail, refer to the GOMAXPROCS function in the Go runtime documentation.

To enable agent.limits.go_max_procs, run a {fleet} API request from the {kib} {kibana-ref}/console-kibana.html[Dev Tools console] to override your current {agent} policy and add the go_max_procs parameter. For example, to limit Go processes supervised by {agent} to two operating system threads each, run:

PUT kbn:/api/fleet/agent_policies/<policy-id>
{
  "name": "<policy-name>",
  "namespace": "default",
  "overrides": {
    "agent": {
      "limits": {
        "go_max_procs": 2
      }
    }
  }
}