After upgrading to 4.3 our custom forms with a chart component started to show up the following error:
Search did not generate any statistical results.
The table and event component still works with the searchPostProcess statement as expected, only the chart fails.
The following is some example code which fails in splunk 4.3 but worked before.
<form>
<searchTemplate>index=*</searchTemplate>
<label>Test PostProcess</label>
<fieldset>
<input type="time" />
</fieldset>
<row>
<chart>
<title>Test Chart</title>
<searchPostProcess>timechart count</searchPostProcess>
<option name="charting.chart">column</option>
</chart>
</row>
</form>
If i do the the same search directly in the chart component, it works as expected...
<form>
<!--<searchTemplate>index=*</searchTemplate>-->
<label>Test PostProcess</label>
<fieldset>
<input type="time" />
</fieldset>
<row>
<chart>
<title>Test Chart</title>
<searchTemplate>index=* | timechart count</searchTemplate>
<option name="charting.chart">column</option>
</chart>
</row>
</form>
somebody having the same problem? or even know a solution?
... View more