Refine your search:

Thanks For Downloading!

Review the documentation below and follow any custom installation steps. If no install steps are listed, most Splunk Apps and Add-ons can be installed as follows:

Windows: Decompress the downloaded file using a tool like 7-Zip and place the resulting folder into %PROGRAMFILES%\Splunk\etc\apps. Then restart Splunk using the splunk restart command or the GUI.

Unix/Linux: Decompress the downloaded file using a tool like tar -xvf and place the resulting folder into $SPLUNK_HOME/etc/apps. Then restart Splunk using the splunk restart command or the GUI.

Description

Splunk for Nagios integrates the open source monitoring solution "Nagios" with Splunk.
Features:
* Schedule Saved Searches in Splunk to send alerts to Nagios
* Status Dashboard feat. recent Alerts and Notifications
* Alerts Dashboard with an auto-populating drop-down list of device names to display alert history
* Host Dashboards with Graphs of metal level metrics (CPU, Memory, Swap, Load, Disk Usage, Network Interface Utilization, Processes, etc) sourced from Nagios Plugin Performance Data (Linux, AIX, BSD and Windows hosts supported)
* NAS Dashboards with Graphs of Storage Usage, Quota Usage, SAVVOL Usage, & Connections by Protocol (EMC Isilon and Celerra supported)
* Cisco Network Dashboards with Graphs of Network Interface Utilization, CPU, Memory, Temperature and Gateway Usage
* Integration with MK Livestatus - feat. 2 new dashboards updated with live status data from Nagios
* 8 Saved Searches - feat. a CMDB Report and Service Alerts by Service Group

Splunk for Nagios

Overview

  • Splunk for Nagios version 2.0.1 includes all new dashboards to display performance graphs for your Linux, AIX, BSD and Windows hosts and also for NAS devices and Cisco network devices.
  • New 'check_splunk_license' nagios plugin and new dashboard for Splunk License Usage
  • Now you can monitor, manage and troubleshoot all your devices from one single pane of glass with Splunk for Nagios.
  • Get out of the 1980's and replace Cacti, Munin, MRTG, Orca, etc. with Splunk for Nagios... no more rrd configuration and no more agents to install.
  • Why poll for data twice? Splunk for Nagios creates the performance graphs automatically!
  • Splunk for Nagios also has another huge advantage over rrd based graphing solutions, and that is you can graph performance and capacity metrics with full fidelity, ie. no more 'averaged out' rrd based graphs.
  • Any feedback, including requests for enhancement are most welcome. Email: luke@verypowerful.info

Screenshots

Setup Splunk for Nagios

Add an Index to Splunk:

  • Create an index called nagios then restart Splunk
    • Note: all of the dashboards and saved searches in Splunk for Nagios use searches based on index = nagios

Create a new Index on the Splunk indexer

  • Click Manager > Indexes > New
    • Index name: nagios
    • Click Save
    • Restart Splunk

Add new Data Inputs

  • Note: Users who have upgraded from Splunk for Nagios v. 1.0 are required to add two additional data inputs (host-perfdata & service-perfdata)
  • Here are two methods to ingest the nagios log files from your Nagios server to your Splunk indexer (chose only one method):

1. Configure a 'Universal Forwarder' on the Nagios server

  • http://www.splunk.com/base/Documentation/latest/Deploy/Deployanixdfmanually
    • cd $SPLUNK_HOME/bin (eg. cd /opt/splunkforwarder/bin)
      • ./splunk start
      • ./splunk add forward-server splunk.abc.com.au:9997
    • Note: replace $NAGIOS_HOME with the relevant directory (eg. /opt/nagios)
      • ./splunk add monitor $NAGIOS_HOME/var/nagios.log -sourcetype nagios -hostname hostname.abc.com.au
      • ./splunk add monitor $NAGIOS_HOME/var/host-perfdata -sourcetype nagioshostperf -hostname hostname.abc.com.au
      • ./splunk add monitor $NAGIOS_HOME/var/service-perfdata -sourcetype nagiosserviceperf -hostname hostname.abc.com.au
    • edit $SPLUNK_HOME/etc/apps/search/local/inputs.conf on the Nagios server and add the following key/value pair:
index = nagios
  • restart the Splunk UF agent:
    • ./splunk restart

OR

2. Configure nagios log file ingestion using 'rsync' on the Splunk indexer

