Dashboards & Visualizations

Search drilldown - paging

mhaurosh
Explorer

we use 'HiddenSearch' with 'ConvertToIntention' to display results from the 2nd search in the same view.

How can we support paging for the results of the 2nd search?

Below is the view:


    
      
        sourcetype=ib:dhcp:lease_history index=ib_dhcp_lease_history | rename host as "Member", ACTION as "Action", LEASE_IP as "Lease IP" | table _time, Member, Action, "Lease IP"
    
        
          true
          false
          
            results
            
            all
            
            
                      sourcetype=ib:dhcp:lease_history index=ib_dhcp_lease_history | rename host as "Member", ACTION as "Action", LEASE_IP as "Lease IP" | table _time, Member, Action, "Lease IP"
    
    
                      
                        
                          addterm
                          
                            $click.value2$
                          
                         
    
                
                
                  results
                  
                DHCP Lease History for LEASE IP=$click.value2$
                  
                 
    
                        
                       
             
         
    
           
          
          
            addinfo | eval TUPDATE=strftime(info_search_time, "%Y-%m-%d %H:%M:%S %Z")
            
              TUPDATE
              Last Updated:
            
          
        
      
    

Thanks!

Michael

Tags (1)

sideview
SplunkTrust
SplunkTrust

Well you really just have to wrap your SimpleResultsTable module in a Paginator module.

So turn this:

<module name="SimpleResultsTable"/></module> 

into this:

<module name="Paginator">
  <param name="entityName">results</param>
  <param name="maxPages">10</param>
  <module name="SimpleResultsTable"/></module> 
</module>

and your table will get working page links above it.

mhaurosh
Explorer

It works. Thank you!

0 Karma
Get Updates on the Splunk Community!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...