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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Thanks for the Memories! Splunk University, .conf25, and our Community

Thank you to everyone in the Splunk Community who joined us for .conf25, which kicked off with our iconic ...

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Introducing Splunk 10.0: Smarter, Faster, and More Powerful Than Ever

Now On Demand Whether you're managing complex deployments or looking to future-proof your data ...