Download the PHP package digitalrevolution/symfony-trace-bundle without Composer

On this page you can find all versions of the php package digitalrevolution/symfony-trace-bundle. 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 symfony-trace-bundle

Minimum PHP Version Minimum Symfony Version Run tests

Symfony Trace Bundle

Based on chrisguitarguy/RequestIdBundle

This adds trace ID's to your Symfony application. Why? It's a great way to add some additional information to logs and to present to users. The trace id will be available in:

Installation

Use Composer.

Then enable the bundle in your /config/bundles.php:

Configuration

By default, the bundle will use the W3C TraceContext standard to receive and pass on the traceId.
For configuration details see: TraceContext configuration

It's also possible to configure the bundle to setup custom request/response headers and custom ID generators.
Read more about the available configuration options on TraceId configuration in the /docs pages.

How it Works

When a request arrives, it is inspected for request header containing a traceId. If present, the value in that header will be used throughout the rest of the bundle. This lets you use trace ID's from somewhere higher up in the stack (like in the web server itself).

If no trace ID is found, one is generated by the TraceIdGeneratorInterface. In tracecontext mode, the IDs are generated according to the TraceContext standard. The default generator in traceId mode creates version 4 UUIDs.

On the way out, a response header can be set on the response as well using the value(s) described above.

The headers are configurable. See the configuration above. Internally a transaction ID is generator as well. This ID is used to identify a single request.

Monolog Integration

There's a monolog Processor that adds the trace ID and transaction ID to extra array on the record. This can be turned off by setting enable_monolog to false in the configuration.

To use the trace ID in your logs, include %extra.trace_id% in your formatter. To use the transaction ID in your logs, include %extra.transaction_id% in your formatter. Here's a configuration example from this bundle's tests.

Messenger Integration

When enabled, the full trace data of the dispatcher process, will be added to the Envelope of the message. On the consumer side the trace data will be applied to the running consumer process. Once the Envelope has been handled, the values will be reset to the original values of the consumer process (if any).

Twig Integration

By default, this bundle will add a global trace_id and transaction_id function to your twig environment. To disable this set enable_twig to false in the bundle configuration.

Here's an example of a template.

HttpClient integration

By default this bundle will check for services tagged with the http_client.trace_id tag and decorate them with the TraceAwareHttpClient. When tagDefaultClient is enabled the default symfony http client will also be tagged and thus decorated. This will add the trace header(s) to all outgoing requests for the tagged clients. In traceId mode the header name can be changed with the header configuration option.

Sentry integration

When enabled, the bundle will add trace_id and transaction_id tags to the Sentry reports.

About us

At 123inkt (Part of Digital Revolution B.V.), every day more than 50 development professionals are working on improving our internal ERP and our several shops. Do you want to join us? We are looking for developers.


All versions of symfony-trace-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
symfony/config Version ^6.3||^7.0
symfony/dependency-injection Version ^6.3||^7.0
symfony/http-foundation Version ^6.3||^7.0
symfony/http-kernel Version ^6.3||^7.0
symfony/framework-bundle Version ^6.3||^7.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 digitalrevolution/symfony-trace-bundle contains the following files

Loading the files please wait ....