Splunk Dev

Duplicate values causing conflict - populate radio menu button

LNebout
Path Finder

Hello,
I have a problem on xml code.
I try to populate a radio menu button. I have all good entries but every time i receive this message : Duplicate values causing conflict
code :

<input type="radio" token="sourcetype1">
        <label>Source</label>
                    <search>
                              <query>host=WIKI sourcetype="secure*.log"</query>
                   </search>
        <fieldForLabel>sourcetype</fieldForLabel>
        <fieldForValue>sourcetype</fieldForValue>
</input>

I think the problem is with fieldForLabel and fieldForValue : same name
How can there values renamed ?
Best regards,
Laurent

Tags (1)
1 Solution

niketn
Legend

The is not because of Field For Label and Field For Value being the same. They can be the same search field extracted by you. The reason why you are getting duplicates is because you have multiple events with same sourcetype returned. Out of the several ways you should pick anyone to pull only unique sourcetype. For example the following should give unique sourcetype through dedup command.

 <input type="radio" token="sourcetype1">
         <label>Source</label>
                     <search>
                               <query>host=WIKI sourcetype="secure*.log"
| dedup sourcetype
| sort sourcetype
| table sourcetype</query>
                    </search>
         <fieldForLabel>sourcetype</fieldForLabel>
         <fieldForValue>sourcetype</fieldForValue>
 </input>

The purpose of Label and Value fields being different is to allow you to Display something meaningful to users through label and use hidden Value for performing actual search. For example if you search returns AccountName and AccountNumber. You can choose AccountName as Label and AccountNumber as Value.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

LNebout
Path Finder

Thanks niketnilay ^_^
That works perfectly !!!!
Laurent

0 Karma

DalJeanis
Legend

Please accept the answer that worked, and move this "answer" to be a comment on that answer.

0 Karma

niketn
Legend

The is not because of Field For Label and Field For Value being the same. They can be the same search field extracted by you. The reason why you are getting duplicates is because you have multiple events with same sourcetype returned. Out of the several ways you should pick anyone to pull only unique sourcetype. For example the following should give unique sourcetype through dedup command.

 <input type="radio" token="sourcetype1">
         <label>Source</label>
                     <search>
                               <query>host=WIKI sourcetype="secure*.log"
| dedup sourcetype
| sort sourcetype
| table sourcetype</query>
                    </search>
         <fieldForLabel>sourcetype</fieldForLabel>
         <fieldForValue>sourcetype</fieldForValue>
 </input>

The purpose of Label and Value fields being different is to allow you to Display something meaningful to users through label and use hidden Value for performing actual search. For example if you search returns AccountName and AccountNumber. You can choose AccountName as Label and AccountNumber as Value.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

niketn
Legend

@LNebout, Kindly accept the answer if this solved the issue you were facing. If not please let me know.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

LNebout
Path Finder

@niketnilay, sorry I had forgot to accept the answer ('^_^)

0 Karma

LNebout
Path Finder

@niketnilay
Works perfectly,
thanks

0 Karma

niketn
Legend

@LNebout ... I think you missed accepting the answer 🙂 You should choose Accept Answer option from bolt icon next to my Answer (only you will have that option since you posted the question).

In any case glad that the issue is actually resolved.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...