Here's a quick question I am trying to implement calculated fields in props.conf using EVAL command following is the code that I am trying to implement:
EVAL-PAYXLINE_MV2=mvindex(PAYXLINE_MV,N,-1)
EVAL-PAYXLINEGLOB=mvjoin(PAYXLINE_MV2," ")
EVAL-PAYXHASH=sha256(mvjoin(PAYXLINE_MV," "))
The problem is I am not able to get the first 2 commands working when I put mvindex and mvjoin directly but it works perfectly fine when I use mvjoin with sha256. Can you help me to solve this problem. Here is the documentation that I am following to define fields in props.conf.
http://docs.splunk.com/Documentation/Splunk/6.2.1/Knowledge/definecalcfields
... View more