Splunk Search

Calculating battery lifespan

nickhills
Ultra Champion

We are logging data from a number of devices which send a periodic heartbeat back to us, which among other things includes the current battery level of the device.

we would like to make some estimations about the lifespan of the battery, and already are charting the battery curve for our devices, but would like to be able to show how long the cycle from 95% - 30% is.

Of course, users could decide to charge phones up halfway through the cycle, so this would make the time artificially greater than normal.

i have tried the transaction statement, using something like:

transaction heartbeat_device_id startswith=(heartbeat_device_battery=95) endswith=(heartbeat_device_battery=30) 

but as i understand it, this would not account for a 'mid-day charge'.

does anyone know of a sequence we can use to represent a transaction which ONLY decreases in value (and ignores sequences where the battery level increases) and calculate the time from start to finish?

If my comment helps, please give it a thumbs up!
Tags (1)
0 Karma

dwaddle
SplunkTrust
SplunkTrust

You might have some success with streamstats.

... | streamstats global=false window=1 last(heartbeat_device_battery) as previous_battery 
by heartbeat_device_id | eval delta_battery = heartbeat_device_battery - previous_battery 
| where delta_battery > 0

I am not 100% confident on the search above - but the idea is to let streamstats give you events with the current and prior values within the same event - then you can do whatever maths you like to determine if it's an event you wish to keep / alter / or exactly what...

0 Karma
Get Updates on the Splunk Community!

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...