Splunk Enterprise

How do I get a count of Low, Medium, High, Critical in a Splunk Search?

nrs011
Observer

How do I get a count of Low, Medium, High, Critical in a Splunk Search?

 

This is the current search I am using:

`get_tenable_index` sourcetype="tenable:sc:vuln" severity=Low OR severity=Medium OR severity=High OR severity=Critical | dedup plugin_id, port, protocol, sc_uniqueness, source | eval key=plugin_id."_".port."_".protocol."_".sc_uniqueness."_".source | table severity, synopsis, solution, port, protocol, ip | outputlookup append=true key_field=key sc_vuln_data_lookup

Tags (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Use the eventstats command to get a count.  The by option creates a separate count for each field value.

`get_tenable_index` sourcetype="tenable:sc:vuln" severity=Low OR severity=Medium OR severity=High OR severity=Critical 
| dedup plugin_id, port, protocol, sc_uniqueness, source 
| eval key=plugin_id."_".port."_".protocol."_".sc_uniqueness."_".source 
| eventstats count by severity
| table severity, synopsis, solution, port, protocol, ip 
| outputlookup append=true key_field=key sc_vuln_data_lookup

 

---
If this reply helps you, Karma would be appreciated.
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 ...