Download the PHP package jildertmiedema/laravel-system-monitor without Composer

On this page you can find all versions of the php package jildertmiedema/laravel-system-monitor. 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 laravel-system-monitor

laravel-system-monitor

Author Build Status Quality Score Packagist Version Total Downloads

This package will be monitor application metrices. It is dynamic configurable, but with the default settings you will be able to show some basic stuff.

This package usage statsd as a default output but off course you can implement your own store

Install

This package depends on the statsd client from the php league. Read their manual to get it up and running

Install the package:

Add these lines in the config/app.php file in the providers array.

If you've added the artisan schedule:run command to your cron, then you can add this to your App\Console\Kernel class

Now the system will send the measurement results to Statsd every minute

Configuration

To publish the config use:

Change the config/measurement.php file to your needs.

Measurements can be configured by choosing a type and key. The type is the type of the type of the measurement. The key is the statsd key. Per type some additional settings are required.

Testing

Run this command to show the result as console output. php artisan measurement:run --debug

Statsd server

This package is design to be send to a statsd server. Of course you can implement your own MeasurementStore to send it elsewhere. Some docker stuff is created to receive (and show) data. Show me

Extending

This package comes with a default setup, but you can easly extend or replace parts.

To create your own measurement, create a new class that implements the JildertMiedema\SystemMonitor\Measurements\Measurement interface. To register your class insert this in a service provider:


All versions of laravel-system-monitor with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1.3
illuminate/config Version 5.6.*
illuminate/console Version 5.6.*
illuminate/container Version 5.6.*
illuminate/database Version 5.6.*
illuminate/redis Version 5.6.*
illuminate/support Version 5.6.*
league/statsd Version ^1.4
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 jildertmiedema/laravel-system-monitor contains the following files

Loading the files please wait ....