Skip to content
Snippets Groups Projects
Select Git revision
  • d5c6cd5f882bdbb636689b0928ee2371a9436917
  • experimental default protected
  • v2023.2.5-ffs
  • nrb/ex400-remove-wps
  • nrb/airmax-test
  • v2023.2.4-ffs
  • nrb/ar9344-reset-sequence
  • autinerd/experimental-openwrt-24.10
  • v2023.2.3-ffs
  • v2023.2.2-ffs
  • v2023.2-ffs
  • v2023.1-ffs
  • v2022.1.4-ffs
  • feature/addMikrotikwAP
  • v2022.1.3-ffs
  • v2021.1.2-ffs
  • v2022.1.1-ffs
  • master protected
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • experimental-2025-08-29
  • experimental-2025-08-29-base
  • experimental-2025-08-26
  • experimental-2025-08-26-base
  • experimental-2025-08-25
  • experimental-2025-08-25-base
  • experimental-2025-08-20
  • experimental-2025-08-20-base
  • experimental-2025-08-13
  • experimental-2025-08-13-base
  • experimental-2025-08-04
  • experimental-2025-08-04-base
  • experimental-2025-07-31
  • experimental-2025-07-31-base
  • experimental-2025-07-29
  • experimental-2025-07-29-base
  • experimental-2025-07-28
  • experimental-2025-07-28-base
  • experimental-2025-07-26
  • experimental-2025-07-26-base
41 results

gluon-logging.rst

Blame
  • user avatar
    Martin Weinelt authored and Martin Weinelt committed
    Allows reconfigurtion of remote syslog from within site.conf.
    
    Conflicts with the gluon-web-logging package as user made changes
    will be overwritten, because this package will reconfigure the syslog
    destination on every upgrade.
    
    Resolves #1845
    9b19883d
    History
    gluon-logging.rst 1.00 KiB

    gluon-logging

    The gluon-logging package allows to configure a remote syslog server that will receive the systems log output that is also visible when calling logread from a terminal.

    It supports both IPv4 and IPv6 endpoints over UDP and TCP.

    Note: The syslog mechanism is incapable of providing a complete log as network access is required to send out log messages and logd does not buffer and resend older log messages even though they might be available in logread.

    This package conflicts with gluon-web-logging as it will overwrite the user-given syslog server on every upgrade.

    site.conf

    syslog.ip : required
    • Destination address of the remote syslog server
    syslog.port : optional
    • Destination port of the remote syslog server
    • Defaults to 514
    syslog.proto : optional
    • Protocol to transport syslog frames in, can be either tcp or udp
    • Defaults to UDP

    Example:

    syslog = {
      ip = "2001:db8::1",
      port = 514,
      proto = "udp",
    },