Splunk Search

Getting count of field instead of a list of them

rkaakaty
Path Finder

Hello,

I am getting a stack of CVE field values, I just wanted to display the number of them (count). Here is my code:

index=nessus cve=*
| eval CVSS_SCORE = cvss_base_score + cvss_temporal_score
| eval description=substr(description,1,100)
| eval solution=substr(solution,1,100)
| rename id as ID, cve as CVE, plugin_name as Plugin_Name, description as  Description, solution as Solution
| table ID, Plugin_Name, Description, CVE, Solution, CVSS_SCORE
| sort - CVSS_SCORE

This is what it looks like alt text

Tags (1)
0 Karma

DalJeanis
Legend
| stats count as CVECount

or

| stats dc(CVE) as CVECount

You don't really need much of that if all you want is the count of CVEs...

 index=nessus cve=*
 | fields cve
 | dedup cve 
 | stats dc(cve) as CVECount

And if cve is an indexed field, then tstats would probably be more efficient

tstats where index=nessus AND cve=*
| stats dc(cve) as CVECount
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 ...