GitXplorerGitXplorer
s

Arduino-SimpleSyslog

public
9 stars
2 forks
0 issues

Commits

List of commits on branch main.
Unverified
2f31f72172f52b2fac1a2d896c160c505d39b515

Prevent a warning

sscottchiefbaker committed 2 months ago
Unverified
df23ea4ad9cad065cad439d6ab474587c0624798

Bump version so we know we're working on the next version

sscottchiefbaker committed 4 months ago
Unverified
f4335f3b4f1834a2f63fda582a608ca8527e75cd

Whitespace fixes and default max size of 128

sscottchiefbaker committed 4 months ago
Verified
2dbe4ddf0c4d2900d4d5ccfd7f4b35cd033754d0

Merge pull request #2 from sbonaime/main

sscottchiefbaker committed 4 months ago
Verified
26f18c7961394a2cee305832225977f0e401fe60

Update SimpleSyslog.h

ssbonaime committed 4 months ago
Verified
898fa813e0b992459e94f810b193b38757f00f22

Update SimpleSyslog.h

ssbonaime committed 4 months ago

README

The README file for this repository.

Arduino SimpleSyslog

Easily add remote syslog capabilities to your ESP32/ESP8266 projects.

Installation

Clone this repo to your Arduino libraries directory. On Linux this is ~/Arduino/libraries/. Alternately you can just drop SimpleSyslog.h in the same directory as your .ino script.

Usage

Include the SimpleSyslog library and create a global syslog object with your environment settings:

#include <SimpleSyslog.h>

SimpleSyslog syslog("ArduinoHostname", "ArduinoApp", "192.168.5.222");

Optional settings are port (default: 514) and maximum packet size (default: 128). To use port 5140 with a packet size of 400:

SimpleSyslog syslog("ArduinoHostname", "ArduinoApp", "192.168.5.222", 5140, 400);

Send a syslog message:

// Simple string syntax
syslog.printf(FAC_LOCAL7, PRI_INFO, "This is a simple LOCAL7.INFO syslog packet");

// Advanced printf() syntax supported also
syslog.printf(FAC_USER, PRI_DEBUG, "Uptime: %s", millis());

Valid facilities:

  • FAC_USER
  • FAC_LOCAL0
  • FAC_LOCAL1
  • FAC_LOCAL2
  • FAC_LOCAL3
  • FAC_LOCAL4
  • FAC_LOCAL5
  • FAC_LOCAL6
  • FAC_LOCAL7

Valid severities:

  • PRI_EMERGENCY
  • PRI_ALERT
  • PRI_CRITICAL
  • PRI_ERROR
  • PRI_WARNING
  • PRI_NOTICE
  • PRI_INFO
  • PRI_DEBUG

Configuring rsyslog to receive messages

You will need to configure your /etc/rsyslog.conf to accept incoming UDP syslog messages. Add these lines to your config and restart rsyslog

$ModLoad imudp
$UDPServerRun 514

You may want to configure a specific rule to handle your messages:

# /etc/rsyslog.d/arduino.conf
template(name="arduino" type="string" string="/var/log/arduino.log")

if ($syslogfacility-text == "local7" or $syslogfacility-text == "user") then {
    action(type="omfile" DynaFile="arduino" FileCreateMode="0644")
    stop
}

Based on

Borrowed from jerryr/EspSyslog and improved upon.