Splunk Search

Find percentage between two fields whose name will fall into a naming convention

mjones414
Contributor

I have a set of fixed fields that define a maximum threshold with the naming convention of "resources_available_[[convention]]"

and I have a variable set of fields which define a process consumption that will reference the naming convention like "resources_listed_[[convention]]"

The convention portion of the field names matches, but while one is fixed, the other will be based on whatever work is going on at the time. I'm trying to figure out how to calculate an evaluated percentage in time per convention (resources_listed_[[convention]])*(resources_available_[[convention]])/100 and the SPL to do this is just not coming to me...

Scenario example is I can get 30 events in, each with different values:
_time=now

resource_listed_a=23

resource_listed_b=9839

resource_listed_a=102

resource_listed_b=1

resource_listed_cde=1200

While I have a static condition of

resources_available_a=9201
resources_available_b=50
resources_available_cde=1

I want based on the event indexed: eval percent_consumed_[[convention]]=resource_listed_[[convention]]*resources_available_[[convention]]/100

Is this even possible?

Tags (3)
0 Karma

somesoni2
Revered Legend

You'd probably use foreach command here. Try like this

your current search which includes fields resource_listed_* andn resource_available_*
| foreach resource_listed_* [eval "percent_consumed_<<MATCHSTR>>"='resource_listed_<<MATCHSTR>>'*'resources_available_<<MATCHSTR>>'/100]

The <<MATCHSTR>> and single quotes are to be used exactly as specified above (literal string).

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

From Raw Data to Executive-Ready Stories, Faster

Build Data Stories for Every Audience  A dashboard is rarely just a dashboard. It might be the view an ...

Guided Onboarding with Auto-schema Is Now Generally Available

  We are excited to announce the General Availability of Guided Onboarding with Auto-Schematization ...

ATTENTION: We’re Moving! (AGAIN!)

The Splunk Community Slack is undergoing a system migration to keep our workspace secure and ...