Project

General

Profile

Troubleshooting » History » Version 4

« Previous - Version 4/11 (diff) - Next » - Current version
Luke Murphey, 06/30/2016 06:44 PM


Troubleshooting

Below are some pointers to help in debugging the application:

Search for modular input errors

Run a search for the following and see if the logs indicate a problem with the modular input:

index=_internal sourcetype=web_availability_modular_input

Search for tracebacks

Run a search for the following and see if the logs indicate a crash with the modular input:

index=_internal traceback

Search for REST handler errors

Run a search for the following and see if the logs indicate a problem with the REST handler:

index=_internal source=*website_monitoring_rest_handler.log

Input fails and generates a "ConnectionError"

This can happen when the following is

  1. The IP address is invalid (if referring to the host by IP)
  2. The domain name cannot be resolved
  3. The port number provided is invalid (if a port is specified)
  4. Network connectivity is lost or a firewall blocks the connection

Troubleshooting modular inputs that don't appear in the Splunk Manager

Look in the messages link in the top right of the page to see if you have a message like this:

Unable to initialize modular input "web_ping" defined inside the app "website_monitoring": Introspecting scheme=web_input: script running failed (exited with code 1).

You can search the internal log for related errors that indicate the modular input could not start:

index=_internal "ModularInputs - Unable to initialize modular input" 

The best way to identify the source of the error if the modular input cannot be loaded by Splunk is to try to load it via Splunk's python interpreter directly.

Here is an example. Consider the modular input is in the following path: /opt/splunk/etc/apps/website_monitoring/bin/web_ping.py

To test this, go to the path /opt/splunk/etc/apps/website_monitoring/bin/ using the CLI:

cd /opt/splunk/etc/apps/website_monitoring/bin/

Next, run Splunk's python against the file:

/opt/splunk/bin/splunk cmd python web_ping.py

This should show an error, such as:

Traceback (most recent call last):
  File "web_input.py", line 1, in <module>
    somethingnotdefined
NameError: name 'somethingnotdefined' is not defined

setup.png View (50.1 KB) Luke Murphey, 03/25/2019 11:02 PM