From ca25cb947ca9559331914c60da47ba9459b5c227 Mon Sep 17 00:00:00 2001 From: Severin Neumann Date: Wed, 29 Mar 2023 20:05:15 +0200 Subject: [PATCH] Minor fixes for php blog post (#2555) --- content/en/blog/2023/php-auto-instrumentation/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/blog/2023/php-auto-instrumentation/index.md b/content/en/blog/2023/php-auto-instrumentation/index.md index 430da49df091..dd21c717c879 100644 --- a/content/en/blog/2023/php-auto-instrumentation/index.md +++ b/content/en/blog/2023/php-auto-instrumentation/index.md @@ -1,5 +1,5 @@ --- -title: Opentelemetry PHP Auto-Instrumentation +title: OpenTelemetry PHP Auto-Instrumentation linkTitle: PHP Auto-Instrumentation date: 2023-03-21 author: '[Przemek Delewski](https://github.com/pdelewski/) (Sumo Logic)' @@ -10,7 +10,7 @@ application without modyfing its source code. There are several techniques to do that, but all of them more or less work in the same way by injecting additional code into original one during compile time, link time, run-time or by extending the operating system in case of [ebpf](https://ebpf.io/). This blogpost presents -method used by Opentelemetry PHP auto-instrumentation. +method used by OpenTelemetry PHP auto-instrumentation. ## Prerequisites @@ -108,7 +108,7 @@ cd example-app composer require open-telemetry/opentelemetry-instrumentation-installer ``` -Opentelemetry instrumentation installer works in two modes: +OpenTelemetry instrumentation installer works in two modes: - basic (installs everything with most recent version) - advanced (gives control to the user)