Getting Data In

Why is my scripted input excluded from the results?

Simeon
Splunk Employee
Splunk Employee

I am running a scripted input that outputs the "apachectl -S" configuration. I have set the proper permissions, tested it via "splunk cmd ", and found that it will index other information if added to the script. I noticed that my splunkd.log file shows the following:

07-14-2010 17:26:03.881 ERROR ExecProcessor - message from "/home/splunk/etc/apps/search/bin/apachectl.sh" httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
07-14-2010 17:26:03.881 ERROR ExecProcessor - message from "/home/splunk/etc/apps/search/bin/apachectl.sh" VirtualHost configuration:
07-14-2010 17:26:03.881 ERROR ExecProcessor - message from "/home/splunk/etc/apps/search/bin/apachectl.sh" wildcard NameVirtualHosts and _default_ servers:
07-14-2010 17:26:03.881 ERROR ExecProcessor - message from "/home/splunk/etc/apps/search/bin/apachectl.sh" _default_:443          127.0.0.1 (/etc/httpd/conf.d/ssl.conf:81)
07-14-2010 17:26:03.881 ERROR ExecProcessor - message from "/home/splunk/etc/apps/search/bin/apachectl.sh" Syntax OK

Is there a reason why this particular script output is not showing up?

Tags (1)
1 Solution

Simeon
Splunk Employee
Splunk Employee

For the above scenario, the "apachectl -S" command is writing to standard error and not standard out. When running the script manually, everything looks okay since it is sent directly to the terminal. To fix this problem, you must edit your script to send the standard error data to the standard out. To do this, add "2>&1" to the command:

apachectl -S 2>&1

View solution in original post

Simeon
Splunk Employee
Splunk Employee

For the above scenario, the "apachectl -S" command is writing to standard error and not standard out. When running the script manually, everything looks okay since it is sent directly to the terminal. To fix this problem, you must edit your script to send the standard error data to the standard out. To do this, add "2>&1" to the command:

apachectl -S 2>&1
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Unlocking Unified Insights: New Gigamon Federated Search App for Splunk

In today’s data-heavy environment, organizations are caught in a data distribution dilemma. As data volumes ...

GA: New Data Management App in Splunk Platform

Streamlining Data Management: Introducing a unified experience in Splunk Managing data at scale shouldn’t feel ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...