softius / jenkins-job-monitor
Monitor non-interactive execution of processes including Symfony Commands, cron jobs, procmail and inetd-launched processes
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ~5.6|~7.0
- guzzlehttp/guzzle: ^6.2
- guzzlehttp/psr7: ^1.3
- symfony/console: ^3.1
- symfony/process: ^3.1
Requires (Dev)
- phpunit/phpunit: ~4.0||~5.0
- squizlabs/php_codesniffer: ^2.3
This package is auto-updated.
Last update: 2024-10-14 04:07:00 UTC
README
Jenkins is useful for monitoring the non-interactive execution of processes, such as cron jobs, procmail, inetd-launched processes. This library facilates Jenkins integration for PHP projects and processes running in a PHP environment.
Monitoring external jobs in Jenkins
Install
Via Composer
$ composer require softius/jenkins-job-monitor
Usage
Monitor a process
A process result can be submitted using the command jenkins-job-monitor monitor
as indicated below.
jenkins-job-monitor monitor http://acme.org/jenkins jobName 'ls -lah'
Submit a process result
A process result can be submitted using the command jenkins-job-monitor push
. This approach is only useful when the process output and total execution are already available and it's only necessary to push the data to Jenkins.
jenkins-job-monitor push http://acme.org/jenkins jobName --log "Command results" --duration 5
Large log results can be transported through pipe as shown below.
cat results.txt | jenkins-job-monitor push http://acme.org/jenkins jobName --duration 5
Testing
$ composer test
Security
If you discover any security related issues, please email softius@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.