Dashboards & Visualizations

How to do TimeChart implementation with DB SQL query?

dkssingh2005
Explorer

I want to implement timechart with span in db sql query. But while implementation, I am getting zero result.

Basically, I want to show count with timechart.

date2.JPG

Even, I verified that data is coming with the same query with created_timestamp column.data1.JPG 

I don't know what step I am doing missing, while using timechart.

Labels (1)
Tags (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Timechart relies on a field called _time to hold the epoch timestamp. You need to parse the create time and store it in the _time field. Try something like this

| eval _time=strptime(created_timestamp,"%Y-%m-%d %H:%M:%S.%3N")

 

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

Timechart relies on a field called _time to hold the epoch timestamp. You need to parse the create time and store it in the _time field. Try something like this

| eval _time=strptime(created_timestamp,"%Y-%m-%d %H:%M:%S.%3N")

 

dkssingh2005
Explorer

Thanks @ITWhisperer , Its working now. But I am getting extra date in visualization like 1 Apr to 24 Apr . I only fetched  date 1 march  to 1Aprildata3.JPG Even I put the condition on _time, still its not workingdata4.JPG

 

Getting extra date in timechart. Any Solution?

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Timechart uses the earliest and latest times from the search to determine the size of the x axis

ITWhisperer_0-1650894273366.png

Change the timeframe for the search or create your own chart

| bin span=1h _time
| chart count by _time scope
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...

SplunkTrust Application Period is Officially OPEN!

It's that time, folks! The application/nomination period for the 2026-2027 SplunkTrust is officially open. If ...