<?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: Status Matrix Custom Viz Documentation and Scaling Radius in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Status-Matrix-Custom-Viz-Documentation-and-Scaling-Radius/m-p/440904#M54141</link>
    <description>&lt;P&gt;There is the sample test data in the release note. Save it to csv file and get it indexed into splunk.&lt;BR /&gt;
build_no,case1,case2,case3,radius1,radius2,radius3&lt;BR /&gt;
467,1,1,0,2,4,2&lt;BR /&gt;
468,1,1,0,2,4,2&lt;BR /&gt;
469,,1,0,3,5,3&lt;BR /&gt;
470,0,1,,3,5,3&lt;BR /&gt;
471,,1,1,4,4,4&lt;BR /&gt;
472,0,0,1,4,4,4&lt;/P&gt;

&lt;P&gt;Then run SPL:  index=xxxx | table build_no case1 radius1 | sort build_no&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 23:42:26 GMT</pubDate>
    <dc:creator>jzhang_splunk</dc:creator>
    <dc:date>2020-09-29T23:42:26Z</dc:date>
    <item>
      <title>Status Matrix Custom Viz Documentation and Scaling Radius</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Status-Matrix-Custom-Viz-Documentation-and-Scaling-Radius/m-p/440902#M54139</link>
      <description>&lt;P&gt;There doesn't seem to be any documentation for how to use this application. I am interested in applying the scaling radius feature but I don't see an explanation of how to use it. Any insights would be appreciated. &lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 17:35:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Status-Matrix-Custom-Viz-Documentation-and-Scaling-Radius/m-p/440902#M54139</guid>
      <dc:creator>loren3737</dc:creator>
      <dc:date>2019-03-14T17:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Status Matrix Custom Viz Documentation and Scaling Radius</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Status-Matrix-Custom-Viz-Documentation-and-Scaling-Radius/m-p/440903#M54140</link>
      <description>&lt;P&gt;@loren3737 can you please try the following example. &lt;CODE&gt;Status 0 and 1&lt;/CODE&gt; are used to show &lt;CODE&gt;incomplete (red)&lt;/CODE&gt; or &lt;CODE&gt;complete (in green)&lt;/CODE&gt;. Duration in minute is used as radius for Circles for the Status Matrix custom visualization. (PS: Radius value can be between &lt;CODE&gt;1 to 26&lt;/CODE&gt;).&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/6687i5AB5A58FAD01CCC2/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;Following is the run anywhere dashboard example Simple XML code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Status Matrix Custom Visualization&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;viz type="cuviz_status_matrix.status_matrix"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults 
| eval data="1,1,1,0;10,5,15,5" 
| makemv data delim=";" 
| streamstats count as column 
| mvexpand data 
| makemv data delim="," 
| eval addtocart=mvindex(data,0), ordered=mvindex(data,1), shipped=mvindex(data,2), delivered=mvindex(data,3) 
| table ordernum addtocart ordered shipped delivered 
| transpose header_field=column 
| rename "row 1" as "order1_status", "row 2" as "order1_duration"&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="cuviz_status_matrix.status_matrix.after_label"&amp;gt;(mins)&amp;lt;/option&amp;gt;
        &amp;lt;option name="cuviz_status_matrix.status_matrix.before_label"&amp;gt;Duration:&amp;lt;/option&amp;gt;
        &amp;lt;option name="cuviz_status_matrix.status_matrix.enable_scalable_radius"&amp;gt;true&amp;lt;/option&amp;gt;
        &amp;lt;option name="cuviz_status_matrix.status_matrix.max_radius"&amp;gt;15&amp;lt;/option&amp;gt;
        &amp;lt;option name="cuviz_status_matrix.status_matrix.min_radius"&amp;gt;5&amp;lt;/option&amp;gt;
        &amp;lt;option name="cuviz_status_matrix.status_matrix.radius"&amp;gt;15&amp;lt;/option&amp;gt;
        &amp;lt;option name="cuviz_status_matrix.status_matrix.show_flaky_metrics"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&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;/viz&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, 14 Mar 2019 19:36:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Status-Matrix-Custom-Viz-Documentation-and-Scaling-Radius/m-p/440903#M54140</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-03-14T19:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Status Matrix Custom Viz Documentation and Scaling Radius</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Status-Matrix-Custom-Viz-Documentation-and-Scaling-Radius/m-p/440904#M54141</link>
      <description>&lt;P&gt;There is the sample test data in the release note. Save it to csv file and get it indexed into splunk.&lt;BR /&gt;
build_no,case1,case2,case3,radius1,radius2,radius3&lt;BR /&gt;
467,1,1,0,2,4,2&lt;BR /&gt;
468,1,1,0,2,4,2&lt;BR /&gt;
469,,1,0,3,5,3&lt;BR /&gt;
470,0,1,,3,5,3&lt;BR /&gt;
471,,1,1,4,4,4&lt;BR /&gt;
472,0,0,1,4,4,4&lt;/P&gt;

&lt;P&gt;Then run SPL:  index=xxxx | table build_no case1 radius1 | sort build_no&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:42:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Status-Matrix-Custom-Viz-Documentation-and-Scaling-Radius/m-p/440904#M54141</guid>
      <dc:creator>jzhang_splunk</dc:creator>
      <dc:date>2020-09-29T23:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Status Matrix Custom Viz Documentation and Scaling Radius</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Status-Matrix-Custom-Viz-Documentation-and-Scaling-Radius/m-p/440905#M54142</link>
      <description>&lt;P&gt;Thanks, this is what I was looking for. This is a very helpful example. The only thing that I'm still unsure about is how to have radius values that represent the duration of how long a certain case has remained the same. I have values of 1/0 for online/offline. &lt;/P&gt;

&lt;P&gt;My current search takes care of all of the cases but how would I append the data of how long it has been since they changed?&lt;/P&gt;

&lt;P&gt;BaseSearch | &lt;BR /&gt;
| eval {rtu}=case(state LIKE "online",1,state LIKE "offline",0,state LIKE "unknown",0,state LIKE "failed",0)&lt;BR /&gt;
| eval side="Status"&lt;BR /&gt;
| fields - _time rtu state path &lt;BR /&gt;
| stats values(*) as * by side&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 21:43:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Status-Matrix-Custom-Viz-Documentation-and-Scaling-Radius/m-p/440905#M54142</guid>
      <dc:creator>loren3737</dc:creator>
      <dc:date>2019-03-14T21:43:17Z</dc:date>
    </item>
  </channel>
</rss>

