<?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: How to exclude field name from visualization? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487735#M31971</link>
    <description>&lt;P&gt;Thank you, it was as simple  as |where ROUTE!=""&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jan 2020 15:02:35 GMT</pubDate>
    <dc:creator>rxtawell</dc:creator>
    <dc:date>2020-01-16T15:02:35Z</dc:date>
    <item>
      <title>How to exclude field name from visualization?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487730#M31966</link>
      <description>&lt;P&gt;Hello, I have a problem where my graphs on the dashboard are showing the field name as a counted type. (i.e. ROUTE) See picture.&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/8241i34099F633EFD0FF3/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;There is no line that contains 'ROUTE:' in my data as I am using a CSV without headers. My headers are defined in my custom source type. &lt;/P&gt;

&lt;P&gt;My search is: source="C:\QS1\WF_LD.CSV" | stats  count by "ROUTE"&lt;/P&gt;

&lt;P&gt;How can I remove this from the visualization?&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2020 18:43:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487730#M31966</guid>
      <dc:creator>rxtawell</dc:creator>
      <dc:date>2020-01-15T18:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude field name from visualization?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487731#M31967</link>
      <description>&lt;P&gt;You told Splunk to count the literal string "ROUTE" so that is what it did.&lt;/P&gt;

&lt;P&gt;Try &lt;CODE&gt;source="C:\\QS1\\WF_LD.CSV" | stats count by ROUTE&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2020 19:01:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487731#M31967</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-01-15T19:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude field name from visualization?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487732#M31968</link>
      <description>&lt;P&gt;Thank you for this. I tried this change but I get the same results. &lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2020 19:29:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487732#M31968</guid>
      <dc:creator>rxtawell</dc:creator>
      <dc:date>2020-01-15T19:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude field name from visualization?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487733#M31969</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;source="C:\\QS1\\WF_LD.CSV" | stats count by "ROUTE"
|where isnotnull(ROUTE)

OR 

|where ROUTE!=""
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;hi, @rxtawell &lt;BR /&gt;
At last, why not remove the line?&lt;/P&gt;

&lt;P&gt;and Do you check the &lt;EM&gt;statistics&lt;/EM&gt; ? what's the results?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2020 23:38:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487733#M31969</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-15T23:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude field name from visualization?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487734#M31970</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Could you please provide the sample data for this.&lt;BR /&gt;
Also, please try the below SPL&lt;/P&gt;

&lt;P&gt;Please try and update us whether this works.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| source="C:\\QS1\\WF_LD.CSV" 
|table ROUTE
|where isnotnull(ROUTE)
|stats count as route_count by ROUTE
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 16 Jan 2020 14:51:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487734#M31970</guid>
      <dc:creator>dindu</dc:creator>
      <dc:date>2020-01-16T14:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude field name from visualization?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487735#M31971</link>
      <description>&lt;P&gt;Thank you, it was as simple  as |where ROUTE!=""&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 15:02:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-exclude-field-name-from-visualization/m-p/487735#M31971</guid>
      <dc:creator>rxtawell</dc:creator>
      <dc:date>2020-01-16T15:02:35Z</dc:date>
    </item>
  </channel>
</rss>

