Syslog NG - MacOS Testing
  • GSOC - Project Report
  • Testing Methodology
  • Testing Status
  • Installation
  • Modules
    • afsocket [17]
      • network() Source Driver
      • network() Destination Driver
      • syslog() Source/Destination Driver
      • unix-stream() Source Driver
      • unix-stream() Destination Driver
      • unix-dgram() Source/Destination Driver
      • TLS-Encryption
        • Using network()
        • Using syslog()
    • affile [6]
      • file() Source Driver
      • file() Destination Driver
      • pipe() Source Driver
      • pipe() Destination Driver
      • wildcard_file() Source Driver
      • stdin() Source Driver
    • afprog [2]
      • program() Source Driver
      • program() Destination Driver
    • system [1]
      • Collecting local logs pre macOS 10.15 Catalina
    • afuser [1]
    • pseudofile [1]
    • mod-python [7]
      • python() Source Driver
      • python-fetcher() Source Driver
      • python() Destination Driver*
    • afmongodb [1]
    • http [1]
    • riemann [1]
    • redis [1]
    • elasticsearch-http [1]
    • afsql [1]
    • afsmtp [1]
Powered by GitBook
On this page
  • Status
  • Testing
  • Proof

Was this helpful?

  1. Modules

afuser [1]

The afuser module has only one driver, that is the usertty() destination driver. The usertty() driver sends messages to a user terminal.

Status

Architecture

Status

x86

Works

ARM

Works

Testing

The usertty() driver has a single required argument, specifying a username who should receive a copy of matching messages. Use the asterisk * to specify every user currently logged in to the system.

Note : The usertty() does not have any further options nor does it support templates.

Configuration file used

@version: 3.33
@include "scl.conf"

source custom
{
    example-msg-generator(
        num(20)
        freq(5)
        template("Message to Terminal")
    );
};

destination d_usertty { 
    usertty("*"); 
};


log {
    source(custom);
    destination(d_usertty);
};

Proof

PreviousCollecting local logs pre macOS 10.15 CatalinaNextpseudofile [1]

Last updated 3 years ago

Was this helpful?

usertty() driver tested on macOS (x86)
usertty() driver tested on macOS (ARM)