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!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...