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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...