<?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: How to create dashboard which takes multiple(bulk) inputs ? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554436#M157376</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234050"&gt;@splunkerer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is working for me. Please refer my sample XML.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;mutiliput&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="text" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;field1&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" [| makeresults | eval date_second="$field1$" | eval date_second=split(date_second,",") | mvexpand date_second | table date_second] | stats count by date_second&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="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;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Still you to found issue then please share your sample XML as well.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;KV&lt;/P&gt;</description>
    <pubDate>Fri, 04 Jun 2021 08:30:28 GMT</pubDate>
    <dc:creator>kamlesh_vaghela</dc:creator>
    <dc:date>2021-06-04T08:30:28Z</dc:date>
    <item>
      <title>How to create dashboard which takes multiple(bulk) inputs ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554425#M157372</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am creating a dashboard, no matter which input can be used, but need is to paste multiple input into dashboard input and search them in a certain index.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;for example:&lt;/STRONG&gt;&lt;BR /&gt;I want to search comma delimited IP addresses such as&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.1.1.1, 2.2.2.2, 3.3.3.3, 4.4.4.4&amp;nbsp; ---&amp;gt;input format is not a case, I can provide different formatted multiple data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to paste these into input ( no matter which kind) and these will be formatted and created a search in the panel like below.&lt;BR /&gt;&lt;BR /&gt;index=traffic &lt;STRONG&gt;src=1.1.1.1 OR src=2.2.2.2 OR src=3.3.3.3 OR src=4.4.4.4&lt;/STRONG&gt;&lt;BR /&gt;| table _time src dst port&lt;/P&gt;&lt;P&gt;Please recommend how I can do it.&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 07:51:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554425#M157372</guid>
      <dc:creator>splunkerer</dc:creator>
      <dc:date>2021-06-04T07:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to create dashboard which takes multiple(bulk) inputs ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554426#M157373</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234050"&gt;@splunkerer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=traffic [| makeresults | eval src="$tkn_src$" | eval src=split(src,",") | mvexpand src | table src] | table _time src dst port&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My Sample Search :&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=traffic [| makeresults | eval src="1.1.1.1, 2.2.2.2, 3.3.3.3, 4.4.4.4" | eval src=split(src,",") | mvexpand src | table src] | table _time src dst port&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;KV&lt;BR /&gt;▄︻̷̿┻̿═━一&lt;BR /&gt;&lt;BR /&gt;If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 07:51:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554426#M157373</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2021-06-04T07:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to create dashboard which takes multiple(bulk) inputs ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554433#M157375</link>
      <description>&lt;P&gt;Thanks for quick answer, It takes first IP, but not second IP unfortunately. Any idea about the issue?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=traffic&lt;BR /&gt;[| makeresults | eval src="$field1$" | eval src=split(src,",")&lt;BR /&gt;| mvexpand src | table src]&lt;/P&gt;&lt;P&gt;| table _time src dst port&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 08:23:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554433#M157375</guid>
      <dc:creator>splunkerer</dc:creator>
      <dc:date>2021-06-04T08:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to create dashboard which takes multiple(bulk) inputs ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554436#M157376</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234050"&gt;@splunkerer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is working for me. Please refer my sample XML.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;mutiliput&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="text" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;field1&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" [| makeresults | eval date_second="$field1$" | eval date_second=split(date_second,",") | mvexpand date_second | table date_second] | stats count by date_second&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="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;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Still you to found issue then please share your sample XML as well.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;KV&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 08:30:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554436#M157376</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2021-06-04T08:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create dashboard which takes multiple(bulk) inputs ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554441#M157377</link>
      <description>&lt;P&gt;same unfortunately, the first value is taken but not rest of them.&lt;/P&gt;&lt;P&gt;&amp;lt;form&amp;gt;&lt;BR /&gt;&amp;lt;label&amp;gt;mutiliput&amp;lt;/label&amp;gt;&lt;BR /&gt;&amp;lt;fieldset submitButton="false"&amp;gt;&lt;BR /&gt;&amp;lt;input type="text" token="field1"&amp;gt;&lt;BR /&gt;&amp;lt;label&amp;gt;field1&amp;lt;/label&amp;gt;&lt;BR /&gt;&amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;&lt;BR /&gt;&amp;lt;/input&amp;gt;&lt;BR /&gt;&amp;lt;/fieldset&amp;gt;&lt;BR /&gt;&amp;lt;row&amp;gt;&lt;BR /&gt;&amp;lt;panel&amp;gt;&lt;BR /&gt;&amp;lt;table&amp;gt;&lt;BR /&gt;&amp;lt;search&amp;gt;&lt;BR /&gt;&amp;lt;query&amp;gt;index="traffic" [| makeresults | eval src="$field1$" | eval src=split(src,",") | mvexpand src | table src] | table src, dst&amp;lt;/query&amp;gt;&lt;BR /&gt;&amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;&lt;BR /&gt;&amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;&lt;BR /&gt;&amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;&lt;BR /&gt;&amp;lt;/search&amp;gt;&lt;BR /&gt;&amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;/table&amp;gt;&lt;BR /&gt;&amp;lt;/panel&amp;gt;&lt;BR /&gt;&amp;lt;/row&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 08:51:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554441#M157377</guid>
      <dc:creator>splunkerer</dc:creator>
      <dc:date>2021-06-04T08:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create dashboard which takes multiple(bulk) inputs ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554454#M157385</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234050"&gt;@splunkerer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="traffic" src=* [| makeresults | eval src="$field1$" | eval src=split(src,",") | mvexpand src | table src] | table src, ds&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;KV&lt;BR /&gt;▄︻̷̿┻̿═━一&lt;BR /&gt;&lt;BR /&gt;If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 09:44:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554454#M157385</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2021-06-04T09:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create dashboard which takes multiple(bulk) inputs ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554507#M157396</link>
      <description>&lt;P&gt;Thanks a lot, this is working. In the first try, I provided input with space after the comma, so that is why it was not working.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 16:11:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-dashboard-which-takes-multiple-bulk-inputs/m-p/554507#M157396</guid>
      <dc:creator>splunkerer</dc:creator>
      <dc:date>2021-06-04T16:11:02Z</dc:date>
    </item>
  </channel>
</rss>

