Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes for php blog post #2555

Merged
merged 1 commit into from
Mar 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/en/blog/2023/php-auto-instrumentation/index.md
Original file line number Diff line number Diff line change
@@ -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)'
Expand All @@ -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

Expand Down Expand Up @@ -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)
Expand Down