<?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: Need to add icons like check circle and cross circle in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486368#M31862</link>
    <description>&lt;P&gt;Hi @vishaltaneja07011993,&lt;BR /&gt;
see in the Splunk Dashboard Examples App ( &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt; ) the dashboard "Table Icon Set (Rangemap)": there's an useful example of your need.&lt;BR /&gt;
In few words, you have to use a js and a css to do this.&lt;/P&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
    <pubDate>Thu, 05 Mar 2020 16:03:37 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2020-03-05T16:03:37Z</dc:date>
    <item>
      <title>Need to add icons like check circle and cross circle</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486367#M31861</link>
      <description>&lt;P&gt;I need to status symbol based on status UP and Down, but i want to it in single value visualization i.e. need to replace "UP" value with circle check green  &amp;amp; "DOWN" with circle cross red.&lt;/P&gt;

&lt;P&gt;below is the sample code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Test&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults | eval Status1="UP"&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="colorBy"&amp;gt;value&amp;lt;/option&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x53a051", "0x0877a6", "0xf8be34", "0xf1813f", "0xdc4e41"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0,30,70,100]&amp;lt;/option&amp;gt;
        &amp;lt;option name="showSparkline"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.size"&amp;gt;medium&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendColorInterpretation"&amp;gt;standard&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendDisplayMode"&amp;gt;absolute&amp;lt;/option&amp;gt;
        &amp;lt;option name="unitPosition"&amp;gt;after&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="useThousandSeparators"&amp;gt;1&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;

      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults | eval Status2="DOWN"&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="colorBy"&amp;gt;value&amp;lt;/option&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x53a051", "0x0877a6", "0xf8be34", "0xf1813f", "0xdc4e41"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0,30,70,100]&amp;lt;/option&amp;gt;
        &amp;lt;option name="showSparkline"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.size"&amp;gt;medium&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendColorInterpretation"&amp;gt;standard&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendDisplayMode"&amp;gt;absolute&amp;lt;/option&amp;gt;
        &amp;lt;option name="unitPosition"&amp;gt;after&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="useThousandSeparators"&amp;gt;1&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Mar 2020 15:56:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486367#M31861</guid>
      <dc:creator>vishaltaneja070</dc:creator>
      <dc:date>2020-03-05T15:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add icons like check circle and cross circle</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486368#M31862</link>
      <description>&lt;P&gt;Hi @vishaltaneja07011993,&lt;BR /&gt;
see in the Splunk Dashboard Examples App ( &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt; ) the dashboard "Table Icon Set (Rangemap)": there's an useful example of your need.&lt;BR /&gt;
In few words, you have to use a js and a css to do this.&lt;/P&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 16:03:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486368#M31862</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2020-03-05T16:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add icons like check circle and cross circle</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486369#M31863</link>
      <description>&lt;P&gt;The issue is that i dont want to do it at panel level, i have to do it at single value visualization only. &lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 16:37:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486369#M31863</guid>
      <dc:creator>vishaltaneja070</dc:creator>
      <dc:date>2020-03-05T16:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add icons like check circle and cross circle</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486370#M31864</link>
      <description>&lt;P&gt;Hi @vishaltaneja07011993,&lt;BR /&gt;
did you already tried the "Status Indicator - Custom Visualization" at &lt;A href="https://splunkbase.splunk.com/app/3119/"&gt;https://splunkbase.splunk.com/app/3119/&lt;/A&gt; ?&lt;/P&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 16:42:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486370#M31864</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2020-03-05T16:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add icons like check circle and cross circle</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486371#M31865</link>
      <description>&lt;P&gt;Any other option , I don't want to use this app&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 17:38:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486371#M31865</guid>
      <dc:creator>vishaltaneja070</dc:creator>
      <dc:date>2020-03-05T17:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add icons like check circle and cross circle</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486372#M31866</link>
      <description>&lt;P&gt;Maybe with custom Javascript. Otherwise, the app gcusello said, is what the majority of us use. It's Splunk built and supported. Using either that app or the Javascript, will involve your admin. I don't see another reason to avoid the app, and from my point of view, is the easiest of the two. Good luck!&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 20:07:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486372#M31866</guid>
      <dc:creator>efavreau</dc:creator>
      <dc:date>2020-03-05T20:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add icons like check circle and cross circle</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486373#M31867</link>
      <description>&lt;P&gt;If you are against using any css or javascript you can use ascii to approximate it:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Test&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults | eval Status1="UP", Status1=if(Status1="UP", "✅", "❌")&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults | eval Status2="DOWN", Status2=if(Status2="UP", "✅", "❌")&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Mar 2020 20:55:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486373#M31867</guid>
      <dc:creator>dmarling</dc:creator>
      <dc:date>2020-03-05T20:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add icons like check circle and cross circle</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486374#M31868</link>
      <description>&lt;P&gt;Believe it or not, Splunk natively supports the ANSI emojis (because your operating system and browser both do), which includes glyphs similar to what you are describing.  The easiest way to explore is with this app:&lt;BR /&gt;
&lt;CODE&gt;Emoji&lt;/CODE&gt;: &lt;A href="https://splunkbase.splunk.com/app/4273/"&gt;https://splunkbase.splunk.com/app/4273/&lt;/A&gt;&lt;BR /&gt;
Or just cut and paste what you need from this site:&lt;BR /&gt;
&lt;A href="http://unicode.org/emoji/charts/full-emoji-list.html#2600"&gt;http://unicode.org/emoji/charts/full-emoji-list.html#2600&lt;/A&gt;&lt;BR /&gt;
search for &lt;CODE&gt;check mark&lt;/CODE&gt; and &lt;CODE&gt;cross mark&lt;/CODE&gt;&lt;BR /&gt;
Cut and paste this EXACTLY as-is (you don't even need to install the app):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults
| eval status="PASS FAIL UP DOWN OOPS"
| makemv status
| mvexpand status
| eval icon = case(
   status=="PASS", "✅",
   status=="FAIL", "❌",
   status=="UP", "⬆",
   status=="DOWN", "⬇",
   true(), "❓")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Mar 2020 22:57:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Need-to-add-icons-like-check-circle-and-cross-circle/m-p/486374#M31868</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2020-03-05T22:57:36Z</dc:date>
    </item>
  </channel>
</rss>

