<?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: Is there a way to use radio buttons to select a range of results/values? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417902#M27518</link>
    <description>&lt;P&gt;You could use a search command like &lt;CODE&gt;accum&lt;/CODE&gt; to number the lines and allow you to further your search. &lt;/P&gt;

&lt;P&gt;For example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your search... | eval number=1 | accum number | where number &amp;lt; 100 AND number &amp;gt; 0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This should look like this&lt;/P&gt;

&lt;P&gt;1 MAC1&lt;BR /&gt;
2 MAC2&lt;BR /&gt;
3 MAC3&lt;BR /&gt;
...&lt;BR /&gt;
900 MAC900&lt;/P&gt;

&lt;P&gt;This allows you to pick which range you want to send over and ensure its less than 120.&lt;/P&gt;</description>
    <pubDate>Thu, 28 Feb 2019 17:43:56 GMT</pubDate>
    <dc:creator>integratorz</dc:creator>
    <dc:date>2019-02-28T17:43:56Z</dc:date>
    <item>
      <title>Is there a way to use radio buttons to select a range of results/values?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417901#M27517</link>
      <description>&lt;P&gt;Good morning Splunkers!&lt;/P&gt;

&lt;P&gt;I need help sorting through a list of MAC Addresses. I have a dashboard that lists them in a drilldown table. I have some list of 900 MAC Addresses and using the command below helps me pass the search results to another instance of Splunk to insert them into a search.&lt;/P&gt;

&lt;P&gt;However, I am getting 414 errors for the URI being too long if there are more than 120 MAC Addresses used.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval MAC_UNIT=replace(MacAddress, "(\w{2})(\w{2})(\w{2})(\w{2})(\w{2})(\w{2})", "\1:\2:\3:\4:\5:\6") 
| fields MAC_UNIT 
| format
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;My question: is there a way to select a range of values/results? I'd like to use radio buttons to select results 0-100, 101-200, 201-300, etc.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 15:29:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417901#M27517</guid>
      <dc:creator>jkcadaing</dc:creator>
      <dc:date>2019-02-28T15:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to use radio buttons to select a range of results/values?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417902#M27518</link>
      <description>&lt;P&gt;You could use a search command like &lt;CODE&gt;accum&lt;/CODE&gt; to number the lines and allow you to further your search. &lt;/P&gt;

&lt;P&gt;For example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your search... | eval number=1 | accum number | where number &amp;lt; 100 AND number &amp;gt; 0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This should look like this&lt;/P&gt;

&lt;P&gt;1 MAC1&lt;BR /&gt;
2 MAC2&lt;BR /&gt;
3 MAC3&lt;BR /&gt;
...&lt;BR /&gt;
900 MAC900&lt;/P&gt;

&lt;P&gt;This allows you to pick which range you want to send over and ensure its less than 120.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 17:43:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417902#M27518</guid>
      <dc:creator>integratorz</dc:creator>
      <dc:date>2019-02-28T17:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to use radio buttons to select a range of results/values?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417903#M27519</link>
      <description>&lt;P&gt;In the dashboard, you would probably want to create a radio button (to simulate range of MAC's using patterns of mac address). Alternatively, if you can have them in a lookuptable with macaddress, id , where id is from 1 to 900 and macaddress is your macaddr. In the drill-down you can look for macaddress from id=1 to id&amp;lt;99 etc..&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 18:07:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417903#M27519</guid>
      <dc:creator>lakshman239</dc:creator>
      <dc:date>2019-02-28T18:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to use radio buttons to select a range of results/values?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417904#M27520</link>
      <description>&lt;P&gt;Sweet! This helps give them a unique number aka ID and I can use change conditions on the backend and play around with tokens to get the results I need! Thanks a bunch!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 19:16:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417904#M27520</guid>
      <dc:creator>jkcadaing</dc:creator>
      <dc:date>2019-02-28T19:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to use radio buttons to select a range of results/values?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417905#M27521</link>
      <description>&lt;P&gt;Any time @jkcadaing! Best of luck and Happy Splunking!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 19:22:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-use-radio-buttons-to-select-a-range-of-results/m-p/417905#M27521</guid>
      <dc:creator>integratorz</dc:creator>
      <dc:date>2019-02-28T19:22:25Z</dc:date>
    </item>
  </channel>
</rss>

