Splunk Search

How to extract these fields and compare the values?

marcroyer
New Member

Hi,

I have 2 fields. Field1 is named field13 and Field2 is named logical_usage.

Field1 contains "hard" : 1099511627776
Field2 contains "logical" : 664419

I tried to extract values after the : and after a ratio of the usage. That's for a quota ratio.

I tried with | rex, but I didn't find the right way to do it.

Thank you for your precious help.

0 Karma
1 Solution

sundareshr
Legend

This rex command will extract the number.

.... | rex field=field1 "\:\s*(?<field1value>\d+)" | rex field=field2 "\:\s*(?<field2value>\d+)" | table field1value field2value

View solution in original post

0 Karma

somesoni2
Revered Legend

Give this a try as well

your base search | eval Quota_Ratio=tonumber(mvindex(split(logical_usage," "),-1))/tonumber(mvindex(split(field13," "),-1))
0 Karma

sundareshr
Legend

This rex command will extract the number.

.... | rex field=field1 "\:\s*(?<field1value>\d+)" | rex field=field2 "\:\s*(?<field2value>\d+)" | table field1value field2value
0 Karma

marcroyer
New Member

Hi Guys,

Thank you very much !!! It's working as expected.

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!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...