Splunk Search

How to edit my search to get the sum of multiple results per transaction_Id?

pawnalmighty
Engager
index=inctv starttime=10/07/2015:00:00:00 endtime=10/13/2015:00:00:00 (sourcetype="mysource" OperationName="*MyImpl.*" ActivityStep="rs") 
| eval txn_id=if(transaction_id LIKE "[%]", substr(transaction_id, 2, 36) , transaction_id) 
| chart values(Duration) over txn_id by OperationName

This gives me results arranged by transaction Ids like:

Transaction ID     MyImpl.method1()    MyImpl.method2()    MyImpl.method3()
trx_id1                   3                   4                   6
trx_id2                   5                   6                   7
trx_id3                   5                   5                   5

What I want is:

Transaction ID      All MyImpl Calls
trx_id1                    13
trx_id2                    17
trx_id3                    15

I am an absolute beginner in Splunk, so it would be very nice if you could explain what your solution does exactly.

Thanks

Tags (3)
0 Karma

aljohnson_splun
Splunk Employee
Splunk Employee

You're really close. I think all you need to do is remove OperationName from your chart command

| chart values(Duration) over txn_id

^ However, looking at your serach, I'm guessing that you actually want to use list(Duration) instead of values(Duration) since it looks like you want to know the value for each and every txn_id regardless of uniqueness. Using values will list the value if it hasn't seen it before (it is a unique list). So for example, if two of your txn_id's had the same value, like 5, you'd only see it listed once from the values() function whereas list() doesn't care and just lists out the values, even if things are repeated.

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...