1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _OnPrem
class _Logging(_OnPrem):
_type = "logging"
_icon_dir = "resources/onprem/logging"
class Fluentbit(_Logging):
_icon = "fluentbit.png"
class Graylog(_Logging):
_icon = "graylog.png"
class Loki(_Logging):
_icon = "loki.png"
class Rsyslog(_Logging):
_icon = "rsyslog.png"
class SyslogNg(_Logging):
_icon = "syslog-ng.png"
# Aliases
FluentBit = Fluentbit
RSyslog = Rsyslog
|