Splunk Search

How to display maximum power usage in last 24 hours in a table

geetanjali
Path Finder

Hi,
i have my results :

Host | max(usage)

ABC | 100

xyz | 200

I want to add new column in table with max(usage) in last 24 hours by host.

| Max usage (last 24 hours)

| 90

| 200

Tags (1)
0 Karma

MarioM
Motivator

did you try join?

| join [ search <yoursearch> earliest=-24h | stats max(usage) by host ] 
0 Karma

geetanjali
Path Finder

My initial search is for max consumption for entire log. But in subsearch, want maximum comsumption in last 24 hours.

Host | max(usage) | Max usage (last 24 hours)

ABC | 100 | 90

xyz | 200 | 90

0 Karma

MarioM
Motivator

your initial search is same as you subsearch then subsearch is not needed,this should be enough:

index="power" sourcetype="power_usage" earliest=-24h | chart max(Power_consumption) over host

0 Karma

geetanjali
Path Finder

Hi,
I am writing following query :

index="power" sourcetype="power_usage" | join [ search index="power" sourcetype="power_usage" earliest=-24h | table Power_consumption by host ]| chart max(Power_consumption) over host

Its again giving following error:-

[subsearch]: Your timerange was substituted based on your search string

0 Karma

MarioM
Motivator

what is timerange of your initial search? just add the corresponding earliest= to this initial search too.

0 Karma

geetanjali
Path Finder

Hi,
Thanks for the solution. I have implemented this in my query. its giving following error :

[subsearch]: Your timerange was substituted based on your search string

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...