Hi Marco,
Unfortunately, that is not possible within one map object (due to the filters). But here are the map objects summarized for Down, Acknowledged and Partial Down:
Put them on the core server (in a ".htm" document) under "C:\Program Files (x86)\PRTG Network Monitor\webroot\mapobjects\"
They will then look like:
Down
<!--Data Tables (Custom): DOWN Devices-->
<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">
<#table tableid="devices"
id="<@objectid>"
content="devices"
columns="probegroupdevice,device,location,downsens"
sortby="-downsens"
infoheader="false"
links="true"
sortable="false"
tabletitle="DOWN Devices (@@)"
filter_downsens="@neq(0)"
>
</div>
<#mapobject type="htmlafter" subid="<@subid>">
</div>
Acknowledged
<!--Data Tables (Custom): Acknowledged Devices-->
<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">
<#table tableid="devices"
id="<@objectid>"
content="devices"
columns="probegroupdevice,device,location,downacksens"
sortby="-downacksens"
infoheader="false"
links="true"
sortable="false"
tabletitle="Acknowledged Devices (@@)"
filter_downacksens="@neq(0)"
>
</div>
<#mapobject type="htmlafter" subid="<@subid>">
</div>
Partial Down
<!--Data Tables (Custom): Partial Down Devices-->
<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">
<#table tableid="devices"
id="<@objectid>"
content="devices"
columns="probegroupdevice,device,location,partialdownsens"
sortby="-partialdownsens"
infoheader="false"
links="true"
sortable="false"
tabletitle="Partial Down Devices (@@)"
filter_partialdownsens="@neq(0)"
>
</div>
<#mapobject type="htmlafter" subid="<@subid>">
</div>
Add comment