Hi ITWhisperer, I am again facing the same Issue. Its like I have select last 7 days means 15th to 21st september. I have no data for 22nd September that is 0 as of today and 21st September is also 0 (yesterday)so in that case. I want the TimeOut panel to display the value of 20th september that is 1903 but its displaying september15 value and its not showing any trend indicator. In short I want if I select last 7 days and data is only available suppose till 19th September. Then in that case the TimeOut panel should display the value of 19th september and the percentage trend should show the difference between 15th and 19th. Previously by the query you provided this one(BELOW one)It was showing the correct value always for the timeout panel but its always calculating the trend of last two days only . <query>index="ABC" sourcetype=XYZTimeout $OrgName$ | bin span=1d _time |stats count by _time</query> I have attached the screenshots . Can you guide me on this: Below is my latest XML Code . <input type="time" token="field1" searchWhenChanged="true"> <label>Date/Time</label> <default> <earliest>-7d@d</earliest> <latest>@d</latest> </default> </input> </fieldset> <row> <panel> <single> <title>TIMEOUT</title> <search> <query>index="ABC" sourcetype=XYZ Timeout $OrgName$ | bin span=1d _time | stats count by _time| addinfo | eval first=relative_time(info_min_time,"@d") | eval last=relative_time(info_max_time-1,"@d") | eval prev=last-(60*60*24) | eventstats last(count) as lastcount | where _time = first OR (_time = last AND lastcount > 0) OR (_time = prev AND lastcount = 0) | fields _time count </query> <earliest>$field1.earliest$</earliest> <latest>$field1.latest$</latest> </search> <option name="colorBy">value</option> <option name="drilldown">all</option> <option name="height">100</option> <option name="numberPrecision">0</option> <option name="rangeValues">[0,10,25,40]</option> <option name="trendDisplayMode">percent</option> <option name="unit"></option> <option name="rangeColors">["0xFF0000","0xFF0000","0xFF0000","0xFF0000","0xFF0000"]</option> <option name="useColors">1</option> <option name="showSparkline">1</option> <option name="trendDisplayMode">percent</option> <drilldown> <set token="show_panel3">true</set> <set token="selected_value3">$click.value$</set> </drilldown> </single> </panel>
... View more