a/ nagios.log :-

  • Click Manager > Data inputs > Files & Directories > New
  • Specify the source: Continuously index data from a file or directory this Splunk instance can access
  • Full path to your data: eg. /log/nagios/nagios.log
  • Tick More settings
  • Set host: constant value
  • Host field value: eg. hostname.abc.com.au
  • Set the source type: Manual
  • Source type: nagios
  • Index: nagios
  • Click Save

b/ host-perfdata :-

  • Click Manager > Data inputs > Files & Directories > New
  • Specify the source: Continuously index data from a file or directory this Splunk instance can access
  • Full path to your data: eg. /log/nagios/host-perfdata
  • Tick More settings
  • Set host: constant value
  • Host field value: eg. hostname.abc.com.au
  • Set the source type: Manual
  • Source type: nagioshostperf
  • Index: nagios
  • Click Save

c/ service-perfdata :-

  • Click Manager > Data inputs > Files & Directories > New
  • Specify the source: Continuously index data from a file or directory this Splunk instance can access
  • Full path to your data: eg. /log/nagios/service-perfdata
  • Tick More settings
  • Set host: constant value
  • Host field value: eg. hostname.abc.com.au
  • Set the source type: Manual
  • Source type: nagiosserviceperf
  • Index: nagios
  • Click Save

Nagios Configuration (REQUIRED)

1/ Update the following configuration options in $NAGIOS_HOME/etc/nagios.cfg

perfdata_timeout=5
process_performance_data=1
host_perfdata_command=nagios-process-host-perfdata
service_perfdata_command=nagios-process-service-perfdata
host_perfdata_file_mode=a
service_perfdata_file_mode=a
host_perfdata_file_processing_interval=86400
service_perfdata_file_processing_interval=86400
host_perfdata_file_processing_command=nagios-process-host-perfdata-file
service_perfdata_file_processing_command=nagios-process-service-perfdata-file

Reference:
http://nagios.sourceforge.net/docs/3_0/configmain.html

2/ Update the following configuration options in $NAGIOS_HOME/etc/objects/commands.cfg
Note: replace /opt/nagios with your $NAGIOS_HOME

# 'nagios-process-host-perfdata' command definition
define command{
        command_name    nagios-process-host-perfdata
        command_line    /usr/bin/printf "%b" "$TIMET$ src_host=\"$HOSTNAME$\" perfdata=\"HOSTPERFDATA\" hoststate=\"$HOSTSTATE$\" attempt=\"$HOSTATTEMPT$\" statetype=\"$HOSTSTATETYPE$\" executiontime=\"$HOSTEXECUTIONTIME$\" reason=\"$HOSTOUTPUT$\" result=\"$HOSTPERFDATA$\"\n" >> /opt/nagios/var/host-perfdata
        }

# 'nagios-process-service-perfdata' command definition
define command{
        command_name    nagios-process-service-perfdata
        command_line    /usr/bin/printf "%b" "$TIMET$ src_host=\"$HOSTNAME$\" perfdata=\"SERVICEPERFDATA\" name=\"$SERVICEDESC$\" severity=\"$SERVICESTATE$\" attempt=\"$SERVICEATTEMPT$\" statetype=\"$SERVICESTATETYPE$\" executiontime=\"$SERVICEEXECUTIONTIME$\" latency=\"$SERVICELATENCY$\" reason=\"$SERVICEOUTPUT$\" result=\"$SERVICEPERFDATA$\"\n" >> /opt/nagios/var/service-perfdata
        }

# 'nagios-process-host-perfdata-file' command definition
define command{
        command_name    nagios-process-host-perfdata-file
        command_line    /bin/cat /dev/null > /opt/nagios/var/host-perfdata
        }

# 'nagios-process-service-perfdata-file' command definition
define command{
        command_name    nagios-process-service-perfdata-file
        command_line    /bin/cat /dev/null > /opt/nagios/var/service-perfdata
        }

Reference:
http://nagios.sourceforge.net/docs/3_0/perfdata.html

3/ Update the following configuration options in $NAGIOS_HOME/etc/objects/templates.cfg
Note: ensure that the following variable is updated for BOTH host AND service templates :-

process_perf_data               1               ; Process performance data

Reference:
http://nagios.sourceforge.net/docs/3_0/objectdefinitions.html#host
http://nagios.sourceforge.net/docs/3_0/objectdefinitions.html#service

