Splunk Search

How do I multiply a search result with dynamic value entered through a form?

chaitanyaprakas
Engager

I have a value called total produced by this search:

index="_internal" source=*license_usage.log type=Usage st($st$) | bin _time span=1d | eval KB=round(b/1024) | eval MB=round(KB/1024,2) | eval GB=round(MB/1024,2) | eval TB=round(GB/1024,2) |stats sum(MB) as Total

I want to multiply it with a dynamic value entered by a user through a form. How do I do that?

0 Karma
1 Solution

chaitanyaprakas
Engager

@sundareshr i figured it out thank you for your solution though
i have directly did like giving token for a text box as $value$
then |eval Amount=Total*$value$

View solution in original post

0 Karma

chaitanyaprakas
Engager

@sundareshr i figured it out thank you for your solution though
i have directly did like giving token for a text box as $value$
then |eval Amount=Total*$value$

0 Karma

sundareshr
Legend

Which number do you want to multiply by the user field? Total? How about

index="_internal" source=*license_usage.log type=Usage st($st$) | bin _time span=1d | eval KB=round(b/1024) | eval MB=round(KB/1024,2) | eval GB=round(MB/1024,2) | eval TB=round(GB/1024,2) |stats sum(MB) as Total | eval factor = num($factor$) | eval Total=Total*factor
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...