1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-23 01:26:11 +02:00

Add Loggly handler.

This commit is contained in:
Przemek Sobstel
2013-10-02 14:15:33 +02:00
parent df90f919b7
commit ea3854a0eb

View File

@@ -0,0 +1,64 @@
<?php
/*
* This file is part of the Monolog package.
*
* (c) Przemek Sobstel <przemek@sobstel.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Monolog\Handler;
use Monolog\Logger;
use Monolog\Formatter\JsonFormatter;
/**
* Sends errors to Loggly.
*/
class LogglyHandler extends AbstractProcessingHandler
{
const HOST = 'logs-01.loggly.com';
protected $token;
protected $tag;
public function __construct($token, $level = Logger::DEBUG, $bubble = true)
{
$this->token = $token;
$this->tag = $tag;
parent::__construct($level, $bubble);
}
public function setTag($tag)
{
$this->tag = $tag;
}
protected function write(array $record)
{
$url = sprintf("http://%s/inputs/%s/", self::HOST, $this->token);
if ($this->tag) {
$url .= sprintf("tag/%s/", $this->tag);
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $record["formatted"]);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: text/plain']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
curl_close($ch);
}
protected function getDefaultFormatter()
{
return new JsonFormatter();
}
}