4/ Run the following command to check your Nagios configuration file for errors:

$NAGIOS_HOME/bin/nagios -v $NAGIOS_HOME/etc/nagios.cfg

5/ If everything is ok, you may issue the following command to reload Nagios:

/etc/init.d/nagios reload

Setup rsync cron jobs on the Splunk server

Note: replace /opt/nagios with your $NAGIOS_HOME

*/5 * * * * rsync -q -az --timeout=60 --bwlimit=500 hostname.abc.com.au:/opt/nagios/var/nagios.log /log/nagios/nagios.log
*/5 * * * * rsync -q -az --timeout=60 --bwlimit=500 hostname.abc.com.au:/opt/nagios/var/host-perfdata /log/nagios/host-perfdata
*/5 * * * * rsync -q -az --timeout=60 --bwlimit=500 hostname.abc.com.au:/opt/nagios/var/service-perfdata /log/nagios/service-perfdata

MK Livestatus Integration

  • Livestatus makes use of the Nagios Event Broker API for accessing status and object data. It opens a socket by which data can be retrieved on demand. The socket allows you to send a request for hosts, services or other pieces of data and get an immediate answer. The data is directly read from Nagios' internal data structures.
  • Version 2.0.1 of Splunk for Nagios includes external scripts for livestatus integration that must be updated for your nagios environment:
    • Edit the following python scripts using your favourite text editor and replace the IP address and Port number with your Nagios server with MK Livestatus. The following scripts are located in $SPLUNK_HOME/etc/apps/SplunkForNagios/bin/
      • livehostsupstatus.py - displays number of Hosts that are currently Up
      • livehostsdownstatus.py - displays number of Hosts that are currently Down
      • livehostsunreachablestatus.py - displays number of Hosts that are currently Unreachable
      • liveserviceokstatus.py - displays number of Services that are currently OK
      • liveservicewarningstatus.py - displays number of Services that are currently Warning
      • liveservicecriticalstatus.py - displays number of Services that are currently Critical
      • liveserviceunknownstatus.py - displays number of Services that are currently Unknown
      • liveservicestate.py - displays the current status of a given service
      • splunk-nagios-hosts.py - lookup script to display all devices in nagios, including ip address, description and current state
      • splunk-nagios-servicegroupmembers.py - wrapper script for splunk-nagios-servicegroupmembers.sh
      • splunk-nagios-servicegroupmembers.sh - lookup script to display all service groups and their members with current state

REQUIRED:

  • The Livestatus dashboards and the new reports will NOT work if you do not edit the scripts as instructed above.
  • You must also edit NagiosLivestatus.xml and change the "src_host" name to a relevant device name in nagios.
  • netcat must be installed on your splunk server for the lookup scripts to work (usually included by default in most Linux Distributions)

Reference:

Nagios Plugins supported by Splunk for Nagios

1/ Download the script from the url above
2/ Convert the script from dos format to *nix:
   # dos2unix check_iftraffic_nrpe.pl
3/ Apply the patch which is located at $SPLUNK_HOME/etc/apps/SplunkForNagios/appserver/static/check_iftraffic_nrpe.pl.patch
   # patch < check_iftraffic_nrpe.pl.patch

Cisco Network Compliant Plugins:

Splunk License Usage Plugin:

Note: the updated script (above) is located at
$SPLUNK_HOME/etc/apps/SplunkForNagios/appserver/static/check_splunk_license
Requires access to splunk:8089, and a user with license_edit and license_tab
capabilities. Current version is limited to pool usage monitoring only.
Copy the script to your Splunk Indexer and update the nrpe config file, eg.
/etc/nagios/nrpe.cfg :-

command[check_splunk_license]=/usr/lib/nagios/plugins/ce/check_splunk_license $ARG1$ $ARG2$ $ARG3$

Update your nagios server configuration to add the new nagios check for your Splunk Index server, eg.
define command {
command_name         check_splunk_license
command_line         $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ -t 30 -a $ARG2$ $ARG3$ $ARG4$
}

define service {
service_description  Splunk License Usage
use                  master-service-template
host_name            splunki
check_command        check_splunk_license!check_splunk_license!splunki.abc.com.au!admin!password
}

How To Send Alerts From Splunk To Nagios

