i have problem with my basic script.
ist connnten only
#!/bin/sh
/usr/bin/last
i updated also my default/inputs.conf below:
[script://./bin/who.sh]
interval = */1 * * * *
index = main
sourcetype = who
but i can not find the out put of it.
when i delete the /usr/bin/last line and add such echo "test"; it works!!
how can i fix this problem? i know that my script works, but Splunk can not parse it.
So the script works, but timestamp and event breaking fails. As long as you don't remove the colons Splunk will use the default settings and recognise this timestamps and brake the events there.
There are various ways to fix it, but the laziest one would be to look at the Splunk Add-on for Unix, or at least the definition of the scripted input and the lastlog stanza from the props.conf.
when i change the scipt following its work again
so there is something wrong with the time
/usr/bin/last | sed 's/:/./g'
root tty1 Mon Apr 25 13.24 - 13.26 (00.01)
i dont know how. but after i extract a couple of field of log. splunk begin to recognise the logs
thanks
Try to run the script from the command line as the user under wich Splunk is running, Splunk should index what you see as output there. Output which is written to standard error goes to the splunkd.log.
i checked the splunkd.logs but i can do it again.
on the log i can see only that the script is executed
when i change the script content like below:
/usr/bin/last | awk -F: '{ print $1 }'
i can find it at the splunk server site. i think something wrong with parsing.
how can i debug such a problem. when i change the content of the script splunk index it.
but i can not index the output of /usr/bin/last
Have you checked splunkd.log for any hints as to what may be going wrong?