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
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...