Configure a Scheduled Saved Search in Splunk to send alerts to Nagios:

  • Prerequisites:
    • send_nsca must be installed on the *nix Splunk server
    • nsca must be listening on the Nagios server
  • The name of the Saved Search must begin with the corresponding hostname defined in Nagios followed by a hyphen then the name of the Service defined in Nagios, eg.
    • server01 - XYZ Alert
  • Time range:
    • Start time = -5m@m
    • Finish time = now
  • Schedule and alert:
    • tick "Schedule this search"
  • Schedule type = Basic
    • Run every = 5 minutes
  • Alert conditions:
    • Perform actions = if number of events
      • is greater than 0 (ie. if an alert is to be generated when a given event does occur)
        • or
      • is equal to 0 (ie. if an alert is to be generated when a given event does not occur)
  • Alert actions:
    • tick Trigger shell script
    • Filename of shell script to execute = splunk-nagios.sh
  • Click Save

REQUIRED:

  • Edit the script located at $SPLUNK_HOME/etc/apps/SplunkForNagios/bin/scripts/splunk-nagios.sh and change the following variables so that they are relevant to your environment:
    • SPLUNKSERVER=splunk01 (ie. hostname of the splunk server)
    • WWW=splunk (ie. url of splunk search head)
    • NSCABIN=/usr/lib/nagios/plugins (ie. location of send_nsca on your splunk server)
    • NSCACFG=$NSCABIN (ie. location of send_nsca.cfg on your splunk server)
    • NSCAHOST=nagios.abc.com.au (ie. Fully Qualified Domain Name of your Nagios server)
    • NSCAPORT=5667 (ie. port number of the nsca daemon on your Nagios server)

Common Information Model compliant fields

  • src_host = Hostname of Nagios Client (tranforms existing fields: hostalert hostcurrent hostexternal hostpassive hostnotification hostservicestate)
  • severity = Nagios Alert Severity, eg. OK, WARNING, CRITICAL, UNKNOWN (tranforms existing fields: status servicestatus statusnotification)
  • reason = Nagios Alert Message (tranforms existing fields: statusinfoexternal statusinfo notificationinfo passiveserviceinfo hostcurrentinfo servicestateinfo hostinfo hostnotificationinfo)
  • name = Nagios Plugin Name (tranforms existing fields: servicealertname servicepassivename serviceexternal servicenamenotification servicestatename downtimeservicename hoststatus)
  • user_id = User id of Nagios User receiving a host or service notification (tranforms existing field: username)

Saved Searches

  • nagios - Host or Service Notifications - Last 60 minutes
  • nagios - Service Notifications with state Critical - Last 60 minutes
  • nagios - Host Down Notifications - Last 60 minutes
  • nagios - Number of Alerts - Last 60 minutes
  • nagios - Host or Service Alerts - Last 60 minutes
  • nagios - Scheduled Downtime by host and service - Last 24 Hours
  • nagios - Lookup All Devices - CMDB
  • nagios - Service Alerts by Service Group - Last 24 Hours

Status Dashboard

There are 5 elements in the dashboard:

  • Warning Alerts - Last 60 Minutes
    • this is a counter of the number of Host & Service alerts with status Warning
  • Critical Alerts - Last 60 Minutes
    • this is a counter of the number of Host & Service alerts with status Critical
  • Warning and Critical Alerts
    • this is a table view of the Top 5 Host & Service alerts with status Warning & Critical
  • Top 10 Service Notifications with status Warning
    • this is a bar chart of recent service notifications
  • Top 10 Service Notifications with status Critical
    • this is a bar chart of recent service notifications

Livestatus Dashboard

There are 3 panels in the dashboard populated by external scripts that query MK Livestatus for live status data from Nagios:

  • Hosts - featuring the number of current Up, Down, & Unreachable hosts
    • note: click on the number of Down or Unreachable hosts to drill-down
  • Services - featuring the number of current OK, Warning, Critical, & Unknown alerts
  • Service Alerts - featuring a table view of all current service alerts

REQUIRED:

  • Using your favourite xml editor, change the "src_host" name to a relevant device name in nagios :)

Alerts Dashboard

  • Featuring an auto-populating drop-down list of device names to easily display relevant alert history
    • Note: the drop-down list is auto-populated by a hidden search that extracts the src_host field from the nagios log that contains nagiosevent="CURRENT HOST STATE" - generated by default by Nagios at midnight every day.

