I was building a new search and started getting this error with various functions. I simplified my search down to something straight out of the documentation to make sure I wasn't missing something silly, but still get the error even with this:
index=* | eval c=avg(1, 2, 3)
What's going on?
@inventsekar apparently avg is not an eval function in my version of splunk. It's available with other things like chart and stats, but not eval. Something like this works however:
... | chart eval(avg(bytes) ...
Hi
as @inventsekar said it should work without issues. Could you try this
| makeresults
| eval c=avg(1, 2, 3)
| table c
It should give to 2 to you.
When this is working and your current query didn't work, then you have some other issue in it.
You could check which Splunk version you have by click Help -> About on top bar.
r. Ismo
Hi @R15 .. this search runs fine actually. may we know your remaining portions of the search(after calculating the avg, how do you have handle the avg values?!?!)
if you provide a screenshot, that would be of great help, thanks.
There is no other portion, running the same search as in your screenshot I get the error.
@R15 wrote:There is no other portion, running the same search as in your screenshot I get the error.
Could you pls take a screenshot and attach for our reference, thanks.
@inventsekar apparently avg is not an eval function in my version of splunk. It's available with other things like chart and stats, but not eval. Something like this works however:
... | chart eval(avg(bytes) ...