Dashboards & Visualizations

How can I extract the first 10 characters of token value in query?

wu_weidong
Path Finder

I have the following query statement:

index=users uin="$uin$" | timechart count by uin
The token "uin" came from another search on another index, and is of the format "1234567890abcde" or "1234567890". The "uin" field in the "users" index is only of the 10-digit format. I'm trying to search for a particular "uin" value in the "user" index based on the first 10 characters of whatever the "uin" token value is.

I've seen examples of using the substr function to get the first 10 values of the token value, but how can I use that as part of the search filter? The "user" index is quite big, so I would like to first filter for the particular "uin" before more processing.

0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

Hi @wu_weidong,

Can you please try following search?

index=users [| makeresults | eval temp="$uin$",uin=substr(temp,0,10) | return uin] | timechart count by uin

Thanks

View solution in original post

kmaron
Motivator

you could create a new token that is the substring of the original and use the new token in your search.

      <change>
        <eval token="uin_short">substr($uin$,0,10)</eval>
      </change>

kamlesh_vaghela
SplunkTrust
SplunkTrust

Hi @wu_weidong,

Can you please try following search?

index=users [| makeresults | eval temp="$uin$",uin=substr(temp,0,10) | return uin] | timechart count by uin

Thanks

wu_weidong
Path Finder

Thanks! This worked. If you want, you can move it to the Answer section so I can accept it as the answer?

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

Hi @wu_weidong,
Please accept the answer.

Happy Splunking

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...