Skip to content

Commit 6850e57

Browse files
committed
fix versions in docker commands
1 parent efddf25 commit 6850e57

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

solutions/observability/apm/apm-server-binary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -857,13 +857,13 @@ Obtaining APM Server for Docker is as simple as issuing a `docker pull` command
857857
1. Pull the Docker image:
858858
859859
```shell
860-
docker pull docker.elastic.co/apm/apm-server:9.0.0
860+
docker pull docker.elastic.co/apm/apm-server:{{version.stack}}
861861
```
862862
863863
Alternately, you can use the hardened [Wolfi](https://wolfi.dev/) image:
864864
865865
```shell
866-
docker pull docker.elastic.co/apm/apm-server-wolfi:9.0.0
866+
docker pull docker.elastic.co/apm/apm-server-wolfi:{{version.stack}}
867867
```
868868
869869
1. Verify the Docker image:

solutions/observability/synthetics/monitor-resources-on-private-networks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The `elastic-agent-complete` Docker image is the only way to have all available
6666
To pull the Docker image run:
6767

6868
```sh
69-
docker pull docker.elastic.co/elastic-agent/elastic-agent-complete:8.16.1
69+
docker pull docker.elastic.co/elastic-agent/elastic-agent-complete:{{version.stack}}
7070
```
7171

7272
Then enroll and run an {{agent}}. You’ll need an enrollment token and the URL of the {{fleet-server}}. You can use the default enrollment token for your policy or create new policies and [enrollment tokens](/reference/fleet/fleet-enrollment-tokens.md) as needed.
@@ -80,7 +80,7 @@ docker run \
8080
--env FLEET_ENROLLMENT_TOKEN={enrollment_token} \
8181
--cap-add=NET_RAW \
8282
--cap-add=SETUID \
83-
--rm docker.elastic.co/elastic-agent/elastic-agent-complete:8.16.1
83+
--rm docker.elastic.co/elastic-agent/elastic-agent-complete:{{version.stack}}
8484
```
8585

8686
::::{important}
@@ -119,15 +119,15 @@ By default {{private-location}}s are configured to allow two simultaneous browse
119119

120120
It is critical to allocate enough memory and CPU capacity to handle configured limits. Resource requirements will vary depending on simultaneous workload and monitor complexity:
121121

122-
**For browser monitors**: Start by allocating at least 2 GiB of memory and two cores _per browser instance_ to ensure consistent performance and avoid out-of-memory errors. Then adjust as needed.
122+
**For browser monitors**: Start by allocating at least 2 GiB of memory and two cores _per browser instance_ to ensure consistent performance and avoid out-of-memory errors. Then adjust as needed.
123123
**For tcp, http, icmp**: Much less memory is needed, start by allocating at least 512MiB of memory and two cores _globally_. While this will be enough to run a large number of lightweight monitors, it is recommended to track the resource usage and adjust accordingly.
124124

125125
Example: For a private location expected to run 2 concurrent browser monitors and 100 HTTP checks, the recommended allocation is 2 * (2 GiB + 2 vCPU) + (512 MiB + 2 vCPU) => 4,5 GiB + 6 vCPU.
126126

127127
### Known limitations on vertical scaling
128128

129129
- A single private location will not scale beyond 10,000 monitors. Exceeding this number will result in agent degradation and inconsistent execution, regardless of the resources allocated.
130-
- Complex monitor configuration can disproportionately increase the private location policy size, leading to agent communication errors and degradation even if the limit mentioned above hasn't been reached.
130+
- Complex monitor configuration can disproportionately increase the private location policy size, leading to agent communication errors and degradation even if the limit mentioned above hasn't been reached.
131131

132132
If you're facing one of these scenarios, it is likely that the private location has grown too large and needs to be split into smaller locations, each alloted a portion of the original location monitors.
133133

0 commit comments

Comments
 (0)