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!

Index This | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...

New Articles from Academic Learning Partners, Help Expand Lantern’s Use Case Library, ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...