Download the PHP package worksome/horizon-telemetry without Composer

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

OpenTelemetry for Laravel Horizon and queues

Latest Version on Packagist GitHub Tests Action Status GitHub Static Analysis Action Status Total Downloads

This package adds support for creating various matrices on your queues with the usage of Horizon.

This package requires that the scheduler is running, as it is adding new scheduled commands.

Installation

You can install the package via composer:

Usage

Metrics

CurrentMasterSupervisorsMetric

The CurrentMasterSupervisorsMetric will register the current number of master supervisors.
The metric will be registered under the name horizon_current_master_supervisors.

The default schedule for this is every 10 minutes (*/10 * * * *), to configure this, add MeterName::CurrentMasterSupervisors->value under a horizon key in your telemetry.php config file.

CurrentProcessesMetric

The CurrentProcessesMetric will register the current number of processes in each queue.
The metrics will be registered under the name horizon_current_processes.<queue_name>.

The default schedule for this is every 10 minutes (*/10 * * * *), to configure this, add MeterName::CurrentProcesses->value under a horizon key in your telemetry.php config file.

CurrentJobsMetric

The CurrentJobsMetric will register the current number of jobs in each queue.
The metrics will be registered under the name horizon_current_jobs.<queue_name>.

The default schedule for this is every 10 minutes (*/10 * * * *), to configure this, add MeterName::CurrentJobs->value under a horizon key in your telemetry.php config file.

Event Listeners

FailedJobsListener

The FailedJobsListener listener will create an observable counter that will increment each time a job fails. This metric will be registered under the name horizon_failed_jobs.

The default schedule for this is true, to disable this event listener, add MeterName::FailedJobs->value => false under a horizon key in your telemetry.php config file.

ProcessedJobsListener

The ProcessedJobsListener listener will create an observable counter that will increment each time a job is processed. This metric will be registered under the name horizon_processed_jobs.

The default schedule for this is true, to disable this event listener, add MeterName::ProcessedJobs->value => false under a horizon key in your telemetry.php config file.

ProcessedJobsPeakMemoryUsageListener

The ProcessedJobsPeakMemoryUsageListener listener will create a histogram over peak memory usage each time a job is processed. This metric will be registered under the name horizon_processed_jobs_peak_memory_usage.

Two listeners are actually registered here, the secondary listener is ProcessedJobsPeakMemoryUsagePreparationListener which will take care of clearing the peak memory usage before a job starts, so for long-running queue workers, we get the correct number.

The default schedule for this is true, to disable this event listener, add MeterName::ProcessedJobsPeakMemoryUsage->value => false under a horizon key in your telemetry.php config file.

Testing


All versions of horizon-telemetry with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/contracts Version ^10.0 || ^11.0
laravel/horizon Version ^5.22.1
open-telemetry/api Version ^1.0
worksome/laravel-telemetry Version ^0.5
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 worksome/horizon-telemetry contains the following files

Loading the files please wait ....