GitHub - systemd/php-systemd: PHP extension allowing native interaction with systemd and its journal (original) (raw)

php-systemd

PHP extension allowing native interaction with systemd and journald

Installation

Prerequisites

.deb based

sudo apt install php5-dev  libsystemd-dev

.rpm based

sudo dnf install php-devel systemd-devel

Build

phpize
./configure --with-systemd
make

Setup

Fedora

echo "extension=systemd.so" | sudo tee /etc/php.d/systemd.ini

Debian (PHP 5)

echo "extension=systemd.so" | sudo tee /etc/php5/mods-available/systemd.ini
sudo php5enmod systemd

Basic Test

echo "<?php echo sd_journal_send('MESSAGE=hello world');" | php

Usage

Quick example:

<?php
sd_journal_send('MESSAGE=Hello world.');
// message with priority "3" (warning) and identifier (also called *TAG*) set to "appname" 
sd_journal_send('MESSAGE=Error message','PRIORITY=3', 'SYSLOG_IDENTIFIER=appname');"

Notes:

Viewing Output

Quick way to view output with all fields as it comes in:

sudo journalctl -f --output=json