Dashboards & Visualizations

How to display CVE as a number not all the CVE's listed

rkaakaty
Path Finder

My CVE field is being displayed like this:

alt text

I want it to be displayed by the number of CVE's and not each one.

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, Solution, CVSS_SCORE, CVE
| sort - CVSS_SCORE

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Try this

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

View solution in original post

somesoni2
Revered Legend

Try this

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

rkaakaty
Path Finder

Thank you!

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 ...