Dashboards & Visualizations

Graph

mfudali
Explorer

Hi, we have two fields, latency and partition. I want to graph the latency vs. time on one of our machines for each of our partitions. So the resulting panel will have four separate line graphs. The log output we have is: 

 

mfudali_1-1633990047720.png

As you can see, there are 4 different partitions 00-BTECEU, 01-BTECEU, 02-BTECEU, 03-BTECEU. I was able to parse for the partition, but I'm having issues separating the latency for each partition. 

 

Here's the query I tried, but the resulting table is empty:

 

host=irmnrjeb0227d AND latency | reverse | rex field=name "Partition\s(?<pName>\d\d\W\w+)" | streamstats current=f last(latency) as previouslatency by pName | rename latency as currentLatency | eval delta = currentLatency - previouslatency | timechart span=30s first(delta) as Delta by pName

 

Any help is appreciated, thanks!

 

Labels (1)
0 Karma

bowesmana
SplunkTrust
SplunkTrust

If you are looking for the rex statement to extract both fields, then use this

| rex field=name "Partition\s(?<pName>\d\d\W\w+)\smax\slatency\s(?<latency>\d+)" 

Note that the rename command is redundant, as you could use latency in the delta calculation

 

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Thanks for the Memories! Splunk University, .conf25, and our Community

Thank you to everyone in the Splunk Community who joined us for .conf25, which kicked off with our iconic ...

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Introducing Splunk 10.0: Smarter, Faster, and More Powerful Than Ever

Now On Demand Whether you're managing complex deployments or looking to future-proof your data ...