Splunk Search

create report if price values are different

avikc100
Path Finder

this is my log 

avikc100_0-1750165643287.png

 



i need a report like below: where I can see price difference in a single report. I don't want to put those records which has same mainframePrice and discountPrice, only I want to put those records where mainframePrice and discountPrice are different

avikc100_0-1750165110016.png


here I manually entered the individual values to get the report,

avikc100_0-1750165919498.png

 

 

 

Labels (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @avikc100 ,

please, next time, send the search in text mode (using the Insert/Edit Code Sample button) so you can mask the sensitive data and we can use it.

At first, don't use search or where after the main search, but put all the conditions as left as possible, possibly in the main search:

index="webmethods_prd"  source="/apps/WebMethods*/IntegrationServer/instances/default/logs/MISC.log" MISC_dynamicPrice mainframePrice!=discountPrice 
| stats count BY mainframePrice discountPrice accountNumber itemId

 otherwise you could add the dc function to identify the different values:

index="webmethods_prd"  source="/apps/WebMethods*/IntegrationServer/instances/default/logs/MISC.log" MISC_dynamicPrice 
| stats 
     dc(mainframePrice) AS mainframePrice_count
     dc(discountPrice) AS discountPrice_count
     first(mainframePrice) AS first_mainframePrice 
     first(discountPrice) AS first_discountPrice 
     last(mainframePrice) AS last_mainframePrice 
     last(discountPrice) AS last_discountPrice 
     BY accountNumber itemId
| where mainframePrice_count>1 OR discountPrice_count>1
| fields - *_count

Ciao.

Giuseppe

 

0 Karma

avikc100
Path Finder

got the solution

index="webmethods_prd"  source="/apps/WebMethods*/IntegrationServer/instances/default/logs/MISC.log" MISC_dynamicPrice |where mainframePrice!=discountPrice |stats count by mainframePrice, discountPrice,accountNumber,itemId

0 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!

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

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...