<?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: Rename label chart in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316704#M39641</link>
    <description>&lt;P&gt;try this&lt;/P&gt;

&lt;P&gt;|table sourcename|eval sourcename=replace(sourcename,":","")&lt;/P&gt;</description>
    <pubDate>Sat, 07 Apr 2018 10:24:42 GMT</pubDate>
    <dc:creator>krishnab</dc:creator>
    <dc:date>2018-04-07T10:24:42Z</dc:date>
    <item>
      <title>Rename label chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316701#M39638</link>
      <description>&lt;P&gt;hi&lt;/P&gt;

&lt;P&gt;in my request, i have a sourcename like this&lt;BR /&gt;
Microsoft Office 15(count: 1, percent: 50.0) &lt;BR /&gt;
i want to delete : could you tell me how to do please : regex, HTML code?&lt;BR /&gt;
thanks&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 07:42:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316701#M39638</guid>
      <dc:creator>jip31jip31</dc:creator>
      <dc:date>2018-04-07T07:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Rename label chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316702#M39639</link>
      <description>&lt;P&gt;Can you try something:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; | rex field=sourcename mode=sed "s/://g"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 07 Apr 2018 08:55:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316702#M39639</guid>
      <dc:creator>p_gurav</dc:creator>
      <dc:date>2018-04-07T08:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Rename label chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316703#M39640</link>
      <description>&lt;P&gt;SORRY IT DOESN T WORK&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 09:56:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316703#M39640</guid>
      <dc:creator>jip31jip31</dc:creator>
      <dc:date>2018-04-07T09:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Rename label chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316704#M39641</link>
      <description>&lt;P&gt;try this&lt;/P&gt;

&lt;P&gt;|table sourcename|eval sourcename=replace(sourcename,":","")&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 10:24:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316704#M39641</guid>
      <dc:creator>krishnab</dc:creator>
      <dc:date>2018-04-07T10:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Rename label chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316705#M39642</link>
      <description>&lt;P&gt;Sorry but ko again....&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 11:21:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316705#M39642</guid>
      <dc:creator>jip31jip31</dc:creator>
      <dc:date>2018-04-07T11:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Rename label chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316706#M39643</link>
      <description>&lt;P&gt;nobody for helping me please???&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 15:05:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316706#M39643</guid>
      <dc:creator>jip31jip31</dc:creator>
      <dc:date>2018-04-07T15:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Rename label chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316707#M39644</link>
      <description>&lt;P&gt;@jip31jip31, what is the field name? is it really &lt;CODE&gt;source&lt;/CODE&gt; or &lt;CODE&gt;sourcename&lt;/CODE&gt; like you have mentioned in your question?&lt;/P&gt;

&lt;P&gt;Also do you want to make this correction during index time or search time?&lt;/P&gt;

&lt;P&gt;If you want it during search time following is run anywhere search based on sample data provided in the question:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|  makeresults
|  eval sourcename="Microsoft Office 15(count: 1, percent: 50.0)"
|  eval sourcename=replace(sourcename,":","")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 07 Apr 2018 16:40:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316707#M39644</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-04-07T16:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Rename label chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316708#M39645</link>
      <description>&lt;P&gt;thanks!!!!!!!&lt;/P&gt;</description>
      <pubDate>Sun, 08 Apr 2018 15:48:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316708#M39645</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2018-04-08T15:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Rename label chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316709#M39646</link>
      <description>&lt;P&gt;@jip31 @jip31jip31 I have converted my comment to answer. If your issue is resolved please accept the answer to mark this question as answered!&lt;/P&gt;</description>
      <pubDate>Sun, 08 Apr 2018 16:15:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Rename-label-chart/m-p/316709#M39646</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-04-08T16:15:42Z</dc:date>
    </item>
  </channel>
</rss>

