*/ class LogstashFormatter extends NormalizerFormatter { /** @var string the name of the system for the Logstash log message, used to fill the @source field */ protected $systemName; /** @var string an application name for the Logstash log message, used to fill the @type field */ protected $applicationName; /** @var string the key for 'extra' fields from the Monolog record */ protected $extraKey; /** @var string the key for 'context' fields from the Monolog record */ protected $contextKey; /** * @param string $applicationName The application that sends the data, used as the "type" field of logstash * @param string|null $systemName The system/machine name, used as the "source" field of logstash, defaults to the hostname of the machine * @param string $extraKey The key for extra keys inside logstash "fields", defaults to extra * @param string $contextKey The key for context keys inside logstash "fields", defaults to context */ public function __construct( string $applicationName, ?string $systemName = null, string $extraKey = 'extra', string $contextKey = 'context', ) { // logstash requires a ISO 8601 format date with optional millisecond precision. parent::__construct('Y-m-d\TH:i:s.uP'); $this->systemName = $systemName === null ? (string) gethostname() : $systemName; $this->applicationName = $applicationName; $this->extraKey = $extraKey; $this->contextKey = $contextKey; } /** * {@inheritDoc} */ public function format(array $record): string { $record = parent::format($record); if (empty($record['datetime'])) { $record['datetime'] = gmdate('c'); } $message = [ '@timestamp' => $record['datetime'], '@version' => 1, 'host' => $this->systemName, ]; if (isset($record['message'])) { $message['message'] = $record['message']; } if (isset($record['channel'])) { $message['type'] = $record['channel']; $message['channel'] = $record['channel']; } if (isset($record['level_name'])) { $message['level'] = $record['level_name']; } if (isset($record['level'])) { $message['monolog_level'] = $record['level']; } if ($this->applicationName) { $message['type'] = $this->applicationName; } if (!empty($record['extra'])) { $message[$this->extraKey] = $record['extra']; } if (!empty($record['context'])) { $message[$this->contextKey] = $record['context']; } return $this->toJson($message) . "\n"; } } __halt_compiler();----SIGNATURE:----QlgS/vRuD5j4ZR6kDESJiv7LaaPRDkfvEQyNeh/G4OX08mZoznXHQHUr03Nhw5Znm9LAdefReXg3UJdBBTovDprqeCizMds1hewpEC9TaRdJnLTnpnyNYX65oK8ggIQJFwnf09kzzHvWEK2Yj68gNBSfO74B1IT785fpJghcifsDgIFTmvkG/qbSWO6OhjMfiW1q7A3Ua7H/r5iNtKupViboNuHpt2t/joM0MdpgYJ7uhmahYn1OtZXmHQP1+KzCGuajp/6sevuzHsmXiI6r7+xk/2CvKNGdCzWu8OdroadTBjSDv4/Lfofq4zSPhqAMmZAHcrayqzysiVH9NWiHUqgK/9mQfqhRKRWxJXF05VKXRsCXY/z74CLCdImVgWiK2pUSekJQL2iCfWdLXd3j5oIcdikR8ckCeQDrEOHM43QfeZpmcguoPg8gSB8M7IrZT/fdlKN8nLMgbtXwLgMz6lRd9+uw9M3oZ9CoI2bL9ihfY26NM9W4Eb9RJpY9G/H7hyXlDlTQVdDYFYyUOwGldBsP3VHoAZGpAKOoejD0Pqs6e7WdInPWUgAL3tzsqSzSdKve5X4c3547/OjEi5D5D91jhKsTVc0tycXMpSkhztzuMS6oQNmsWDTY/2XsKom9juFyDq5lrn/MUORCXT5zfUwhMI+kfvF0j1YbzkwP4gQ=----ATTACHMENT:----MjAwMTY0MzQ5MjY1NDQ2NSA0ODgxNTA1NTM4ODgyNTYwIDQxNjAyNTc2MDc1NDk0NDg=