Livestatus Alerts Dashboard

  • Featuring an auto-populating drop-down list of device names to easily display relevant alert history, populated by an external script that queries MK Livestatus for live service status data from Nagios
    • Note: the drop-down list is auto-populated by a hidden search that extracts the src_host field from the nagios log that contains nagiosevent="CURRENT HOST STATE" - generated by default by Nagios at midnight every day.

Performance Dashboards

  • Each of the following dashboards use one base search to feed all downstream panels to save search resources.
    • Note: these graphs have been optimized for a 24 hour time span. If you require a longer time window, please update the span value accordingly.

REQUIRED:

  • Using your favourite xml editor, update these dashboards with the relevant label/key names for the specific performance data that are in use in your nagios environment. eg. change avg(CpuSystem) to avg(cpu_system) if your performance data for CPU Usage is labelled differently.
    • Dashboard location: $SPLUNK_HOME/etc/apps/SplunkForNagios/default/data/ui/views

Host specific dashboards:

  • Featuring an auto-populating drop-down list of device names to easily display relevant alerts, notifications and performance graphs:
  • Note: the drop-down list is auto-populated by a hidden search that extracts the src_host field from the nagios log that contains nagiosevent="CURRENT HOST STATE" - generated by default for all devices in Nagios at midnight every day.
    • Nagios Linux Performance Graphs
    • Nagios *nix Filesystem Usage Graphs
    • Nagios AIX Performance Graphs
    • Nagios AIX Filesystem Usage Graphs
    • Nagios BSD Performance Graphs
    • Nagios Windows Performance Graphs

NAS specific dashboards:

  • Featuring a search box to enter the relevant hostname of your NAS device to easily display relevant alerts, notifications and performance graphs:
    • Nagios Isilon Performance Graphs
    • Nagios Celerra Performance Graphs

Cisco Network dashboards:

  • Featuring 5 dashboards with Graphs of Network Interface Utilization, CPU, Memory, Temperature and Gateway Usage (Special thanks to Mike Pagano for providing these awesome dashboards)
    • Nagios Cisco Hardware Performance Graphs
    • Nagios Cisco Hardware Temperature Graphs
    • Nagios Cisco Gateway Activity Graphs
    • Nagios Cisco Network Activity Graphs
    • Nagios Cisco Network Multiple Interface Activity Graphs

REQUIRED:

  • Using your favourite xml editor, change the "src_host" name to your relevant device names in nagios :)

Splunk License Usage dashboard:

  • Featuring a dashboard with a Graph of your Splunk pool usage (Special thanks to Bill Mathews for providing the 'check_splunk_license' nagios plugin)

Road Map

  • 2.1
    • Add Google Maps geo mapping capabilities to create maps of activity by IP address

Disclaimer

  • This app has been created for the specifics of our Nagios environment (Nagios Core version 3.2.1) and it may or may not suit your specific purposes.

Copyright (c) 2012 Luke Harris. All Rights Reserved.

License

  • GNU GENERAL PUBLIC LICENSE Version 3

Versions

v2.0.1

  • fixed bug in Livestatus Alerts Dashboard
  • added check_splunk_license script and new dashboard: Nagios Splunk License Usage Graph

v2.0

  • added external lookup scripts for integration with MK Livestatus
  • added 2 dashboards updated with live status data from Nagios
  • added a CMDB Report and Service Alerts by Service Group
  • added 5 Cisco Network Dashboards with Graphs of Network Interface Utilization, CPU, Memory, Temperature and Gateway Usage sourced from Nagios Plugin Performance Data
  • added AIX Filesystem Usage Graphs
  • added BSD specific Host Dashboard

v1.1.1

  • added 2 NAS Dashboards with Graphs of Storage Usage, Quota Usage, SAVVOL Usage, Connections by Protocol, etc (EMC Isilon and Celerra)

v1.1

v1.0

  • initial release

Versions and Release Notes

