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!

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 ...