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!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...