Getting Data In

Parsing Text

kenosborn
New Member

I have the following percent values in indexed logfiles:

Loss=0.00%/0.00% (R/T)

How can I construct a search query that will only look at the percent values before the '/' (aka 'R' or 'Receive)?

Conversely how can I construct a search query that will only look at the percent values after the '/' (aka 'T' or 'Transmit')?

Ultimately I want to create min/max charts for these values...

Thank you!

-Ken

Tags (2)
0 Karma

kristian_kolb
Ultra Champion

That should be fairly simple

sourcetype=your_sourcetype | rex field=Loss "(?<ReceiveLoss>[^%]+)%/(?<TransmitLoss>[^%]+)%"

This would give you two new fields to make charts from.

This type of field extraction has to be specified as part of the search query, but you could make the extraction more 'permanent' by instead adding the extraction to the props.conf stanza for your sourcetype;

[your_sourcetype]
EXTRACT-blah Loss=(?<RecieveLoss>[^%]+)%/(?<TransmitLoss>[^%]+)

Either way, once you have the fields extracted, you could create charts with timechart or chart;

your_search |timechart span=5m max(ReceiveLoss) AS MaxRLoss min(ReceiveLoss) AS MinRLoss max(TransmitLoss) AS MaxTLoss min(TransmitLoss) AS MinTLoss

Then you can save it to a dashboard as a line chart or whatever you like.

Hope this helps,

Kristian

kristian_kolb
Ultra Champion

more updates. /k

0 Karma

kristian_kolb
Ultra Champion

updated and fixed an error. /k

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...