<?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: Why is my column chart not displaying any data even though it is setup correctly? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351447#M104027</link>
    <description>&lt;P&gt;That pretty much works perfectly thank you! Now my only remaining issue seems to be with test_summary.duration. If I end with this &lt;CODE&gt;table build_number build_duration queue_time 'test_summary.duration'&lt;/CODE&gt; &lt;BR /&gt;
everything shows up fine except there are no values in the chart or table for test_summary. However if I remove the single quotes around it all those values will appear, but build_duration will disappear. I assume it has something to do with it being a string for some reason, but I don't know the workaround. &lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 17:56:38 GMT</pubDate>
    <dc:creator>cdgill</dc:creator>
    <dc:date>2020-09-29T17:56:38Z</dc:date>
    <item>
      <title>Why is my column chart not displaying any data even though it is setup correctly?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351439#M104019</link>
      <description>&lt;P&gt;Here is my search query: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=jenkins* job_name="jenkins-representative-jobs_github_organization/math_utilities/master" event_tag=job_event (type=started OR type=completed)  | dedup build_number | eval build_duration = job_duration - queue_time - 'test_summary.duration' | chart count by build_duration | fields build_number job_duration queue_time test_summary.duration
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And here is a link to the chart to get an idea of what I'm seeing. &lt;A href="https://imgur.com/a/2HcyE"&gt;https://imgur.com/a/2HcyE&lt;/A&gt;&lt;BR /&gt;
Basically, the chart template is being created perfectly, but no data is filling it. Any help?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 15:18:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351439#M104019</guid>
      <dc:creator>cdgill</dc:creator>
      <dc:date>2018-01-31T15:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my column chart not displaying any data even though it is setup correctly?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351440#M104020</link>
      <description>&lt;P&gt;After your chart command, only field available are build_duration and count. You field command is trying to output fields that doesn't exist hence no chart data is shown. Get rid of last fields command to see some data there (plotting count of events for each value of build_duration.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:52:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351440#M104020</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2020-09-29T17:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my column chart not displaying any data even though it is setup correctly?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351441#M104021</link>
      <description>&lt;P&gt;Hi @cdgill,&lt;BR /&gt;
It's due to permission issue in your automatic lookup- &lt;CODE&gt;pan_vendor_info_lookup&lt;/CODE&gt;&lt;BR /&gt;
Change its permission to global :&lt;BR /&gt;
In UI go to &lt;CODE&gt;Settings&amp;gt;&amp;gt;Lookup&amp;gt;&amp;gt;Automatic lookups&amp;gt;&amp;gt;&lt;/CODE&gt; change sharing permission of &lt;CODE&gt;pan_vendor_info_lookup&lt;/CODE&gt; so that it will be available in your query.&lt;BR /&gt;
Hope this helps!&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 16:17:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351441#M104021</guid>
      <dc:creator>493669</dc:creator>
      <dc:date>2018-01-31T16:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my column chart not displaying any data even though it is setup correctly?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351442#M104022</link>
      <description>&lt;P&gt;@cdgill,&lt;BR /&gt;
have you tried this?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 17:29:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351442#M104022</guid>
      <dc:creator>493669</dc:creator>
      <dc:date>2018-02-01T17:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my column chart not displaying any data even though it is setup correctly?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351443#M104023</link>
      <description>&lt;P&gt;Yes, that changed nothing though sadly.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 18:21:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351443#M104023</guid>
      <dc:creator>cdgill</dc:creator>
      <dc:date>2018-02-01T18:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my column chart not displaying any data even though it is setup correctly?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351444#M104024</link>
      <description>&lt;P&gt;That does show me some data, but I'm trying to have it show me a breakdown the queue, build, and test times. How can I get those values to show up?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 18:25:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351444#M104024</guid>
      <dc:creator>cdgill</dc:creator>
      <dc:date>2018-02-01T18:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my column chart not displaying any data even though it is setup correctly?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351445#M104025</link>
      <description>&lt;P&gt;I want time to be on the Y-Axis and the individual build number to be on the X-Axis.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 18:26:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351445#M104025</guid>
      <dc:creator>cdgill</dc:creator>
      <dc:date>2018-02-01T18:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my column chart not displaying any data even though it is setup correctly?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351446#M104026</link>
      <description>&lt;P&gt;How about this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=jenkins* job_name="jenkins-representative-jobs_github_organization/math_utilities/master" event_tag=job_event (type=started OR type=completed)  | dedup build_number | eval build_duration = job_duration - queue_time - 'test_summary.duration' | table build_number build_duration
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Feb 2018 18:40:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351446#M104026</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2018-02-01T18:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my column chart not displaying any data even though it is setup correctly?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351447#M104027</link>
      <description>&lt;P&gt;That pretty much works perfectly thank you! Now my only remaining issue seems to be with test_summary.duration. If I end with this &lt;CODE&gt;table build_number build_duration queue_time 'test_summary.duration'&lt;/CODE&gt; &lt;BR /&gt;
everything shows up fine except there are no values in the chart or table for test_summary. However if I remove the single quotes around it all those values will appear, but build_duration will disappear. I assume it has something to do with it being a string for some reason, but I don't know the workaround. &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:56:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-column-chart-not-displaying-any-data-even-though-it-is/m-p/351447#M104027</guid>
      <dc:creator>cdgill</dc:creator>
      <dc:date>2020-09-29T17:56:38Z</dc:date>
    </item>
  </channel>
</rss>

