Download the PHP package qualtrics/jaeger-client-php without Composer

On this page you can find all versions of the php package qualtrics/jaeger-client-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package jaeger-client-php

Jaeger Bindings for PHP OpenTracing API

Build Status OpenTracing Badge Minimum PHP Version License

This is a client-side library that implements an OpenTracing Tracer, with Zipkin-compatible data model. The library's package is qualtrics/jaeger-client-php.

IMPORTANT: Please note that while jaeger-client-php can record and report spans, it is still under active development and remains incomplete in a number of ways. It's modeled after jaeger-client-go in design, but many components are not yet implemented and the API is still subject to change.

Required Reading

In order to understand the library, one must first be familiar with the OpenTracing project and specification more specifically. Additionally, one should review the PHP OpenTracing API.

How to Contribute

We're still working on this; reach out to @tylerchr for now.

Installation

We recommend using a dependency manager like Composer when including this library into an application. For example, add these lines to your composer.json file:

Initialization

You'll likely also want to make sure to flush the tracer just prior to application shutdown. The simplest way to do this is by registering a custom shutdown function:

Instrumentation for Tracing

Since this tracer is fully compliant with the OpenTracing API 1.0, all code instrumentation should only use the API itself, as descriped in the opentracing-php documentation.

Features

Reporters

A "reporter" is a component receives the finished spans and reports them to somewhere. Under normal circumstances, the Tracer should use the default RemoteReporter, which sends the spans out of process via configurable "transport". Additionally, the NullReporter, a no-op reporter that does nothing, may be helpful to e.g. ignore trace data when tracing is disabled.

Transports

The remote reporter uses "transports" to actually send the spans out of process. Currently the only supported transport is Thrift over UDP. Perhaps more transports will be added in the future.

Two data formats are currently supported:

Sampling

The tracer does not record all spans, but only those that have the sampling bit set in the flags. When a new trace is started and a new unique ID is generated, a sampling decision is made concerning whether this trace should be sampled. The sampling decision is propagated to all downstream calls via the flags field of the trace context. The following samplers are available:

Baggage Injection

Baggage is not currently supported.

License

Apache 2.0 License.


All versions of jaeger-client-php with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2|^8.0
ext-sockets Version *
opentracing/opentracing Version ^1.0.1
apache/thrift Version >=0.10.0 <1.0.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package qualtrics/jaeger-client-php contains the following files

Loading the files please wait ....