Splunk Search

Stats issue with multivalue field

mbasharat
Builder

Hi,

I am tracking my assets with vulnerabilities. My minimized sample query is:

index=vuln
| stats dc(dns) as impacted_asset_count by Vuln_ID, CVE

When stats populate, it shows that one vulnerability is affecting multiple assets and several Vuln_IDs have multiple CVEs.

Sample:

alt text

As you notice, there are multiple CVEs in some Vuln IDs. I need to have CVEs seperated/expanded/extracted as they are multivalue field and then have correct stats. Each CVE is impacting more than one assets so, I need it like this:

alt text

Thanks in-advance!!!

Labels (2)
Tags (1)
0 Karma
1 Solution

mbasharat
Builder

I ended up using:

| makemv delim="," cve
| mvexpand cve

View solution in original post

0 Karma

mbasharat
Builder

I ended up using:

| makemv delim="," cve
| mvexpand cve

0 Karma

to4kawa
Ultra Champion
index=vuln
| stats dc(dns) as impacted_asset_count values(Vuln_ID) as Vuln_ID by CVE

This is better.
by extracts multi values

0 Karma

mbasharat
Builder

Hi @ to4kawa

This does not do it because cve is a multivalue field. AT minimum, it has one CVE and there are several vuln ids which have more than one CVE as shown in first screenshot. cves need to be extracted using regex or eval and then do stats will do it looks like. I will need regex or eval pls.

0 Karma

to4kawa
Ultra Champion

I see, my answer is updated

0 Karma
Get Updates on the Splunk Community!

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!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...