Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
New forwarding docs
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhemmarchand committed Mar 13, 2021
1 parent 57902ed commit 470f487
Show file tree
Hide file tree
Showing 12 changed files with 132 additions and 0 deletions.
Binary file added docs/img/splunk_forwarding/allow_internal.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/splunk_forwarding/allow_metrics.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/splunk_forwarding/data_host_details.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/splunk_forwarding/data_hosts.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/splunk_forwarding/heavyforwarder1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/splunk_forwarding/heavyforwarder2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/splunk_forwarding/metric_hosts.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ User guide:
userguide
itsi_integration
cribl_integration
monitor_forwarders
rest_api_reference

Troubleshoot:
Expand Down
131 changes: 131 additions & 0 deletions docs/monitor_forwarders.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
Monitor Splunk instances forwarding
===================================

**TrackMe monitors by default any Splunk instance forwarding to the Splunk indexing layer, this includes:**

- Universal Forwarder instances
- Heavy Forwarder instances
- All other types of instances from your Splunk infrastructure

**Forwarding is monitored via:**

- ``data hosts`` by tracking the ``index=_internal sourcetype=splunkd``
- ``metric hosts`` by trackking the ``spl`` metrics stored in the ``_metrics`` index

.. image:: img/splunk_forwarding/data_hosts.png
:alt: data_hosts.png
:align: center
:width: 1200px

.. image:: img/splunk_forwarding/metric_hosts.png
:alt: metric_hosts.png
:align: center
:width: 1200px

Requirements
------------

Splunk forwarding good practices configuration
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

**Splunk good configuration practices implies that you are systematically forwarding the Splunk internals (and metrics) to the indexing layer in your outputs.conf configuration, see the Splunk PS base config apps:**

- `Configurations Base Apps <https://drive.google.com/open?id=107qWrfsv17j5bLxc21ymTagjtHG0AobF>`_

- `Configurations Cluster Apps <https://drive.google.com/open?id=10aVQXjbgQC99b9InTvncrLFWUrXci3gz>`_

*See: org_all_forwarder_outputs / org_cluster_forwarder_outputs*

Concretely, this implies that you configure the Splunk instances (all but indexers) to have an outputs.conf sanza similar to:

::

[tcpout]
defaultGroup = primary_indexers

forwardedindex.2.whitelist = (_audit|_introspection|_internal|_metrics)

TrackMe allow lists and block lists
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

**The default configuration of TrackMe implies monitoring every single index including the _internal (limited to sourcetype=splunkd) and the _metrics, if you use allowlisting & blocklisting, you need to make sure to include these items accordingly:**

*For data hosts, allow the _internal*

.. image:: img/splunk_forwarding/allow_internal.png
:alt: allow_internal.png
:align: center
:width: 600px

*For metric hosts, allow the _metrics*

.. image:: img/splunk_forwarding/allow_metrics.png
:alt: allow_metrics.png
:align: center
:width: 600px

Usage
-----

**A Splunk instance that does not generate any data out of the internal will appear with the single _internal / splunkd combination in data hosts, and the spl metrics in metrics hosts:**

.. image:: img/splunk_forwarding/data_host_details.png
:alt: data_host_details.png
:align: center
:width: 1200px

.. image:: img/splunk_forwarding/metric_host_details.png
:alt: metric_host_details.png
:align: center
:width: 1200px

**A green status basically indicates that:**

- Splunk service is up and running
- The instance is able to reach the indexing layer and properly ingest data as it is forwarding effectively its own data and metrics (which validates configuration and network layers theoritically)
- The instance is expected to be acting in a normal and sane state

Data hosts tracking
^^^^^^^^^^^^^^^^^^^

**When a Splunk instance does more than just indexing its own data and the host Metadata is refering to itself, the Splunk internal data and metrics appear as part of the indexing flow:**

.. image:: img/splunk_forwarding/heavyforwarder1.png
:alt: heavyforwarder1.png
:align: center
:width: 1200px

The default behaviour driven by the global host policy implies that as long as the Splunk instance is forwarding data, the host will remain green even if the sources monitored by and as this host runs into troubles, you can on a global basis change the :ref:`Data hosts global alerting policy` or selectively on a per host basis:

*Global policy in TrackMe manage and configure:*

.. image:: img/data_hosts_allerting_policy_config.png
:alt: data_hosts_allerting_policy_config.png
:align: center
:width: 1200px

*Per data host policy:*

.. image:: img/splunk_forwarding/data_host_per_host_policy.png
:alt: data_host_per_host_policy.png
:align: center
:width: 1200px

**When the global policy, or the per host policy, is set to track per sourcetype, the data host will appear in a non green status if at least one sourcetype is red (for example even if Splunk internal is still going through):**

.. image:: img/splunk_forwarding/heavyforwarder2.png
:alt: heavyforwarder2.png
:align: center
:width: 1200px

Metric hosts tracking
^^^^^^^^^^^^^^^^^^^^^

**Metrics tracking acts differently, if any of the metric categories does not comply with monitoring rules (including the spl metrics), the host will turn into a red state:**

.. image:: img/splunk_forwarding/metric_host_details2.png
:alt: metric_host_details2.png
:align: center
:width: 1200px

Congratulations, you have now a builtin, easy and efficient monitoring of your Splunk instances availability, enable and configure up to your preferences the :ref:`Out of the box alerts` and the job is done!

0 comments on commit 470f487

Please sign in to comment.