Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opentelemetry-php/exporter-otlp-grpc
[READONLY] GRPC exporter
https://github.com/opentelemetry-php/exporter-otlp-grpc
Last synced: about 1 month ago
JSON representation
[READONLY] GRPC exporter
- Host: GitHub
- URL: https://github.com/opentelemetry-php/exporter-otlp-grpc
- Owner: opentelemetry-php
- Created: 2022-08-17T13:27:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-23T19:40:35.000Z (about 2 years ago)
- Last Synced: 2023-03-29T18:17:04.693Z (almost 2 years ago)
- Language: PHP
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenTelemetry gRPC Exporter
OTLP gRPC exporter for OpenTelemetry.
## Usage
See https://github.com/open-telemetry/opentelemetry-php/blob/main/examples/traces/features/exporters/otlp_grpc.php
```php
$transport = (new \OpenTelemetry\Contrib\Grpc\GrpcTransportFactory())->create('http://collector:4317');
$exporter = new \OpenTelemetry\Contrib\Otlp\SpanExporter($transport);
```