Download the PHP package zendtech/zendhq-monolog-handler without Composer

On this page you can find all versions of the php package zendtech/zendhq-monolog-handler. 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 zendhq-monolog-handler

zendtech/zendhq-monolog-handler

This project provides a handler for Monolog that pushes to ZendHQ monitoring.

Installation

Requirements

Usage

The below examples demonstrate how to create a ZendHQHandler instance for use in writing logs with Monolog.

Default instantiation

Default usage is to use Monolog/PSR-3 log levels to indicate severity. You can instantiate the provided ZendTech\ZendHQ\MonologHandler\ZendHQHandler class without any arguments, or with the $level and/or $bubble arguments:

Instantiation for usage with named rules

ZendHQ custom monitoring rules will specify severity in the rule definition, so severity is ignored. To use such custom rules, provide the custom rule name when instantiating ZendHQHandler. The following examples target a "my_custom_rule" rule. While you can provide a default level to handle, the value will not be sent to ZendHQ, and only used to determine if a message will get logged.

Formatters and Processors

The ZendHQHandler implements each of Monolog\Handler\ProcessableHandlerInterface and Monolog\Handler\FormattableHandlerInterface. As such, you can attach processors and formatters to your handler in order to manipulate the information logged. See the Monolog documentation on formatters and processors for more details.

As examples:

Adding the handler to Monolog

Monolog writes to channels, which are essentially just a way of partitioning different logs from each other.

From here, you need to add the handler to the logger:

To log, use one of the various logging methods of the $logger instance:

Notes


All versions of zendhq-monolog-handler with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0
ext-zendhq Version *
monolog/monolog Version ^2.4 || ^3.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 zendtech/zendhq-monolog-handler contains the following files

Loading the files please wait ....