org_heigl/webhookhandler

A monolog-handler that POSTs to a webhook

1.1.1 2017-03-02 10:45 UTC

This package is auto-updated.

Last update: 2024-03-23 09:00:41 UTC


README

Log-Hander that POSTs a log-request using HTTPlug

Installation

composer require org_Heigl/webhookhandler

Usage

  1. Create the handler
    $uriFactory = \Http\Discovery\UriFactoryDiscovery::find();
    $uri = $uriFactory->createUri('http://example.com/');
        
    $handler = new WebHookHandler(
        $uri,
        Logger::DEBUG,
        \Http\Discovery\HttpAsyncClientDiscovery::find(),
        Http\Discovery\MessageFactoryDiscovery::find()
    );
    
    $handler->setFrom('WhateverYouWant');
  1. Add the handler to the logger as you would with any other handler:
    $logger = new Logger('example');
    $logger->pushHandler($handler);
  1. Log as you are used to:
    $logger->log('Whatever you want to say');

The log-message will be send via a HTTP-POST to the provided URI (in this example to ```http://example.com/``).

The post-body will be the following json_encoded array:

[
    [message] => The message of the log-entry
    [from] => 'WhateverYouWant'
    [context] => []
    [level] => the set log-level
    [level_name] => the name of the set log-level
    [channel] => Whatever you set as channel name for the logger
    [datetime] => DateTime-Object
    [extra] => []
    [formatted] => The formatted message
 ]

That mainly is the array that monolog passes to the handlers…