Splunk Dev

Iam getting different outputs for same query

krishna1
Explorer

Iam getting different results for same query when checked in statistics and visualizations, Attaching both screenshots

krishna1_0-1706696012959.png

 

krishna1_1-1706696220064.png

 

 

 

0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

The data in the chart is consistent with the data in the table - the issue is that the chart is treating _time as a special case of field - you can get around this by creating a new field called time and removing _time - you would need to ensure that the time field is listed first so that it becomes the x-axis

| gentimes start=-365
| rename starttime as _time 
| fields _time
| eval location=mvindex(split("ABCDEFGH",""),random()%8)
``` the lines above generate random data for testing ```
| timechart span=1mon count by location
| tail 6
| eval time=strftime(_time,"%Y-%m")
| fields - _time
| table time *

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

The data in the chart is consistent with the data in the table - the issue is that the chart is treating _time as a special case of field - you can get around this by creating a new field called time and removing _time - you would need to ensure that the time field is listed first so that it becomes the x-axis

| gentimes start=-365
| rename starttime as _time 
| fields _time
| eval location=mvindex(split("ABCDEFGH",""),random()%8)
``` the lines above generate random data for testing ```
| timechart span=1mon count by location
| tail 6
| eval time=strftime(_time,"%Y-%m")
| fields - _time
| table time *
0 Karma

krishna1
Explorer

Thank you! It is working

0 Karma

PickleRick
SplunkTrust
SplunkTrust

What do you mean by "different results"? They seem pretty much consistent.

0 Karma

krishna1
Explorer

in table , _time is converted into month buckets but in chart, in X-axis its not getting showing monthly buckets

 

0 Karma

PickleRick
SplunkTrust
SplunkTrust

That's simply how Splunk shows the _time field. The data is consistent, the presentation might indeed be a bit confusing. You can get  around it as @ITWhisperer showed already.

0 Karma
Get Updates on the Splunk Community!

Prove Your Splunk Prowess at .conf25—No Prereqs Required!

Your Next Big Security Credential: No Prerequisites Needed We know you’ve got the skills, and now, earning the ...

Splunk Observability Cloud's AI Assistant in Action Series: Observability as Code

This is the sixth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Answers Content Calendar, July Edition I

Hello Community! Welcome to another month of Community Content Calendar series! For the month of July, we will ...