<?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 add a text box in a dashboar directly in a panel in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486454#M45960</link>
    <description>&lt;P&gt;hi&lt;BR /&gt;
a text input from "add entry" menu in the dashboard&lt;/P&gt;</description>
    <pubDate>Thu, 26 Sep 2019 15:15:22 GMT</pubDate>
    <dc:creator>jip31</dc:creator>
    <dc:date>2019-09-26T15:15:22Z</dc:date>
    <item>
      <title>How to add a text box in a dashboard directly in a panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486452#M45958</link>
      <description>&lt;P&gt;hi&lt;/P&gt;
&lt;P&gt;Is it possible to add an text box in the tags below please??&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&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;
    &amp;lt;/query&amp;gt;
          &amp;lt;/table&amp;gt;
        &amp;lt;/panel&amp;gt;
      &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 May 2021 14:57:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486452#M45958</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2021-05-26T14:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to add a text box in a dashboar directly in a panel</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486453#M45959</link>
      <description>&lt;P&gt;Hi jip31,&lt;BR /&gt;
what do you mean with "text box": &lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;a text input,&lt;/LI&gt;
&lt;LI&gt;a fixed text,&lt;/LI&gt;
&lt;LI&gt;a panel that display a search result as a text value,&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;?&lt;/P&gt;

&lt;P&gt;In first case 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; ) how to insert an input ibox n a panel.&lt;BR /&gt;
In the second case, you have to insert an html tag in a panel (see the Splunk Dashboard Examples to do this).&lt;BR /&gt;
In the third case, you have to create a search and display it using a Single Value Panel.&lt;/P&gt;

&lt;P&gt;Bye-.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 14:52:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486453#M45959</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-09-26T14:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to add a text box in a dashboar directly in a panel</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486454#M45960</link>
      <description>&lt;P&gt;hi&lt;BR /&gt;
a text input from "add entry" menu in the dashboard&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 15:15:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486454#M45960</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-09-26T15:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to add a text box in a dashboar directly in a panel</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486455#M45961</link>
      <description>&lt;P&gt;@jip31 are you looking for something like the following:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Panel with Text Box and Table&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;&amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;input type="text" token="tokText" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;tokText&amp;lt;/label&amp;gt;
        &amp;lt;default&amp;gt;log_level!=INFO&amp;lt;/default&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt; index=_internal sourcetype=splunkd earliest=-1h@h latest=now $tokText$
| timechart count by component
          &amp;lt;/query&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;line&amp;lt;/option&amp;gt;
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Sep 2019 15:28:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486455#M45961</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-09-26T15:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to add a text box in a dashboar directly in a panel</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486456#M45962</link>
      <description>&lt;P&gt;Hi jip31,&lt;BR /&gt;
If you need to insert a text box input in a panel, see in the Splunk Dashboard Examples App.&lt;BR /&gt;
in few words:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel&amp;gt;
   &amp;lt;input type="text" token="limit" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Enter an integer N:&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;5&amp;lt;/default&amp;gt;
   &amp;lt;/input&amp;gt;
   &amp;lt;event&amp;gt;
      &amp;lt;title&amp;gt;_Internal Top 3&amp;lt;/title&amp;gt;
       &amp;lt;searchString&amp;gt;index=_internal  | head 3&amp;lt;/searchString&amp;gt;
       &amp;lt;earliestTime&amp;gt;$time_range2.earliest$&amp;lt;/earliestTime&amp;gt;
       &amp;lt;latestTime&amp;gt;$time_range2.latest$&amp;lt;/latestTime&amp;gt;
       &amp;lt;option name="maxLines"&amp;gt;5&amp;lt;/option&amp;gt;
       &amp;lt;option name="raw.drilldown"&amp;gt;full&amp;lt;/option&amp;gt;
       &amp;lt;option name="rowNumbers"&amp;gt;0&amp;lt;/option&amp;gt;
       &amp;lt;option name="type"&amp;gt;list&amp;lt;/option&amp;gt;
       &amp;lt;option name="count"&amp;gt;5&amp;lt;/option&amp;gt;
    &amp;lt;/event&amp;gt;
 &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 15:30:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-text-box-in-a-dashboard-directly-in-a-panel/m-p/486456#M45962</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-09-26T15:30:13Z</dc:date>
    </item>
  </channel>
</rss>

