org_heigl/webhookhandler
Composer 安装命令:
composer require org_heigl/webhookhandler
包简介
A monolog-handler that POSTs to a webhook
README 文档
README
Log-Hander that POSTs a log-request using HTTPlug
Installation
composer require org_Heigl/webhookhandler
Usage
- 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');
- Add the handler to the logger as you would with any other handler:
$logger = new Logger('example'); $logger->pushHandler($handler);
- 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…
统计信息
- 总下载量: 1.84k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-01