From 21ec145c27bd371ab4ee517dcb186f83f5f1dc71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Mon, 10 Oct 2022 22:53:04 +0200 Subject: [PATCH] Add more auto-instrumentation examples (#2853) --- specification/glossary.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/specification/glossary.md b/specification/glossary.md index 6de6aaf419d..c8e0e5affd4 100644 --- a/specification/glossary.md +++ b/specification/glossary.md @@ -106,7 +106,8 @@ Coding against the OpenTelemetry API such as the [Tracing API](trace/api.md), [M ### Automatic Instrumentation Refers to telemetry collection methods that do not require the end-user to modify application's source code. -Methods vary by programming language, and examples include bytecode injection or monkey patching. +Methods vary by programming language, and examples include code manipulation (during compilation or at runtime), +monkey patching, or running eBPF programs. Synonym: *Auto-instrumentation*.