APM Server version: 7.5.2
APM Agent language and version: Ruby / 3.4.0
I'm attempting to start the APM server locally using directions found here: Running APM Server on Docker | APM Server Reference [7.5] | Elastic
docker run -d \
--name=apm-server \
--user=apm-server \
--volume="$(pwd)/apm-server.docker.yml:/usr/share/apm-server/apm-server.yml:ro" \
docker.elastic.co/apm/apm-server:7.5.2 \
--strict.perms=false -e \
-E output.elasticsearch.hosts=["elasticsearch:9200"]
If you are using the hosted Elasticsearch Service in Elastic Cloud, replace the
-E output.elasticsearch.hosts
line with the Cloud ID and elastic password using the syntax shown earlier.
I'm using a hosted instance. However, I'm unsure about how the command changes with the above instruction as the part that reads, "using the syntax shown earlier" doesn't seem to have an example.
Any help would be greatly appreciated!