Splunk Search

Difference values from accumulated stat

lisheridan
Explorer

I have some statistic fields that are accumulated values over time. I want to chart the difference values between n and n-1 over time.

For example, number_segments looks like:
[1, 2, 5, 7, 10, ...]

I want to get a timechart of the difference n, n-1:
[1, 1, 3, 2, 3, ...]

How can I do this with the search language?

Tags (1)
0 Karma
1 Solution

gkanapathy
Splunk Employee
Splunk Employee

You'll need either delta or (more flexible and powerful) streamstats:

sourcetype=mydataseries | delta number_segments as diff | timechart diff

or

sourcetype=mydataseries 
| streamstats window=2 current=t global=f
  first(number_segments) as n last(number_segments) as n_minus_1
| eval diff=n_minus_1 - n 
| timechart diff

lisheridan
Explorer

this works, too, thanks!

0 Karma

Ayn
Legend
0 Karma
Get Updates on the Splunk Community!

Get ready to show some Splunk Certification swagger at .conf24!

Dive into the deep end of data by earning a Splunk Certification at .conf24. We're enticing you again this ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Now On-Demand Join us to learn more about how you can leverage Service Level Objectives (SLOs) and the new ...

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...