All Apps and Add-ons

How do I view more?

ilove275
Path Finder
<view template="dashboard.html">
<module name="SideviewUtils" layoutPanel="appHeader" />
    <module name="URLLoader" layoutPanel="panel_row1_col1" autoRun="True">
        <module name="Search" layoutPanel="panel_row1_col1" autoRun="True">
            <param name="search"> A|B|C| </param>
            <param name="earliest">-15m</param>
            <param name="latest">now</param>
            <module name="SimpleResultsTable">
                <module name="ConvertToDrilldownSearch">
                    <module name="ViewRedirector">
                    <param name="viewTarget">flashtimeline</param>
                </module>
            </module>
        </module>
    </module>
</module>
</view>

This xml just 10 count But i want more count(all view count)

sideview
SplunkTrust
SplunkTrust

Well the SimpleResultsTable module takes a param called 'count'.
You can find the params for each module in the documentation, ( http://docs.splunk.com/Documentation/Splunk/latest/Developer/ModuleReference )

or by going to http://<your host and port>/modules in your Splunk instance.

But here you go. I also cleaned up your indentation and removed the extra 'autoRun="True"' attribute.

<view template="dashboard.html">
    <module name="SideviewUtils" layoutPanel="appHeader" />
    <module name="URLLoader" layoutPanel="panel_row1_col1" autoRun="True">
        <module name="Search">
            <param name="search"> A|B|C| </param>
            <param name="earliest">-15m</param>
            <param name="latest">now</param>
            <module name="SimpleResultsTable">
                <param name="count">100</param>
                <module name="ConvertToDrilldownSearch">
                    <module name="ViewRedirector">
                        <param name="viewTarget">flashtimeline</param>
                    </module>
                </module>
            </module>
        </module>
    </module>
</view>
0 Karma
Get Updates on the Splunk Community!

Splunk AI Assistant for SPL | Key Use Cases to Unlock the Power of SPL

Splunk AI Assistant for SPL | Key Use Cases to Unlock the Power of SPL  The Splunk AI Assistant for SPL ...

Buttercup Games: Further Dashboarding Techniques (Part 5)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Customers Increasingly Choose Splunk for Observability

For the second year in a row, Splunk was recognized as a Leader in the 2024 Gartner® Magic Quadrant™ for ...