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.
Download worksome/horizon-telemetry
More information about worksome/horizon-telemetry
Files in worksome/horizon-telemetry
Package horizon-telemetry
Short Description An Opentelemetry implementation for Laravel Horizon and queues
License MIT
Homepage https://github.com/worksome/horizon-telemetry
Informations about the package horizon-telemetry
OpenTelemetry for Laravel Horizon and queues
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
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