What is this?

This knowledgebase contains questions and answers about PRTG Network Monitor and network monitoring in general.

Learn more

PRTG Network Monitor

Intuitive to Use. Easy to manage.
More than 500,000 users rely on Paessler PRTG every day. Find out how you can reduce cost, increase QoS and ease planning, as well.

Free Download

Top Tags


View all Tags

Datentabllen

Votes:

0

Ist es möglich, bei den Datentabellen auf der Map (z. B. alle Fehler-Sensoren, alle Warnungen) einzustellen, welche Infos in der Datentabelle angezeigt werden? Mir würde es z. B. reichen, wenn der Sensorname, Status, letzter Wert und Gerätename angezeigt werden und Spalten wie Priorität, Favorit und Beschreibung nicht.

Vielen Dank!

data-table maps warnings

Created on Dec 3, 2018 9:08:31 AM



2 Replies

Accepted Answer

Votes:

0

Guten Tag,

ja, das ginge. Die Originaldateien liegen im PRTG Installationspfad im Unterordner "webroot/mapobjects".

tableA1.htm wäre die Tabelle für Sensoren im Fehlerzustand, die könnte man so anpassen, im Endeffekt habe ich hier nur die Zeile "Columns" angepasst, sieht dann so aus:

<!--Custom Element: Down sensors-->

<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,status,lastvalue,probegroupdevice"
    sortby="probegroupdevice"
    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>

Die angepasste Datei dann unter anderem Namen im selben Pfad speichern, also z.B. tableA1custom.htm.

Selbes Spiel mit der tableA3.htm, das ist die Tabelle für Sensoren im Warnzustand, ebenfalls mit weniger Spalten/Columns:

<!--Custom Element: Warning sensors-->

<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.tablea3.tabletitle" default="WARNING Sensors (@@@@)" var="tabletitle">
    <#table tableid="sensortable"
    id="<@objectid>"
    content="sensors"
    columns="sensor,status,lastvalue,probegroupdevice"
    sortby="probegroupdevice"
    infoheader="false"
    links="false"
    sortable="false"
    varexpand="tabletitle"
    tabletitle="@tabletitle"
    filter_tags="@tag(<@tagfilterstring>)"
    filter_status="4"
    >
  </div>
  <#mapobject type="htmlafter" subid="<@subid>">
</div>

Auch hier dann wieder mit abweichendem Namen, z.B. tableA3custom.htm abspeichern.

So, im Map Editor haben Sie dann auf der rechten Seite eine neue Kategorie "Custom Element", dort finden Sie die beiden benutzerdefinierten Tabellen.

Freundliche Grüße,

Erhard Mikulik

Created on Dec 3, 2018 12:39:40 PM by  Erhard Mikulik [Paessler Support]

Last change on Dec 3, 2018 2:20:54 PM by  Erhard Mikulik [Paessler Support]



Votes:

0

Vielen Dank, das hat mir sehr geholfen!

Created on Dec 3, 2018 2:16:10 PM




Disclaimer: The information in the Paessler Knowledge Base comes without warranty of any kind. Use at your own risk. Before applying any instructions please exercise proper system administrator housekeeping. You must make sure that a proper backup of all your data is available.