Splunk Search

Subtracting constant from field element-wise

light_of_sirius
Explorer

Hello,

i have a field and i want to generate a new field that is the old field but its mean subtracted.

Example:

[1,2,3] -> [-1, 0, 1]

 

This is my attempt

| makeresults count=10
| eval dice_toss = random()%6+1
| table dice_toss
| stats avg(dice_toss) as tmp
| eval dice_toss_centered = dice_toss - tmp

 

Labels (2)
0 Karma
1 Solution

renjith_nair
Legend

replace stats with eventstats

| makeresults count=10
| eval dice_toss = random()%6+1
| table dice_toss
| eventstats avg(dice_toss) as tmp|eval tmp=round(tmp,0)
| eval dice_toss_centered = dice_toss - tmp

 

---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

renjith_nair
Legend

replace stats with eventstats

| makeresults count=10
| eval dice_toss = random()%6+1
| table dice_toss
| eventstats avg(dice_toss) as tmp|eval tmp=round(tmp,0)
| eval dice_toss_centered = dice_toss - tmp

 

---
What goes around comes around. If it helps, hit it with Karma 🙂
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!

Rethinking Zero Trust: From Product Purchases to Logical Control Evidence

Implementing Zero Trust (ZT) across complex environments often falters at the very beginning due to a ...

Preparing your Splunk Environment for OpenSSL3

The Splunk platform will transition to OpenSSL version 3 in a future release. Actions are required to prepare ...

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 ...