Deployment Architecture

Splunk DB Connect 1: How to create a search form that runs a dbquery when username is a variable?

abovebeyond
Communicator

Hi,

I'm trying to create a search form that runs a dbquery when username is a variable.

I tried with this code without a success:

<form>
  <label> Users </label>
  <description/>

  <searchTemplate>
| dbquery "testdb" "select * from [vw_Getusers] 
Where username=$username$"
  </searchTemplate>


  <fieldset autoRun="True">


    <input type="text" token="username">
      <label>username</label>
      <default>admin</default>
      <suffix>*</suffix>
    </input>


    <input type="time" searchWhenChanged="true">
      <default>
        <earliestTime>-24h@h</earliestTime>
        <latestTime>now</latestTime>
      </default>
    </input>

  </fieldset>

  <row>
    <panel>

      <table>
        <option name="showPager">true</option>
        <option name="count">20</option>
      </table>
    </panel>
  </row>
</form>

Where is it failing?
Thanks

0 Karma
1 Solution

abovebeyond
Communicator

now its working, using the following code

<form>
  <label> Users </label>
  <description/>
  <fieldset>

   <input type="text" token="username">
     <label>Enter the value of Username</label>
   </input>
  </fieldset>

   <searchTemplate>
 | dbquery "testdb" "selectfrom [vw_Getusers] 
Where username='$username$'" 
     order by id desc 
   </searchTemplate>

  <row>
    <panel>
      <table>
        <option name="showPager">true</option>
        <option name="count">20</option>
      </table>
    </panel>
  </row>
</form>

View solution in original post

0 Karma

abovebeyond
Communicator

now its working, using the following code

<form>
  <label> Users </label>
  <description/>
  <fieldset>

   <input type="text" token="username">
     <label>Enter the value of Username</label>
   </input>
  </fieldset>

   <searchTemplate>
 | dbquery "testdb" "selectfrom [vw_Getusers] 
Where username='$username$'" 
     order by id desc 
   </searchTemplate>

  <row>
    <panel>
      <table>
        <option name="showPager">true</option>
        <option name="count">20</option>
      </table>
    </panel>
  </row>
</form>
0 Karma
Get Updates on the Splunk Community!

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...