Version 2.0.1 (current version - updated Sep 22, 2011)
release notes:
fixed bug in Livestatus Alerts Dashboard; added check_splunk_license script and new dashboard: Nagios Splunk License Usage Graph
show older versions »
Version 2.0 (updated Sep 19, 2011)
release notes:
added external lookup scripts for integration with MK Livestatus; added 2 dashboards updated with live status data from Nagios; added a CMDB Report and Service Alerts by Service Group; added 5 Cisco Network Dashboards with Graphs of Network Interface Utilization, CPU, Memory, Temperature and Gateway Usage; added AIX Filesystem Usage Graphs; added BSD specific Host Dashboard
Version 1.1.1 (updated May 22, 2011)
Version 1.1.1 (updated May 22, 2011)
release notes:
v1.1.1 ------ - added 2 NAS Dashboards with Graphs of Storage Usage, Quota Usage, SAVVOL Usage, Connections by Protocol, etc (EMC Isilon and Celerra) v1.1 ---- - added 4 all new Powerful Views with Graphs of metal level metrics sourced from Nagios Plugin Performance Data - added Nagios Alerts Form Search with an auto-populating drop-down list of all device names to easily display relevant alert history - added 5 all new field extractions for CIM compliance: http://www.splunk.com/base/Documentation/latest/Knowledge/UnderstandandusetheCommonInformationModel
Version 1.0 (updated Jul 19, 2010)

posted 19 Jul '10, 06:39

Luke%20Harris's gravatar image

Luke Harris
90818
accept rate: 16%

new version 22 Sep '11, 12:41

As I have lately detected you are not so qualified about this, if you wish to buy Explanation essay , I can only propose you to try essay writing service. They bid on jobs so they tell you within 24 hours whether they got a writer who is an professional and what the price is based on the time frame.

(09 Jan, 03:49) BridgesSheila32

9 Reviews:
1 rating

YOu know it should be really interesting to use all your tips and recommendations here! paper

comments (0)

reviewed 20 Apr, 04:55

Tommie23's gravatar image

Tommie23
9
accept rate: 0%

You could read [url=http://cvresumewriters.com/onlineresume.php]resumes online[/url] about this topic.

comments (0)

reviewed 11 Mar, 00:38

abigayle's gravatar image

abigayle
5
accept rate: 0%

You could read [url=http://cvresumewriters.com/onlineresume.php]resumes online[/url] about this topic.

comments (0)

reviewed 11 Mar, 00:38

abigayle's gravatar image

abigayle
5
accept rate: 0%

People could read [url=http://cvresumewriters.com/onlineresume.php]resumes online[/url] about this.

comments (0)

reviewed 11 Mar, 00:38

abigayle's gravatar image

abigayle
5
accept rate: 0%

You must also edit NagiosLivestatus.xml and change the "src_host" name to a relevant device name in nagios. Is we have to specify hostname of nagios. My Live Status Borad is not working. Please help

comments (1)

reviewed 19 Nov '11, 09:08

vishalprofessional's gravatar image

vishalprofes...
1
accept rate: 0%

so netstat -an | grep 9999 which is the port that i used on splunk server showed the traffic is not coming but I see the traffic on my nagios actully sending to that port

comments (1)

reviewed 28 Jul '11, 12:07

allamiro's gravatar image

allamiro
11
accept rate: 0%

you should not be sending data to port 9999, please follow the instructions above to add the new data inputs

All the best, Luke :)

(23 Aug '11, 22:03) Luke Harris

send_nsca must be installed on the *nix Splunk server nsca must be listening on the Nagios server The links are not working

comments (1)

reviewed 20 Jul '11, 10:25

allamiro's gravatar image

allamiro
11
accept rate: 0%

links corrected :)

(15 Sep '11, 18:02) Luke Harris

send_nsca must be installed on the *nix Splunk server nsca must be listening on the Nagios server The links are not working

comments (1)

reviewed 20 Jul '11, 10:23

allamiro's gravatar image

allamiro
11
accept rate: 0%

links corrected :)

(23 Aug '11, 21:50) Luke Harris

I just upgraded from the old version and you mentioned adding inputs host-perfdata and service perfdata are they TCP inputs correct can you please specify it

comments (1)

reviewed 20 Jul '11, 08:38

allamiro's gravatar image

allamiro
11
accept rate: 0%

host-perfdata and service perfdata are not TCP inputs... the instructions above show two methods to ingest the nagios log files from your Nagios server to your Splunk indexer (chose only one method): 1. Configure a 'Universal Forwarder' on the Nagios server or 2. Configure nagios log file ingestion using 'rsync' on the Splunk indexer

All the best, Luke :)

(23 Aug '11, 21:48) Luke Harris
Your review

Did you find this app useful?

Preview toggle preview

Copyright © 2005-2012 Splunk, Inc. All rights reserved.