<?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: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489400#M136712</link>
    <description>&lt;P&gt;None of the answers works for me so I am hoping for another answer.&lt;/P&gt;</description>
    <pubDate>Tue, 31 Dec 2019 18:07:21 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2019-12-31T18:07:21Z</dc:date>
    <item>
      <title>What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489390#M136702</link>
      <description>&lt;P&gt;I am doing it with &lt;CODE&gt;Pie Chart&lt;/CODE&gt; and &lt;CODE&gt;Trellis&lt;/CODE&gt; but that starts paginating at 20 and there is no way to expand that (JIRAs = &lt;CODE&gt;SPL-143101&lt;/CODE&gt; and &lt;CODE&gt;SPL-176965&lt;/CODE&gt;).  Ideally, I'd like to do it with a built-in visualization (maybe there is a way to hack a &lt;CODE&gt;Scatter Chart&lt;/CODE&gt; or a &lt;CODE&gt;Bubble Chart&lt;/CODE&gt;?)  but if that is not possible, what is the best &lt;CODE&gt;Mod Viz&lt;/CODE&gt; app to do it from Splunkbase?  Ideally it would sort them from worst to best like the &lt;CODE&gt;Service Analyzer&lt;/CODE&gt; in &lt;CODE&gt;ITSI&lt;/CODE&gt;.  Actually, a tightly stacked &lt;CODE&gt;single-value&lt;/CODE&gt; visualization like that would work, too.  Have any of you custom-built a &lt;CODE&gt;Service Analyzer&lt;/CODE&gt; view in core Splunk somehow?&lt;/P&gt;</description>
      <pubDate>Sat, 23 Nov 2019 07:02:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489390#M136702</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-11-23T07:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489391#M136703</link>
      <description>&lt;P&gt;@woodcock Service Analyzer kind of view from ITSI is possible in core Splunk &lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;either with Line/Area Chart with series compare legends (refer to one of my older answers: &lt;A href="https://answers.splunk.com/answers/752153/building-a-dashboard-to-help-tune-our-network-sens.html"&gt;https://answers.splunk.com/answers/752153/building-a-dashboard-to-help-tune-our-network-sens.html&lt;/A&gt;) &lt;/LI&gt;
&lt;LI&gt;or else through &lt;A href="https://splunkbase.splunk.com/app/3117/"&gt;Horizon Chart Custom Viz&lt;/A&gt;. See if one of these fits your needs.&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Mon, 25 Nov 2019 09:42:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489391#M136703</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-11-25T09:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489392#M136704</link>
      <description>&lt;P&gt;I used a &lt;CODE&gt;Bubble Chart&lt;/CODE&gt; (or &lt;CODE&gt;Scatter Chart&lt;/CODE&gt;) and set all my bubbles to the same size.  Key chart configs include:&lt;/P&gt;

&lt;P&gt;X axis interval : 1&lt;BR /&gt;
Mark Min size : 1&lt;BR /&gt;
Mark Max size : 17&lt;/P&gt;

&lt;P&gt;Key to the success of the graph are the 1st 3 columns... &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;Column 1&lt;/CODE&gt; should correspond to the value that you want colored.  In my case, i used four: &lt;CODE&gt;Okay&lt;/CODE&gt;, &lt;CODE&gt;Caution&lt;/CODE&gt;, &lt;CODE&gt;Concern&lt;/CODE&gt; &amp;amp; &lt;CODE&gt;Critical&lt;/CODE&gt;&lt;BR /&gt;
&lt;CODE&gt;Column 2&lt;/CODE&gt; is your &lt;CODE&gt;X&lt;/CODE&gt; value&lt;BR /&gt;
&lt;CODE&gt;Column 3&lt;/CODE&gt; is your &lt;CODE&gt;Y&lt;/CODE&gt; value&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| windbag 
| eval lenSample=len(sample) 
| eval positionStr="Position "+position 
| eval health = case(lenSample&amp;lt;20,"Okay",lenSample&amp;lt;30,"Caution",lenSample&amp;lt;40,"Concern",lenSample&amp;gt;=0,"Critical") 
| eval y=trunc(position/10)+1 
| eval x=trunc(position%10)+1
| table health,x,y, positionStr
&lt;/CODE&gt;&lt;/PRE&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/7973iC8B1A52E52EB1995/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 13:01:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489392#M136704</guid>
      <dc:creator>awmorris</dc:creator>
      <dc:date>2019-11-25T13:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489393#M136705</link>
      <description>&lt;P&gt;BONUS POINTS for the use of &lt;CODE&gt;windbag&lt;/CODE&gt; to generate sample event data!&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 17:42:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489393#M136705</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-11-25T17:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489394#M136706</link>
      <description>&lt;P&gt;I think that perhaps you are not understanding what I mean by the &lt;CODE&gt;Service Analyzer View in ITSI&lt;/CODE&gt;.  I am talking about this:&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/ITSI/4.4.0/User/ServiceAnalyzer"&gt;https://docs.splunk.com/Documentation/ITSI/4.4.0/User/ServiceAnalyzer&lt;/A&gt;&lt;BR /&gt;
If you take a look at the MOST EXCELLENT answer provided by @awmorris, he is getting exactly what I mean.  I looked at your link and it seems like you are more answering how to see an &lt;CODE&gt;outlier&lt;/CODE&gt; or &lt;CODE&gt;swim lane&lt;/CODE&gt; view in &lt;CODE&gt;ITSI&lt;/CODE&gt;, which is not the ask.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 19:06:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489394#M136706</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-11-25T19:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489395#M136707</link>
      <description>&lt;P&gt;It works better like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| windbag 
| head 100
| eval lenSample=len(sample) 
| stats avg(lenSample) AS lenSample BY lang
| streamstats count AS position
| eval position = position - 1
| eval y = 0 - (trunc(position/10) + 1) 
| eval x = position%10 + 1 
| eval health = case(lenSample&amp;lt;20,"Okay",lenSample&amp;lt;30,"Caution",lenSample&amp;lt;40,"Concern",lenSample&amp;gt;=0,"Critical") 
| table health x y lang
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 25 Nov 2019 20:49:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489395#M136707</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-11-25T20:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489396#M136708</link>
      <description>&lt;P&gt;OK, I am working with Pie Charts and Trellis now that I &lt;EM&gt;finally&lt;/EM&gt; figured out how to make the drilldown work. There are 2 only-documented-one-place tokens and another not-documented-anywhere one. I discovered these by copying my dashboard into the Dashboard Examples app and using &amp;lt;form script="event_token_browser.js"&amp;gt;. For any of you struggling with dashboard tokens, this is a &lt;EM&gt;MUST HAVE&lt;/EM&gt; tool:&lt;BR /&gt;.../en-US/app/simple_xml_examples/custom_event_tokens&lt;/P&gt;&lt;P&gt;They should get documented other places besides&lt;BR /&gt;the one place that I found 2 of them:&lt;BR /&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.0/Viz/VisualizationTrellis" target="_blank" rel="noopener"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.0/Viz/VisualizationTrellis&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;$trellis.split.&amp;lt;trellis_field_name&amp;gt;$
$trellis.name$
$trellis.value$&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Jan 2023 20:06:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489396#M136708</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2023-01-09T20:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489397#M136709</link>
      <description>&lt;P&gt;The idea is to have something that is &lt;CODE&gt;future-proof&lt;/CODE&gt; such that if I add a new &lt;CODE&gt;thing&lt;/CODE&gt; that they new &lt;CODE&gt;thing&lt;/CODE&gt; shows up as a new visualization element without me having to do anything, kind of like when a new &lt;CODE&gt;Service&lt;/CODE&gt; is defined in &lt;CODE&gt;ITSI&lt;/CODE&gt; and it magically shows up on the &lt;CODE&gt;Service Analyzer&lt;/CODE&gt; page.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 17:13:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489397#M136709</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-12-03T17:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489398#M136710</link>
      <description>&lt;P&gt;@woodcock The answer was up-voted, but not accepted. Oversight?&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 17:47:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489398#M136710</guid>
      <dc:creator>efavreau</dc:creator>
      <dc:date>2019-12-31T17:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489399#M136711</link>
      <description>&lt;P&gt;@woodcock Good find. Here's a tip: Provided one has the Dashboard Examples app already installed, one can leave their dashboard where ever they want, and pull resources from other installed apps. So that JavaScript can be pulled from its app, like this:&lt;BR /&gt;
&lt;CODE&gt;&amp;lt;form script="simple_xml_examples:event_token_browser.js"&amp;gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 17:49:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489399#M136711</guid>
      <dc:creator>efavreau</dc:creator>
      <dc:date>2019-12-31T17:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489400#M136712</link>
      <description>&lt;P&gt;None of the answers works for me so I am hoping for another answer.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 18:07:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489400#M136712</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-12-31T18:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get 100ish Greeen/Yellow/Red circles as tightly as possible in a visualization?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489401#M136713</link>
      <description>&lt;P&gt;@woodcock  how about this answer: &lt;A href="https://answers.splunk.com/answers/529004/is-there-a-way-to-display-more-than-20-charts-at-a.html#answer-816673"&gt;https://answers.splunk.com/answers/529004/is-there-a-way-to-display-more-than-20-charts-at-a.html#answer-816673&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2020 18:43:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-best-way-to-get-100ish-Greeen-Yellow-Red-circles-as/m-p/489401#M136713</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-05-26T18:43:44Z</dc:date>
    </item>
  </channel>
</rss>

