Dashboards & Visualizations

How to calculate Total of two values

aditsss
Motivator

Hi all,

Can someone guide me how can we calculate two fields.

I have two fields in my lookup file OPEN and Closed. I need their total.

 How can we do that.

Labels (2)
0 Karma
1 Solution

manjunathmeti
Champion

You can use stats command. If you want to count the number of events,

| stats count(OPEN) as open_count count(Closed) as closed_count | eval total_count = open_count + closed_count

If you want to get the sum of the field numerical values,

| stats sum(OPEN) as open_sum sum(Closed) as closed_sum | eval total = open_sum + closed_sum

Refer to this page for more examples: https://docs.splunk.com/Documentation/SCS/current/SearchReference/StatsCommandExamples#1._Calculate_...

If this reply helps you, an upvote/like would be appreciated.

View solution in original post

manjunathmeti
Champion

You can use stats command. If you want to count the number of events,

| stats count(OPEN) as open_count count(Closed) as closed_count | eval total_count = open_count + closed_count

If you want to get the sum of the field numerical values,

| stats sum(OPEN) as open_sum sum(Closed) as closed_sum | eval total = open_sum + closed_sum

Refer to this page for more examples: https://docs.splunk.com/Documentation/SCS/current/SearchReference/StatsCommandExamples#1._Calculate_...

If this reply helps you, an upvote/like would be appreciated.

Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...