Observability Onboarding
Instrument an application with the Elastic Distribution of OpenTelemetry (EDOT) and prove the telemetry arrived. The
instrumentation change is only half the job: an application can be configured perfectly and still emit nothing, so this
skill ends by querying Elasticsearch for the service's data rather than declaring success from a config diff.
The scope is application instrumentation with the EDOT SDKs. Deploying an EDOT Collector, collecting logs from files or
infrastructure, and onboarding data through Elastic Agent, Fleet, or integration packages are separate ingest paths that
this skill does not cover.
Once telemetry is flowing, use the observability-sre-triage skill to assess service health,
observability-k8s-investigation for Kubernetes-layer failures, observability-service-reliability to define SLOs
and alerts on the new signals, and observability-llm-obs for GenAI and agentic workloads.
Environment Configuration
This skill executes Elasticsearch operations through the elastic CLI. If the
elastic CLI is not installed, tell the user what it is needed for. Do
not guess credentials, call the HTTP API directly, or attempt other workarounds.
This skill references operations in HTTP-shorthand form (e.g., GET /, GET /_cat/indices, GET /{index}/_mapping,
GET /{index}/_settings/index.mode, POST /_query). The Operations table at the end of this document
maps each shorthand to the equivalent elastic CLI command — always use the CLI rather than calling the HTTP API
directly.
Analysis without cluster access
The CLI check above gates querying the cluster — it does not gate analysis. When the user has already supplied the
evidence in their question (metric values, counts, status reasons, log lines, alert payloads, configuration), reason
from that evidence and deliver the conclusion.
When you genuinely do need data the user has not provided, still say what you would check and how — name the specific
query, index, and field that would settle the question — and then ask for CLI setup. An answer that names the check is
useful without a cluster; one that only asks for setup is not.
Only the verification step in this skill talks to Elasticsearch; it runs through POST /_query. Everything else edits
application code and configuration in the user's workspace.
Jobs to be done
- Decide whether a service needs fresh instrumentation or a migration off the classic Elastic APM agent
- Apply the EDOT configuration for the service's language and runtime
- Point telemetry at the correct OTLP destination and reject APM Server URLs
- Verify that traces, metrics, and logs land in Elasticsearch under the expected
service.name
- Diagnose an instrumented service that is reporting nothing, or reporting from the wrong agent
Output discipline
Applies to every response produced under this skill.
- Make the edit. When the language, the current agent, and the destination are known, apply the change. Do not
narrate a plan and ask for approval on each file; ask only when a decision genuinely cannot be inferred.
- Do not dump documentation. Link the relevant page and state the two or three rules that apply to this service.
Pasting a whole setup guide into the reply is a defect.
- Verify before reporting success. "Configured correctly" is not the finding; "telemetry is arriving" is. If
verification returns no rows, say the service is not reporting and give the most likely cause.
- Do not speculate past the evidence. If the verification query is empty, that is one fact with several possible
causes — name the likeliest and how to distinguish it, rather than asserting one.
- End on the result. No trailing offers such as "want me to set up dashboards next?". Follow-up work belongs in a
recommendations list, phrased as a recommendation.
Process: route the request
Identify the language and runtime. Read the project's dependency manifest — pom.xml or build.gradle,
requirements.txt or pyproject.toml, *.csproj, composer.json. The decision: which language reference to open.
Also note how the process starts (a Dockerfile ENTRYPOINT, a Kubernetes pod spec, a systemd unit), because that is
where the agent attaches and where the environment variables must be set.
| Runtime |
Reference |
How EDOT attaches |
| Java |
references/java.md |
-javaagent: flag or JAVA_TOOL_OPTIONS |
| Python |
references/python.md |
opentelemetry-instrument entrypoint wrapper |
| .NET |
references/dotnet.md |
builder.AddElasticOpenTelemetry() in startup |
| PHP |
references/php.md |
native extension via OS package, then full process restart |
For a language not listed, follow the same shape — the required configuration and the following verification step are
language-independent — and use the upstream EDOT SDK documentation for the attach mechanism.
Detect a classic Elastic APM agent. The decision: instrument path or migrate path. Each language reference lists
the markers; the common ones are ELASTIC_APM_* environment variables and a language-specific Elastic APM package.
If any marker is present, take the migrate path — do not layer EDOT on top.
Resolve the telemetry destination. The decision: which URL goes in OTEL_EXPORTER_OTLP_ENDPOINT. Two valid
answers, and one common wrong one:
- The Elastic managed OTLP endpoint for the deployment or Serverless project. Correct default.
- An EDOT Collector the user already runs, when telemetry must be enriched, sampled, or fanned out before it
reaches Elastic.
- Never an APM Server URL. If the candidate contains
apm-server, ends in port 8200, or has an
/intake/v2/events path, it is the classic ingest endpoint and EDOT cannot use it. On the migrate path this is the
single most common mistake — the old ELASTIC_APM_SERVER_URL value must not be carried over.
Apply the shared configuration below, then the language reference. The shared rules are the same for every
runtime; the reference covers only what is language-specific.
Verify. Do not report success from the configuration alone — run the verification process.
Required configuration
Identical across every EDOT SDK. Set exactly three environment variables:
| Variable |
Value |
OTEL_SERVICE_NAME |
The service's name. This becomes service.name in Elasticsearch and is how every other Observability skill finds it. |
OTEL_EXPORTER_OTLP_ENDPOINT |
The managed OTLP endpoint or EDOT Collector URL resolved in step 3. |
OTEL_EXPORTER_OTLP_HEADERS |
The credential, in Authorization=ApiKey <key> or Authorization=Bearer <token> form. |
Two rules that hold for every language:
- Do not set
OTEL_TRACES_EXPORTER, OTEL_METRICS_EXPORTER, or OTEL_LOGS_EXPORTER. The defaults are already
correct. Setting them is the usual reason a service reports traces but no metrics or logs.
- Never run a classic Elastic APM agent and EDOT together on the same process. They double-instrument and produce
inconsistent traces. Removal and replacement belong in the same change.
Process: verify telemetry arrives
Run this after every instrument or migrate change, and as the entry point when a user reports that an instrumented
service is missing. Give the pipeline a minute or two after the deployment restarts before concluding anything.
Confirm documents are landing for the service. Query POST /_query, scoping to the service name that was set in
OTEL_SERVICE_NAME. The decision: is anything arriving at all, and across which signals.
FROM traces-*,metrics-*,logs-* METADATA _index
| WHERE @timestamp > NOW() - 15 minutes AND service.name == "<service>"
| STATS docs = COUNT(*), last_seen = MAX(@timestamp) BY _index
| SORT docs DESC
| LIMIT 20
A healthy result has rows from a traces data stream, a metrics data stream, and a logs data stream, with last_seen
inside the last minute or two. Missing signals are diagnostic, not cosmetic: traces only, with no metrics or logs,
usually means an OTEL_*_EXPORTER variable was set.
If nothing came back, find out what name the service is reporting under. An empty result is ambiguous between "no
telemetry at all" and "telemetry arriving under a different name" — a typo in OTEL_SERVICE_NAME, or the SDK default
of unknown_service. Drop the service filter and look at what is actually arriving.
FROM traces-*,metrics-*,logs-*
| WHERE @timestamp > NOW() - 15 minutes
| STATS docs = COUNT(*), last_seen = MAX(@timestamp) BY service.name
| SORT docs DESC
| LIMIT 25
The decision: if the service appears under an unexpected name, fix OTEL_SERVICE_NAME. If it does not appear at all,
the exporter is not reaching the destination — go back to step 3 of the routing process and re-check the endpoint and
credential.
Confirm EDOT is the reporter, not something else. This is what distinguishes a correct migration from a
half-finished one, and vanilla OpenTelemetry from EDOT.
FROM traces-*
| WHERE @timestamp > NOW() - 15 minutes AND service.name == "<service>"
| STATS spans = COUNT(*) BY telemetry.sdk.language, telemetry.sdk.name, telemetry.distro.name, telemetry.distro.version
| SORT spans DESC
| LIMIT 10
telemetry.distro.name is elastic when an EDOT SDK is reporting. A null distro with
telemetry.sdk.name == "opentelemetry" means the application is on the upstream OpenTelemetry SDK rather than EDOT.
Two rows for one service — one with the Elastic distro and one without, or two different telemetry.sdk.language
values — means more than one agent is attached, or an old deployment is still running.
Diagnose from the shape of the result.
| Verification result |
Most likely cause |
| No rows for the service, and the name is absent everywhere |
Exporter never reached the destination — wrong endpoint or bad credential |
| Service appears under a different name |
OTEL_SERVICE_NAME unset or misspelled; SDK fell back to its default |
| Traces only, no metrics or logs |
An OTEL_*_EXPORTER variable was set and overrode the default |
Rows present but last_seen is stale |
The process exited, or the deployment was rolled back |
| Two distro values for one service |
Classic agent and EDOT both attached, or an old replica still running |
If the field names above are absent from the mapping, confirm what is available with GET /<index>/_mapping before
concluding the telemetry is wrong.
Examples
"Add observability to my Spring Boot service" — read pom.xml to confirm Java, check for co.elastic.apm and
ELASTIC_APM_* markers, and finding none, take the instrument path in references/java.md. Add the -javaagent flag
to the container entrypoint, set the three environment variables against the managed OTLP endpoint, then run the
verification query and report which signals arrived.
"We're moving off the Elastic APM agent to EDOT, we're on .NET" — this is the migrate path. Remove the
Elastic.Apm.* packages, the AddAllElasticApm() call, and the ElasticApm block from appsettings.json in the same
change that adds Elastic.OpenTelemetry and builder.AddElasticOpenTelemetry(). Translate the configuration rather
than copying it — in particular do not reuse ELASTIC_APM_SERVER_URLS as the OTLP endpoint. Verify with step 3 and
confirm exactly one distro is reporting.
"I instrumented my Python app but nothing shows up in Elastic" — start at the verification process, not at the
configuration. Run step 1; if it is empty, run step 2 to see whether the service is reporting under a different name. If
the service is absent entirely, the two candidates are an unwrapped entrypoint (opentelemetry-instrument missing) and
an endpoint still pointing at APM Server. Check the entrypoint first — it is the more common of the two.
"Our service sends traces but we have no logs or metrics" — this is the OTEL_*_EXPORTER signature. Confirm it with
step 1, which will show a traces data stream and nothing else, then remove the OTEL_TRACES_EXPORTER,
OTEL_METRICS_EXPORTER, or OTEL_LOGS_EXPORTER variable from the deployment and re-verify.
Guidelines
- Read the setup or migration guide for the language before editing. The per-language references link the
authoritative page; the attach mechanism differs enough between runtimes that pattern-matching from another language
produces broken configurations.
- Removal and replacement go in one change. A window where both the classic agent and EDOT are attached produces
double-instrumented traces that are worse than either alone.
- Never carry the classic server URL forward.
ELASTIC_APM_SERVER_URL points at APM Server;
OTEL_EXPORTER_OTLP_ENDPOINT must point at the managed OTLP endpoint or an EDOT Collector.
- Set the three variables and no more. Additional
OTEL_* tuning is occasionally justified, but the exporter
variables specifically should be left at their defaults.
- Treat an empty verification result as unknown, not as failure of a specific component. Distinguish the causes with
step 2 before recommending a fix.
- Never place a credential in the skill's output or in a committed file.
OTEL_EXPORTER_OTLP_HEADERS belongs in the
deployment's secret mechanism.
- Attribution: the per-language EDOT guidance consolidated here originates with the
apm-agent-devs team.
Operations
| HTTP API (shorthand) |
elastic CLI command |
GET / |
elastic es info |
POST /_query |
elastic es esql query --format tsv --query '<esql>' |
GET /<index>/_mapping |
elastic es indices get-mapping --index '<index>' |
1---2name: observability-onboarding3description: Onboard an application into Elastic Observability with the Elastic Distribution of OpenTelemetry (EDOT): route on language and runtime, detect and replace a classic Elastic APM agent, apply the required OTLP configuration, and then verify with ES|QL that traces, metrics, and logs actually arrive under the expected service name. Use when adding observability to a service, migrating off the classic Elastic APM agent, or debugging why an instrumented service is not showing up in Elastic.4---5
6# Observability Onboarding
7
8Instrument an application with the Elastic Distribution of OpenTelemetry (EDOT) and prove the telemetry arrived. The
9instrumentation change is only half the job: an application can be configured perfectly and still emit nothing, so this
10skill ends by querying Elasticsearch for the service's data rather than declaring success from a config diff.
11
12The scope is application instrumentation with the EDOT SDKs. Deploying an EDOT Collector, collecting logs from files or
13infrastructure, and onboarding data through Elastic Agent, Fleet, or integration packages are separate ingest paths that
14this skill does not cover.
15
16Once telemetry is flowing, use the **observability-sre-triage** skill to assess service health,
17**observability-k8s-investigation** for Kubernetes-layer failures, **observability-service-reliability** to define SLOs
18and alerts on the new signals, and **observability-llm-obs** for GenAI and agentic workloads.
19
20<!-- begin-partial: preamble -->
21
22## Environment Configuration
23
24This skill executes Elasticsearch operations through the `elastic` CLI. If the
25[`elastic` CLI](https://github.com/elastic/cli#configuration) is not installed, tell the user what it is needed for. Do
26not guess credentials, call the HTTP API directly, or attempt other workarounds.
27
28This skill references operations in HTTP-shorthand form (e.g., `GET /`, `GET /_cat/indices`, `GET /{index}/_mapping`,
29`GET /{index}/_settings/index.mode`, `POST /_query`). The [Operations](#operations) table at the end of this document
30maps each shorthand to the equivalent `elastic` CLI command — always use the CLI rather than calling the HTTP API
31directly.
32
33<!-- end-partial: preamble -->
34
35### Analysis without cluster access
36
37The CLI check above gates _querying the cluster_ — it does not gate analysis. When the user has already supplied the
38evidence in their question (metric values, counts, status reasons, log lines, alert payloads, configuration), reason
39from that evidence and deliver the conclusion.
40
41When you genuinely do need data the user has not provided, still say what you would check and how — name the specific
42query, index, and field that would settle the question — and then ask for CLI setup. An answer that names the check is
43useful without a cluster; one that only asks for setup is not.
44
45Only the verification step in this skill talks to Elasticsearch; it runs through `POST /_query`. Everything else edits
46application code and configuration in the user's workspace.
47
48## Jobs to be done
49
50- Decide whether a service needs fresh instrumentation or a migration off the classic Elastic APM agent
51- Apply the EDOT configuration for the service's language and runtime
52- Point telemetry at the correct OTLP destination and reject APM Server URLs
53- Verify that traces, metrics, and logs land in Elasticsearch under the expected `service.name`
54- Diagnose an instrumented service that is reporting nothing, or reporting from the wrong agent
55
56## Output discipline
57
58Applies to every response produced under this skill.
59
60- **Make the edit.** When the language, the current agent, and the destination are known, apply the change. Do not
61 narrate a plan and ask for approval on each file; ask only when a decision genuinely cannot be inferred.
62- **Do not dump documentation.** Link the relevant page and state the two or three rules that apply to this service.
63 Pasting a whole setup guide into the reply is a defect.
64- **Verify before reporting success.** "Configured correctly" is not the finding; "telemetry is arriving" is. If
65 verification returns no rows, say the service is not reporting and give the most likely cause.
66- **Do not speculate past the evidence.** If the verification query is empty, that is one fact with several possible
67 causes — name the likeliest and how to distinguish it, rather than asserting one.
68- **End on the result.** No trailing offers such as "want me to set up dashboards next?". Follow-up work belongs in a
69 recommendations list, phrased as a recommendation.
70
71## Process: route the request
72
731. **Identify the language and runtime.** Read the project's dependency manifest — `pom.xml` or `build.gradle`,
74 `requirements.txt` or `pyproject.toml`, `*.csproj`, `composer.json`. The decision: which language reference to open.
75 Also note how the process starts (a Dockerfile `ENTRYPOINT`, a Kubernetes pod spec, a systemd unit), because that is
76 where the agent attaches and where the environment variables must be set.
77
78 | Runtime | Reference | How EDOT attaches |
79 | ------- | -------------------------------------------- | ---------------------------------------------------------- |
80 | Java | [references/java.md](references/java.md) | `-javaagent:` flag or `JAVA_TOOL_OPTIONS` |
81 | Python | [references/python.md](references/python.md) | `opentelemetry-instrument` entrypoint wrapper |
82 | .NET | [references/dotnet.md](references/dotnet.md) | `builder.AddElasticOpenTelemetry()` in startup |
83 | PHP | [references/php.md](references/php.md) | native extension via OS package, then full process restart |
84
85 For a language not listed, follow the same shape — the required configuration and the following verification step are
86 language-independent — and use the upstream EDOT SDK documentation for the attach mechanism.
87
882. **Detect a classic Elastic APM agent.** The decision: instrument path or migrate path. Each language reference lists
89 the markers; the common ones are `ELASTIC_APM_*` environment variables and a language-specific Elastic APM package.
90 If any marker is present, take the migrate path — do not layer EDOT on top.
91
923. **Resolve the telemetry destination.** The decision: which URL goes in `OTEL_EXPORTER_OTLP_ENDPOINT`. Two valid
93 answers, and one common wrong one:
94 - The **Elastic managed OTLP endpoint** for the deployment or Serverless project. Correct default.
95 - An **EDOT Collector** the user already runs, when telemetry must be enriched, sampled, or fanned out before it
96 reaches Elastic.
97 - **Never an APM Server URL.** If the candidate contains `apm-server`, ends in port 8200, or has an
98 `/intake/v2/events` path, it is the classic ingest endpoint and EDOT cannot use it. On the migrate path this is the
99 single most common mistake — the old `ELASTIC_APM_SERVER_URL` value must not be carried over.
100
1014. **Apply the shared configuration below, then the language reference.** The shared rules are the same for every
102 runtime; the reference covers only what is language-specific.
103
1045. **Verify.** Do not report success from the configuration alone — run the verification process.
105
106## Required configuration
107
108Identical across every EDOT SDK. Set exactly three environment variables:
109
110| Variable | Value |
111| ----------------------------- | --------------------------------------------------------------------------------------------------------------------- |
112| `OTEL_SERVICE_NAME` | The service's name. This becomes `service.name` in Elasticsearch and is how every other Observability skill finds it. |
113| `OTEL_EXPORTER_OTLP_ENDPOINT` | The managed OTLP endpoint or EDOT Collector URL resolved in step 3. |
114| `OTEL_EXPORTER_OTLP_HEADERS` | The credential, in `Authorization=ApiKey <key>` or `Authorization=Bearer <token>` form. |
115
116Two rules that hold for every language:
117
118- **Do not set `OTEL_TRACES_EXPORTER`, `OTEL_METRICS_EXPORTER`, or `OTEL_LOGS_EXPORTER`.** The defaults are already
119 correct. Setting them is the usual reason a service reports traces but no metrics or logs.
120- **Never run a classic Elastic APM agent and EDOT together** on the same process. They double-instrument and produce
121 inconsistent traces. Removal and replacement belong in the same change.
122
123## Process: verify telemetry arrives
124
125Run this after every instrument or migrate change, and as the entry point when a user reports that an instrumented
126service is missing. Give the pipeline a minute or two after the deployment restarts before concluding anything.
127
1281. **Confirm documents are landing for the service.** Query `POST /_query`, scoping to the service name that was set in
129 `OTEL_SERVICE_NAME`. The decision: is anything arriving at all, and across which signals.
130
131 ```esql
132 FROM traces-*,metrics-*,logs-* METADATA _index
133 | WHERE @timestamp > NOW() - 15 minutes AND service.name == "<service>"
134 | STATS docs = COUNT(*), last_seen = MAX(@timestamp) BY _index
135 | SORT docs DESC
136 | LIMIT 20
137 ```
138
139 A healthy result has rows from a traces data stream, a metrics data stream, and a logs data stream, with `last_seen`
140 inside the last minute or two. Missing signals are diagnostic, not cosmetic: traces only, with no metrics or logs,
141 usually means an `OTEL_*_EXPORTER` variable was set.
142
1432. **If nothing came back, find out what name the service is reporting under.** An empty result is ambiguous between "no
144 telemetry at all" and "telemetry arriving under a different name" — a typo in `OTEL_SERVICE_NAME`, or the SDK default
145 of `unknown_service`. Drop the service filter and look at what is actually arriving.
146
147 ```esql
148 FROM traces-*,metrics-*,logs-*
149 | WHERE @timestamp > NOW() - 15 minutes
150 | STATS docs = COUNT(*), last_seen = MAX(@timestamp) BY service.name
151 | SORT docs DESC
152 | LIMIT 25
153 ```
154
155 The decision: if the service appears under an unexpected name, fix `OTEL_SERVICE_NAME`. If it does not appear at all,
156 the exporter is not reaching the destination — go back to step 3 of the routing process and re-check the endpoint and
157 credential.
158
1593. **Confirm EDOT is the reporter, not something else.** This is what distinguishes a correct migration from a
160 half-finished one, and vanilla OpenTelemetry from EDOT.
161
162 ```esql
163 FROM traces-*
164 | WHERE @timestamp > NOW() - 15 minutes AND service.name == "<service>"
165 | STATS spans = COUNT(*) BY telemetry.sdk.language, telemetry.sdk.name, telemetry.distro.name, telemetry.distro.version
166 | SORT spans DESC
167 | LIMIT 10
168 ```
169
170 `telemetry.distro.name` is `elastic` when an EDOT SDK is reporting. A null distro with
171 `telemetry.sdk.name == "opentelemetry"` means the application is on the upstream OpenTelemetry SDK rather than EDOT.
172 Two rows for one service — one with the Elastic distro and one without, or two different `telemetry.sdk.language`
173 values — means more than one agent is attached, or an old deployment is still running.
174
1754. **Diagnose from the shape of the result.**
176
177 | Verification result | Most likely cause |
178 | ---------------------------------------------------------- | ------------------------------------------------------------------------- |
179 | No rows for the service, and the name is absent everywhere | Exporter never reached the destination — wrong endpoint or bad credential |
180 | Service appears under a different name | `OTEL_SERVICE_NAME` unset or misspelled; SDK fell back to its default |
181 | Traces only, no metrics or logs | An `OTEL_*_EXPORTER` variable was set and overrode the default |
182 | Rows present but `last_seen` is stale | The process exited, or the deployment was rolled back |
183 | Two distro values for one service | Classic agent and EDOT both attached, or an old replica still running |
184
185 If the field names above are absent from the mapping, confirm what is available with `GET /<index>/_mapping` before
186 concluding the telemetry is wrong.
187
188## Examples
189
190**"Add observability to my Spring Boot service"** — read `pom.xml` to confirm Java, check for `co.elastic.apm` and
191`ELASTIC_APM_*` markers, and finding none, take the instrument path in `references/java.md`. Add the `-javaagent` flag
192to the container entrypoint, set the three environment variables against the managed OTLP endpoint, then run the
193verification query and report which signals arrived.
194
195**"We're moving off the Elastic APM agent to EDOT, we're on .NET"** — this is the migrate path. Remove the
196`Elastic.Apm.*` packages, the `AddAllElasticApm()` call, and the `ElasticApm` block from `appsettings.json` in the same
197change that adds `Elastic.OpenTelemetry` and `builder.AddElasticOpenTelemetry()`. Translate the configuration rather
198than copying it — in particular do not reuse `ELASTIC_APM_SERVER_URLS` as the OTLP endpoint. Verify with step 3 and
199confirm exactly one distro is reporting.
200
201**"I instrumented my Python app but nothing shows up in Elastic"** — start at the verification process, not at the
202configuration. Run step 1; if it is empty, run step 2 to see whether the service is reporting under a different name. If
203the service is absent entirely, the two candidates are an unwrapped entrypoint (`opentelemetry-instrument` missing) and
204an endpoint still pointing at APM Server. Check the entrypoint first — it is the more common of the two.
205
206**"Our service sends traces but we have no logs or metrics"** — this is the `OTEL_*_EXPORTER` signature. Confirm it with
207step 1, which will show a traces data stream and nothing else, then remove the `OTEL_TRACES_EXPORTER`,
208`OTEL_METRICS_EXPORTER`, or `OTEL_LOGS_EXPORTER` variable from the deployment and re-verify.
209
210## Guidelines
211
212- **Read the setup or migration guide for the language before editing.** The per-language references link the
213 authoritative page; the attach mechanism differs enough between runtimes that pattern-matching from another language
214 produces broken configurations.
215- **Removal and replacement go in one change.** A window where both the classic agent and EDOT are attached produces
216 double-instrumented traces that are worse than either alone.
217- **Never carry the classic server URL forward.** `ELASTIC_APM_SERVER_URL` points at APM Server;
218 `OTEL_EXPORTER_OTLP_ENDPOINT` must point at the managed OTLP endpoint or an EDOT Collector.
219- **Set the three variables and no more.** Additional `OTEL_*` tuning is occasionally justified, but the exporter
220 variables specifically should be left at their defaults.
221- **Treat an empty verification result as unknown, not as failure of a specific component.** Distinguish the causes with
222 step 2 before recommending a fix.
223- **Never place a credential in the skill's output or in a committed file.** `OTEL_EXPORTER_OTLP_HEADERS` belongs in the
224 deployment's secret mechanism.
225- Attribution: the per-language EDOT guidance consolidated here originates with the `apm-agent-devs` team.
226
227## Operations
228
229| HTTP API (shorthand) | `elastic` CLI command |
230| ----------------------- | ----------------------------------------------------- |
231| `GET /` | `elastic es info` |
232| `POST /_query` | `elastic es esql query --format tsv --query '<esql>'` |
233| `GET /<index>/_mapping` | `elastic es indices get-mapping --index '<index>'` |