-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* gitsplit exporters * gitsplit swoole context
- Loading branch information
Showing
24 changed files
with
287 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# OpenTelemetry protobuf files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# OpenTelemetry API |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# OpenTelemetry Context |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# OpenTelemetry Swoole context |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "open-telemetry/context-swoole", | ||
"description": "Async Swoole/OpenSwoole context implementation for OpenTelemetry PHP.", | ||
"keywords": ["opentelemetry", "otel", "contrib", "context", "swoole", "openswoole", "coroutine"], | ||
"type": "library", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "opentelemetry-php contributors", | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"open-telemetry/context": "self.version" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"OpenTelemetry\\Contrib\\Context\\Swoole\\": "." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# OpenTelemetry Jaeger Exporter | ||
|
||
A Jaeger exporter for OpenTelemetry. | ||
|
||
## Usage | ||
|
||
### HTTP (Zipkin) | ||
https://github.com/open-telemetry/opentelemetry-php/blob/main/examples/traces/features/exporters/jaeger.php | ||
|
||
### Thrift | ||
https://github.com/open-telemetry/opentelemetry-php/blob/main/examples/traces/features/exporters/jaeger_thrift.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "open-telemetry/exporter-jaeger", | ||
"description": "jaeger exporter for OpenTelemetry PHP.", | ||
"keywords": ["opentelemetry", "otel", "tracing", "exporter", "contrib", "jaeger"], | ||
"type": "library", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "opentelemetry-php contributors", | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"open-telemetry/api": "self.version", | ||
"open-telemetry/gen-jaeger-thrift": "self.version", | ||
"open-telemetry/exporter-zipkin": "self.version", | ||
"open-telemetry/sdk": "self.version", | ||
"php-http/async-client-implementation": "^1.0", | ||
"php-http/discovery": "^1.14", | ||
"psr/http-factory-implementation": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"OpenTelemetry\\Contrib\\Jaeger\\": "." | ||
} | ||
}, | ||
"suggest": { | ||
"ext-sockets": "To use the Thrift UDP Exporter" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# OpenTelemetry New Relic Exporter | ||
|
||
A New Relic exporter for OpenTelemetry. | ||
|
||
## Usage | ||
|
||
See https://github.com/open-telemetry/opentelemetry-php/blob/main/examples/traces/features/exporters/newrelic.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "open-telemetry/exporter-newrelic", | ||
"description": "New Relic exporter for OpenTelemetry PHP.", | ||
"keywords": ["opentelemetry", "otel", "tracing", "exporter", "newrelic"], | ||
"type": "library", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "opentelemetry-php contributors", | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"open-telemetry/sdk": "self.version", | ||
"php-http/async-client-implementation": "^1.0", | ||
"php-http/discovery": "^1.14", | ||
"psr/http-factory-implementation": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"OpenTelemetry\\Contrib\\Newrelic\\": "." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# OpenTelemetry OTLP common exporter | ||
|
||
Common funtionality used by both OTLP GRPC and HTTP exporters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "open-telemetry/exporter-otlp-common", | ||
"description": "OTLP common code for OpenTelemetry exporters.", | ||
"keywords": ["opentelemetry", "otel", "tracing", "metrics", "exporter", "otlp", "grpc"], | ||
"type": "library", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "opentelemetry-php contributors", | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"open-telemetry/gen-otlp-protobuf": "self.version", | ||
"open-telemetry/api": "self.version", | ||
"open-telemetry/sdk": "self.version" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"OpenTelemetry\\Contrib\\Otlp\\": "." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "open-telemetry/exporter-otlp-grpc", | ||
"description": "GRPC exporter for OpenTelemetry PHP.", | ||
"keywords": ["opentelemetry", "otel", "tracing", "apm", "otlp", "grpc", "protobuf"], | ||
"type": "library", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "opentelemetry-php contributors", | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"ext-grpc": "*", | ||
"google/protobuf": "^3.3.0", | ||
"open-telemetry/exporter-otlp-common": "self.version", | ||
"open-telemetry/gen-otlp-protobuf": "self.version", | ||
"open-telemetry/sdk": "self.version" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"OpenTelemetry\\Contrib\\OtlpGrpc\\": "." | ||
} | ||
}, | ||
"suggest": { | ||
"ext-protobuf": "For more performant grpc exporting" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# OpenTelemetry HTTP Exporter | ||
|
||
OTLP HTTP exporter for OpenTelemetry. | ||
|
||
## Usage | ||
|
||
See https://github.com/open-telemetry/opentelemetry-php/blob/main/examples/traces/features/exporters/otlp.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "open-telemetry/exporter-otlp-http", | ||
"description": "HTTP/protobuf exporter for OpenTelemetry PHP.", | ||
"keywords": ["opentelemetry", "otel", "tracing", "metrics", "otlp", "protobuf", "http"], | ||
"type": "library", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "opentelemetry-php contributors", | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"google/protobuf": "^3.3.0", | ||
"open-telemetry/api": "self.version", | ||
"open-telemetry/exporter-otlp-common": "self.version", | ||
"open-telemetry/gen-otlp-protobuf": "self.version", | ||
"open-telemetry/sdk": "self.version", | ||
"php-http/async-client-implementation": "^1.0", | ||
"php-http/discovery": "^1.14", | ||
"psr/http-factory-implementation": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"OpenTelemetry\\Contrib\\OtlpHttp\\": "." | ||
} | ||
}, | ||
"suggest": { | ||
"ext-protobuf": "For more performant protobuf exporting" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# OpenTelemetry contrib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# OpenTelemetry Zipkin Exporter | ||
|
||
Zipkin exporter for OpenTelemetry. | ||
|
||
## Usage | ||
|
||
See https://github.com/open-telemetry/opentelemetry-php/blob/main/examples/traces/features/exporters/zipkin.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "open-telemetry/exporter-zipkin", | ||
"description": "Zipkin exporter for OpenTelemetry PHP.", | ||
"keywords": ["opentelemetry", "otel", "tracing", "contrib", "exporter", "zipkin"], | ||
"type": "library", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "opentelemetry-php contributors", | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"open-telemetry/api": "self.version", | ||
"open-telemetry/sdk": "self.version", | ||
"php-http/async-client-implementation": "^1.0", | ||
"php-http/discovery": "^1.14", | ||
"psr/http-factory-implementation": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"OpenTelemetry\\Contrib\\Zipkin\\": "." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# OpenTelemetry Zipkin to New Relic Exporter | ||
|
||
_Experimental_ New Relic exporter for OpenTelemetry, which uses the Zipkin protocol. | ||
|
||
## Usage | ||
|
||
See https://github.com/open-telemetry/opentelemetry-php/blob/main/examples/traces/features/exporters/zipkin_to_newrelic.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "open-telemetry/exporter-zipkintonewrelic", | ||
"description": "Zipkin to New Relic exporter for OpenTelemetry PHP.", | ||
"keywords": ["opentelemetry", "otel", "tracing", "zipkin", "newrelic", "exporter", "contrib"], | ||
"type": "library", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "opentelemetry-php contributors", | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"open-telemetry/sdk": "self.version", | ||
"php-http/async-client-implementation": "^1.0", | ||
"php-http/discovery": "^1.14", | ||
"psr/http-factory-implementation": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"OpenTelemetry\\Contrib\\ZipkinToNewrelic\\": "." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# OpenTelemetry SDK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# OpenTelemetry Semantic Conventions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# OpenTelemetry Jaeger Thrift files |