Splunk Search

How to change time interval on x-axis of a graph to 10 minutes instead of 1 hour using dbquery?

usha_nittala
New Member

Hi All,
Is there any way we can change the time interval on x-axis to be 10 mins instead of 1 hour using dbquery.

My sample query looks like this:

| dbquery testDB "select SRC_DB,TOTALLAG,DELGROUP,EXTRACT_NAME,UPDATE_TIMESTAMP from COMDBA_ID.GGS_HEARTBEAT_HISTORY" | rename UPDATE_TIMESTAMP as time | convert timeformat="%d" ctime(time) AS date | convert timeformat="%H" ctime(time) AS hour  | chart avg(TOTALLAG) as TOTALLAG by hour DELGROUP

Thanks in advance.

Usha

Tags (2)
0 Karma
1 Solution

strive
Influencer

In your search you are calculating average by per hour basis. That means every one hour you will have one point to plot on chart. If you want it to be every 10 minutes then you need to change your search.

View solution in original post

strive
Influencer

In your search you are calculating average by per hour basis. That means every one hour you will have one point to plot on chart. If you want it to be every 10 minutes then you need to change your search.

strive
Influencer

Yes. Set time buckets of 10 minutes and then calculate average using your chart command.
One suggestion -- I do not see the usage of date in your search, so you can stop extracting date.

0 Karma

usha_nittala
New Member

Thanks strive, so do I need to use something like sysdate in my dbquery or use some option with chart?

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...