I have found a table on the database here to display downsensors in order from old to new and have been able to also do one from new to old but the problem I have is the table only show 50 entries and I need it to show all as I might have more than 50 down sensors and then I am not able to see the others can somebody maybe assist in what I need to change to have the table display more than 50 entries.

<!--Data Tables: DOWN Sensors (Sorted by old to new)-->

<div class="map_object map_table" id="<@itemid>" objectid="<@objectid>" subid="<@subid>" style="overflow:auto;<#mapobject type="coordinates" subid="<@subid>" mode="<@editmode>">">
  <#mapobject type="objectgrip" mode="<@editmode>">
  <#mapobject type="htmlbefore" subid="<@subid>">
  <#checkobjecttype objecttype="probenode,group,device" nicemessage="true" id="<@objectid>">

  <div class="maptablecontainer" style="overflow:hidden">
    <#lang key="html.mapobjects.tablea1.tabletitle" default="DOWN Sensors (@@@@)" var="tabletitle">
    <#table tableid="sensortable"
    id="<@objectid>"
    content="sensors"
    columns="sensor,probegroupdevice,status,downtimesince,lastvalue,message"
    sortby="downtimesince"
    infoheader="false"
    links="false"
    sortable="false"
    varexpand="tabletitle"
    tabletitle="@tabletitle"
    filter_tags="@tag(<@tagfilterstring>)"
    filter_status="5"
    filter_status="13"
    filter_status="14"
    >
  </div>
  <#mapobject type="htmlafter" subid="<@subid>">
</div>

Article Comments

Could you modify the map object as follows:

    filter_status="13"
    filter_status="14"
    count="100"

...to see if that makes a difference? It might be necessary to restart the PRTG Core Service.


PRTGapi | Feature Requests | WMI Issues | SNMP Issues

Kind regards,
Stephan Linke, Tech Support Team


Mar, 2019 - Permalink

Thanks Stephan will try that ans see what it does.


Mar, 2019 - Permalink

Hi Stephan thanks that resolved my problem I can set it now that way to see all


Mar, 2019 - Permalink