<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Iam getting different outputs for same query in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676050#M11348</link>
    <description>&lt;P&gt;Thank you! It is working&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jan 2024 11:58:30 GMT</pubDate>
    <dc:creator>krishna1</dc:creator>
    <dc:date>2024-01-31T11:58:30Z</dc:date>
    <item>
      <title>Iam getting different outputs for same query</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676038#M11343</link>
      <description>&lt;P&gt;Iam getting different results for same query when checked in statistics and visualizations, Attaching both screenshots&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="krishna1_0-1706696012959.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29142iE6E841F790C594B3/image-size/large?v=v2&amp;amp;px=999" role="button" title="krishna1_0-1706696012959.png" alt="krishna1_0-1706696012959.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="krishna1_1-1706696220064.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29143iE3B84AE731DD0A6D/image-size/large?v=v2&amp;amp;px=999" role="button" title="krishna1_1-1706696220064.png" alt="krishna1_1-1706696220064.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 10:18:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676038#M11343</guid>
      <dc:creator>krishna1</dc:creator>
      <dc:date>2024-01-31T10:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Iam getting different outputs for same query</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676039#M11344</link>
      <description>&lt;P&gt;What do you mean by "different results"? They seem pretty much consistent.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 10:24:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676039#M11344</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-01-31T10:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Iam getting different outputs for same query</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676040#M11345</link>
      <description>&lt;P&gt;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&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| 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 *&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 31 Jan 2024 10:52:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676040#M11345</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-01-31T10:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Iam getting different outputs for same query</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676042#M11346</link>
      <description>&lt;P&gt;in table , _time is converted into month buckets but in chart, in X-axis its not getting showing monthly buckets&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 10:56:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676042#M11346</guid>
      <dc:creator>krishna1</dc:creator>
      <dc:date>2024-01-31T10:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Iam getting different outputs for same query</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676043#M11347</link>
      <description>&lt;P&gt;That's simply how Splunk shows the _time field. The data is consistent, the presentation might indeed be a bit confusing. You can get&amp;nbsp; around it as &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt; showed already.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 10:58:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676043#M11347</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-01-31T10:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: Iam getting different outputs for same query</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676050#M11348</link>
      <description>&lt;P&gt;Thank you! It is working&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 11:58:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Iam-getting-different-outputs-for-same-query/m-p/676050#M11348</guid>
      <dc:creator>krishna1</dc:creator>
      <dc:date>2024-01-31T11:58:30Z</dc:date>
    </item>
  </channel>
</rss>

