]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
doc: document removal of unified2 5405/head
authorJason Ish <jason.ish@oisf.net>
Tue, 8 Sep 2020 20:01:02 +0000 (14:01 -0600)
committerVictor Julien <victor@inliniac.net>
Wed, 9 Sep 2020 18:54:22 +0000 (20:54 +0200)
And suggest an alternate tool, Meer if compatibility with
Barnyard2 style databases is required.

Redmine ticket:
https://redmine.openinfosecfoundation.org/issues/3497

doc/userguide/Makefile.am
doc/userguide/output/eve/index.rst
doc/userguide/upgrade.rst
doc/userguide/upgrade/unified2.rst [new file with mode: 0644]

index 724ec78acc8ec23a87ea86b3a4b75c457d59d506..159e6d4545212b9190b6e3fe5b5a831389841bc0 100644 (file)
@@ -8,6 +8,7 @@ EXTRA_DIST = \
        configuration \
        file-extraction \
        index.rst \
+       upgrade \
        upgrade.rst \
        initscripts.rst \
        install.rst \
index bb56991c2a0a87edc8abbd205830499f4b4ba17b..1d593bbed4d4dca555e62333360a6fed93cc690e 100644 (file)
@@ -1,5 +1,7 @@
+.. _eve:
+
 EVE
-======
+===
 
 .. toctree::
 
index e9b274bad832a5597b9a2e8b15aa995eea817c01..e4eedb051d6bc920d20ec3f0554ef67320d194e6 100644 (file)
@@ -52,6 +52,7 @@ Removals
 - Individual Eve (JSON) loggers have been removed. For example,
   ``stats-json``, ``dns-json``, etc. Use multiple Eve logger instances
   if this behavior is still required. See :ref:`multiple-eve-instances`.
+- Unified2 has been removed. See :ref:`unified2-removed`.
 
 Upgrading 4.1 to 5.0
 --------------------
diff --git a/doc/userguide/upgrade/unified2.rst b/doc/userguide/upgrade/unified2.rst
new file mode 100644 (file)
index 0000000..351aca5
--- /dev/null
@@ -0,0 +1,41 @@
+:orphan: Document not referenced in a toctree, so add this.
+
+.. _unified2-removed:
+
+Unified2 Output Removed
+-----------------------
+
+As of Suricata 6.0 the Unified2 output has been removed. The legacy
+Unified2 format lacks the flexibility found in the Eve format, and is
+considerably more difficult to integrate with other tools.  The
+current recommended output is :ref:`eve`.
+
+Packet (Payload) Logging
+------------------------
+
+By default, Eve does not log the packet or payload like Unified2
+does. This can be done with Eve by enabling the payload in Eve alert
+logs. This will log the payload in base64 format to be compatible with
+the JSON format of Eve logs.
+
+It is important to note that while Eve does have an option to log the
+packet, it is the payload option that provides the equivalent data to
+that of the Unified2 output.
+
+Migration Tools
+---------------
+
+Meer
+~~~~
+
+Meer is an Eve log processing tool that can process Eve logs and
+insert them into a database that is compatible with Barnyard2. This
+could could be used as a Barnyard2 replacement if your use of Unified2
+was to have Suricata events added this style of database for use with
+tools such as Snorby and BASE.
+
+More information on Meer can be found at its GitHub project page:
+`https://github.com/beave/meer <https://github.com/beave/meer>`_.
+
+.. note:: Please note that Meer is not supported or maintained by the
+          OISF or the Suricata development team.