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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...