I have the following xml
<module name="HiddenSearch" layoutPanel="panel_row2_col1" group="XXX" autoRun="True">
<param name="search">apache log search method=get OR method=post | eval responseStatus=case(match(status,"2\d\d"),"OK",match(status,"3\d\d"),"OK",match(status,"4\d\d"),"ERROR",match(status,"5\d\d"),"ERROR") </param>
<param name="earliest">-30m@m</param>
<module name="HiddenPostProcess" layoutPanel="panel_row2_col1_grp1">
<param name="search">timechart count by status</param>
<module name="HiddenChartFormatter">
<param name="charting.chart">column</param>
<param name="charting.chart.stackMode">stacked</param>
<param name="charting.legend.placement">bottom</param>
<module name="JobProgressIndicator"/>
<module name="FlashChart">
<param name="width">100%</param>
<param name="enableResize">True</param>
<module name="ConvertToDrilldownSearch">
<module name="ViewRedirector">
<param name="viewTarget">flashtimeline</param>
</module>
</module>
<module name="ViewRedirectorLink">
<param name="viewTarget">flashtimeline</param>
</module>
</module>
</module>
</module>
<module name="HiddenPostProcess" layoutPanel="panel_row2_col1_grp2">
<param name="search">top responseStatus | where match(responseStatus,"ERROR") | gauge percent 0 5 10 100</param>
<module name="HiddenChartFormatter">
<param name="charting.chart">fillerGauge</param>
<param name="charting.chart.style">shiny</param>
<param name="charting.chart.orientation">x</param>
<param name="charting.chart.usePercentageRange">true</param>
<param name="charting.chart.usePercentageValue">true</param>
<module name="JobProgressIndicator"/>
<module name="FlashChart">
<param name="width">100%</param>
<param name="enableResize">False</param>
<module name="ConvertToDrilldownSearch">
<module name="ViewRedirector">
<param name="viewTarget">flashtimeline</param>
</module>
</module>
</module>
<module name="ViewRedirectorLink">
<param name="viewTarget">flashtimeline</param>
</module>
</module>
</module>
</module>
What happens is that the gauge from TOP is correctly displayed, but the timechart only gets 5 minutes of data. It should be displaying all 30 minutes of data. Any suggestions?
ETA: If you change the timechart to chart count by _time then the chart will only display a 5 minute graph, vs a 30 minute graph with 5 minutes of data with timechart.
... View more