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
Get Updates on the Splunk Community!

New Year, New Changes for Splunk Certifications

As we embrace a new year, we’re making a small but important update to the Splunk Certification ...

[Puzzles] Solve, Learn, Repeat: Unmerging HTML Tables

[Puzzles] Solve, Learn, Repeat: Unmerging HTML TablesFor a previous puzzle, I needed some sample data, and ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...