From db5e65d7fa3b32d1e1a0e9db25357efa0488771d Mon Sep 17 00:00:00 2001 From: Colleen McGinnis Date: Mon, 25 Aug 2025 14:23:36 -0500 Subject: [PATCH 1/3] replace placeholder URLs --- ...xample-enrich-data-based-on-exact-values.md | 10 +++++----- .../observability/apm/apm-server-binary.md | 4 ++-- .../apm/apm-server-fleet-managed.md | 4 ++-- .../apm/configure-logstash-output.md | 18 +++++++++--------- .../observability/apm/create-custom-links.md | 2 +- solutions/observability/apm/custom-filters.md | 6 +++--- .../apm/elastic-apm-events-intake-api.md | 2 +- ...ernal-collection-to-send-monitoring-data.md | 4 ++-- .../configure-lightweight-monitors.md | 4 ++-- 9 files changed, 27 insertions(+), 27 deletions(-) diff --git a/manage-data/ingest/transform-enrich/example-enrich-data-based-on-exact-values.md b/manage-data/ingest/transform-enrich/example-enrich-data-based-on-exact-values.md index df4a96a997..f7af3da4e9 100644 --- a/manage-data/ingest/transform-enrich/example-enrich-data-based-on-exact-values.md +++ b/manage-data/ingest/transform-enrich/example-enrich-data-based-on-exact-values.md @@ -21,14 +21,14 @@ The following index API request creates a source index and indexes a new documen ```console PUT /users/_doc/1?refresh=wait_for { - "email": "mardy.brown@asciidocsmith.com", + "email": "mardy.brown@example.com", "first_name": "Mardy", "last_name": "Brown", "city": "New Orleans", "county": "Orleans", "state": "LA", "zip": 70116, - "web": "mardy.asciidocsmith.com" + "web": "mardy.example.com" } ``` @@ -83,7 +83,7 @@ Use the ingest pipeline to index a document. The incoming document should includ ```console PUT /my-index-000001/_doc/my_id?pipeline=user_lookup { - "email": "mardy.brown@asciidocsmith.com" + "email": "mardy.brown@example.com" } ``` @@ -105,14 +105,14 @@ The API returns the following response: "_primary_term": 1, "_source": { "user": { - "email": "mardy.brown@asciidocsmith.com", + "email": "mardy.brown@example.com", "first_name": "Mardy", "last_name": "Brown", "zip": 70116, "city": "New Orleans", "state": "LA" }, - "email": "mardy.brown@asciidocsmith.com" + "email": "mardy.brown@example.com" } } ``` diff --git a/solutions/observability/apm/apm-server-binary.md b/solutions/observability/apm/apm-server-binary.md index c7b1b1514d..7410aa57af 100644 --- a/solutions/observability/apm/apm-server-binary.md +++ b/solutions/observability/apm/apm-server-binary.md @@ -676,7 +676,7 @@ Set up the agent with ` + + + ``` diff --git a/solutions/observability/apm/apm-server-fleet-managed.md b/solutions/observability/apm/apm-server-fleet-managed.md index 4d559d04b6..1dce13a7b6 100644 --- a/solutions/observability/apm/apm-server-fleet-managed.md +++ b/solutions/observability/apm/apm-server-fleet-managed.md @@ -723,7 +723,7 @@ Set up the agent with ` + ``` diff --git a/solutions/observability/apm/configure-logstash-output.md b/solutions/observability/apm/configure-logstash-output.md index f8bff3abd3..b8102f0407 100644 --- a/solutions/observability/apm/configure-logstash-output.md +++ b/solutions/observability/apm/configure-logstash-output.md @@ -288,7 +288,7 @@ To use SSL mutual authentication: ```yaml output.logstash: - hosts: ["logs.example.com:5044"] + hosts: [":"] ssl.certificate_authorities: ["/etc/ca.crt"] ssl.certificate: "/etc/client.crt" ssl.key: "/etc/client.key" diff --git a/solutions/observability/apm/use-internal-collection-to-send-monitoring-data.md b/solutions/observability/apm/use-internal-collection-to-send-monitoring-data.md index 0710c3f706..8c1fbeb9eb 100644 --- a/solutions/observability/apm/use-internal-collection-to-send-monitoring-data.md +++ b/solutions/observability/apm/use-internal-collection-to-send-monitoring-data.md @@ -43,7 +43,7 @@ Use internal collectors to send {{beats}} monitoring data directly to your monit enabled: true cluster_uuid: PRODUCTION_ES_CLUSTER_UUID <1> elasticsearch: - hosts: ["https://example.com:9200", "https://example.org:9200"] <2> + hosts: [":", ":"] <2> api_key: id:api_key <3> username: apm_system password: somepassword @@ -60,7 +60,7 @@ Use internal collectors to send {{beats}} monitoring data directly to your monit enabled: true cluster_uuid: PRODUCTION_ES_CLUSTER_UUID elasticsearch: - hosts: ["https://example.com:9200", "https://example.org:9200"] + hosts: [":", ":"] username: "" ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] ssl.certificate: "/etc/pki/client/cert.pem" From 34ef27763ea256303576020d17ec5ed10f674c46 Mon Sep 17 00:00:00 2001 From: Colleen McGinnis Date: Thu, 28 Aug 2025 17:54:05 -0500 Subject: [PATCH 3/3] align with beats --- solutions/observability/apm/configure-logstash-output.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solutions/observability/apm/configure-logstash-output.md b/solutions/observability/apm/configure-logstash-output.md index b8102f0407..2408a1eec2 100644 --- a/solutions/observability/apm/configure-logstash-output.md +++ b/solutions/observability/apm/configure-logstash-output.md @@ -325,10 +325,10 @@ To use SSL mutual authentication: Before running APM Server, you should validate the {{ls}} server’s certificate. You can use `curl` to validate the certificate even though the protocol used to communicate with {{ls}} is not based on HTTP. For example: ```shell -curl -v --cacert ca.crt https://logs.example.com:5044 +curl -v --cacert ca.crt : ``` -If the test is successful, you’ll receive an empty response error: +If the test is successful, you’ll receive an empty response error. Here's an example response assuming the `HOST_URL` was `logs.example.com` and `PORT` was `5044`: ```shell * Rebuilt URL to: https://logs.example.com:5044/