From: Jeff Lucovsky Date: Thu, 17 Jun 2021 13:24:46 +0000 (-0400) Subject: doc/yaml: Signal-termination option description X-Git-Tag: suricata-7.0.0-beta1~1089 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6744%2Fhead;p=thirdparty%2Fsuricata.git doc/yaml: Signal-termination option description --- diff --git a/doc/userguide/configuration/suricata-yaml.rst b/doc/userguide/configuration/suricata-yaml.rst index 931d364504..9513c2ac30 100644 --- a/doc/userguide/configuration/suricata-yaml.rst +++ b/doc/userguide/configuration/suricata-yaml.rst @@ -2330,6 +2330,21 @@ inspected for possible presence of Teredo. Advanced Options ---------------- +stacktrace +~~~~~~~~~~ +Display diagnostic stacktraces when a signal unexpectedly terminates Suricata, e.g., such as +SIGSEGV or SIGABRT. Requires the ``libunwind`` library to be available. The default value is +to display the diagnostic message if a signal unexpectedly terminates Suricata -- e.g., +``SIGABRT`` or ``SIGSEGV`` occurs while Suricata is running. + +:: + + logging: + # Requires libunwind to be available when Suricata is configured and built. + # If a signal unexpectedly terminates Suricata, displays a brief diagnostic + # message with the offending stacktrace if enabled. + #stacktrace-on-signal: on + luajit ~~~~~~