Download the PHP package jellytony/observability without Composer

On this page you can find all versions of the php package jellytony/observability. 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 observability

JellyTony/Observability 使用说明

项目简介

jellytony/observability 是一个为 Laravel 框架提供的分布式可观测性工具。它支持 Zipkin 和 Jaeger 等追踪系统,通过集成追踪功能,可以帮助你在分布式应用中进行请求跟踪、性能监控、日志聚合等操作。

安装与配置

安装

通过 Composer 安装 jellytony/observability

配置

  1. 服务提供者注册

    在 Laravel 项目的 config/app.php 文件的 providers 数组中,添加 ObservabilityServiceProviderLogServiceProvider

    在 Lumen 项目中,在 bootstrap/app.php 文件中,添加 ObservabilityServiceProviderLogServiceProvider

  2. 配置文件

    config/observability.php 中,你可以配置追踪系统(如 Zipkin)的相关设置。

    例如,配置 Zipkin 追踪:

    你可以根据需要更改 Zipkin 的配置或选择不同的追踪系统(如 Jaeger)。

使用

启用请求跟踪

在 Laravel 中,追踪功能会自动处理 HTTP 请求和响应的追踪。你只需要确保 ObservabilityServiceProvider 已正确注册,系统会自动捕获每个请求的信息。

启动日志注入 trace 信息

在 Laravel 中,你可以使用 LogServiceProvider 启用日志注入 trace 信息。

自定义中间件

该项目提供了一些自定义中间件用于处理请求跟踪:

这些中间件可以在 laravel 的 app/Http/Kernel.php 中启用:

在 Lumen 中,你可以在 bootstrap/app.php 中启用:

然后在 routes/web.php 路由中添加路由,例如:

使用追踪服务

你可以使用 JellyTony\Observability\Facades\Trace 进行手动追踪:

测试

该库包含了一些基础的单元测试,使用 PHPUnit 进行测试。

  1. 安装 PHPUnit 依赖:

  2. 运行测试:

贡献

如果你想为此库贡献代码,欢迎提交 PR。你可以修改 src 目录中的代码或增加新的追踪驱动(例如支持 Jaeger)。确保修改或添加的功能有适当的测试覆盖。

支持的追踪系统

许可证

MIT License.


All versions of observability with dependencies

PHP Build Version
Package Version
No informations.
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 jellytony/observability contains the following files

Loading the files please wait ....