Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opentelemetry-php/contrib-auto-guzzle
[READONLY] Guzzle auto-instrumentation
https://github.com/opentelemetry-php/contrib-auto-guzzle
Last synced: about 1 month ago
JSON representation
[READONLY] Guzzle auto-instrumentation
- Host: GitHub
- URL: https://github.com/opentelemetry-php/contrib-auto-guzzle
- Owner: opentelemetry-php
- Created: 2024-01-10T13:50:35.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T02:16:25.000Z (2 months ago)
- Last Synced: 2024-11-14T16:49:58.914Z (about 2 months ago)
- Language: PHP
- Size: 14.6 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Releases](https://img.shields.io/badge/releases-purple)](https://github.com/opentelemetry-php/contrib-auto-guzzle/releases)
[![Issues](https://img.shields.io/badge/issues-pink)](https://github.com/open-telemetry/opentelemetry-php/issues)
[![Source](https://img.shields.io/badge/source-contrib-green)](https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Guzzle)
[![Mirror](https://img.shields.io/badge/mirror-opentelemetry--php--contrib-blue)](https://github.com/opentelemetry-php/contrib-auto-guzzle)
[![Latest Version](http://poser.pugx.org/open-telemetry/opentelemetry-auto-guzzle/v/unstable)](https://packagist.org/packages/open-telemetry/opentelemetry-auto-guzzle/)
[![Stable](http://poser.pugx.org/open-telemetry/opentelemetry-auto-guzzle/v/stable)](https://packagist.org/packages/open-telemetry/opentelemetry-auto-guzzle/)This is a read-only subtree split of https://github.com/open-telemetry/opentelemetry-php-contrib.
# OpenTelemetry Guzzle auto-instrumentation
Please read https://opentelemetry.io/docs/instrumentation/php/automatic/ for instructions on how to
install and configure the extension and SDK.## Overview
Auto-instrumentation hooks are registered via composer.* create spans automatically for each Guzzle request that is sent (sync or async)
* add a `traceparent` header to the request to facilitate distributed tracing## Configuration
The extension can be disabled via [runtime configuration](https://opentelemetry.io/docs/instrumentation/php/sdk/#configuration):
```shell
OTEL_PHP_DISABLED_INSTRUMENTATIONS=guzzle
```