This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/log_logstash/main.php

68 lines
1.7 KiB
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class LogLogstash extends Extension
{
public function onInitExt(InitExtEvent $event): void
{
global $config;
$config->set_default_string("log_logstash_host", "127.0.0.1:1234");
}
public function onLog(LogEvent $event): void
{
global $user;
try {
$data = [
"@type" => "shimmie",
"@message" => $event->message,
"@fields" => [
"username" => ($user && $user->name) ? $user->name : "Anonymous",
"section" => $event->section,
"priority" => $event->priority,
"time" => $event->time,
],
#"@request" => $_SERVER,
"@request" => [
"UID" => get_request_id(),
"REMOTE_ADDR" => get_real_ip(),
],
];
$this->send_data($data);
} catch (\Exception $e) {
// we can't log that logging is broken
}
}
/**
* @param array<string, mixed> $data
*/
private function send_data(array $data): void
{
global $config;
$host = $config->get_string("log_logstash_host");
if (!$host) {
return;
}
try {
$parts = explode(":", $host);
$host = $parts[0];
$port = (int)$parts[1];
$fp = fsockopen("udp://$host", $port, $errno, $errstr);
if (!$fp) {
return;
}
fwrite($fp, \Safe\json_encode($data));
fclose($fp);
} catch (\Exception $e) {
// we can't log that logging is broken
}
}
}