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!

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...

Adoption of Infrastructure Monitoring at Splunk

  Splunk's Growth Engineering team showcases one of their first Splunk product adoption-Splunk Infrastructure ...