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

Dashboard Maps Show Information in Connectionline.

Votes:

1

I am creating a map and would like show sensor name and last value in a popup when the mouse is passed on under the connectionline.

Connectionline on-mouseover (tooltip - ptip - popover)

connectionline dashboard maps mouseover popover popup ptip tooltips

Created on Jul 16, 2015 4:07:19 PM



Best Answer

Accepted Answer

Votes:

5

To view the last intervals of traffic interfaces I added a custom tooltip .

Items added to the Status Icons ( Tooltip , linklong , animate - flicker )

<- Status Icons : Status and Last Value ( transparen ) Custom Sensor ->

<div class="map_object map_icon map_icon_large mapicon_status_transparent" id="<@itemid>" objectid="<@objectid>" subid="<@subid>" style="<#mapobject type="topleftcoordinates" subid="<@subid>" mode="<@editmode>">">
  <#mapobject type="objectgrip" mode="<@editmode>">
  <#mapobject type="htmlbefore" subid="<@subid>">
  
  <a href="/sensor.htm?id=<@objectid>" show="linklong">
  
 
 <div  data-toggle="tooltip"  data-placement="top"
  title=" <b> Switch: <#objectproperty  name="ParentDevice" show="text" id="<@objectid>">
  <p>Interface: <#objectproperty name="Name" id="<@objectid>">
  <p>Tráfego: <#objectstatus name="lastvalue" id="<@objectid>"></b>"> 
	
    <div class="animate-flicker"> <#objectstatus name="downsens"  id="<@objectid>"> 
    <#objectstatus name="warnsens" id="<@objectid>"> </div>
	<#objectstatus name="partialdownsens"  id="<@objectid>">
    <#objectstatus name="downacksens"  id="<@objectid>">
    <#objectstatus name="upsens"  id="<@objectid>">
    <#objectstatus name="pausedsens" id="<@objectid>">
    <#objectstatus name="unusualsens" id="<@objectid>">
    <#objectstatus name="undefinedsens" id="<@objectid>">
	
  <#mapobject type="htmlafter" subid="<@subid>"> </a>
  <#mapobject type="htmlafter" subid="<@subid>">
</div>
</div>

http://i.imgur.com/jqaLGAp.jpg?1

Created on Aug 10, 2015 7:35:05 PM

Last change on Nov 9, 2015 12:12:27 PM by  Torsten Lindner [Paessler Support]



7 Replies

Votes:

0

Hi,

Sorry, that won't work - you'll need to put the last value object beneath the line,
that's how it would work. No popover though :)

Created on Jul 20, 2015 8:55:01 AM by  Stephan Linke [Paessler Support]



Accepted Answer

Votes:

5

To view the last intervals of traffic interfaces I added a custom tooltip .

Items added to the Status Icons ( Tooltip , linklong , animate - flicker )

<- Status Icons : Status and Last Value ( transparen ) Custom Sensor ->

<div class="map_object map_icon map_icon_large mapicon_status_transparent" id="<@itemid>" objectid="<@objectid>" subid="<@subid>" style="<#mapobject type="topleftcoordinates" subid="<@subid>" mode="<@editmode>">">
  <#mapobject type="objectgrip" mode="<@editmode>">
  <#mapobject type="htmlbefore" subid="<@subid>">
  
  <a href="/sensor.htm?id=<@objectid>" show="linklong">
  
 
 <div  data-toggle="tooltip"  data-placement="top"
  title=" <b> Switch: <#objectproperty  name="ParentDevice" show="text" id="<@objectid>">
  <p>Interface: <#objectproperty name="Name" id="<@objectid>">
  <p>Tráfego: <#objectstatus name="lastvalue" id="<@objectid>"></b>"> 
	
    <div class="animate-flicker"> <#objectstatus name="downsens"  id="<@objectid>"> 
    <#objectstatus name="warnsens" id="<@objectid>"> </div>
	<#objectstatus name="partialdownsens"  id="<@objectid>">
    <#objectstatus name="downacksens"  id="<@objectid>">
    <#objectstatus name="upsens"  id="<@objectid>">
    <#objectstatus name="pausedsens" id="<@objectid>">
    <#objectstatus name="unusualsens" id="<@objectid>">
    <#objectstatus name="undefinedsens" id="<@objectid>">
	
  <#mapobject type="htmlafter" subid="<@subid>"> </a>
  <#mapobject type="htmlafter" subid="<@subid>">
</div>
</div>

http://i.imgur.com/jqaLGAp.jpg?1

Created on Aug 10, 2015 7:35:05 PM

Last change on Nov 9, 2015 12:12:27 PM by  Torsten Lindner [Paessler Support]



Votes:

0

Could you add some more details for that? Sounds interesting, but as of right now, it doesn't work correctly. Is some custom CSS missing?

Created on Aug 11, 2015 6:07:49 AM by  Stephan Linke [Paessler Support]



Votes:

2

I added an animation for sensors with status dwon using the class ( animate - flicker )

Paste the data below the file ( styles_custom.css ) .

.withfadeout {
  -webkit-transition: all 10s ease-in-out;
  -moz-transition: all 10s ease-in-out;
  -ms-transition: all 10s ease-in-out;
  -o-transition: all 10s ease-in-out;
  transition: all 10s ease-in-out;
}
@keyframes flickerAnimation { /* flame pulses */
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
.animate-flicker {
    opacity:1;  
    animation: flickerAnimation 5s infinite;
}

Created on Aug 11, 2015 3:04:23 PM

Last change on Aug 11, 2015 3:55:07 PM by  Stephan Linke [Paessler Support]



Votes:

0

Great, thanks!

Created on Aug 11, 2015 3:55:18 PM by  Stephan Linke [Paessler Support]



Votes:

3

http://i.imgur.com/jqaLGAp.jpg?1

Created on Oct 27, 2015 6:24:04 PM



Votes:

0

Neat! :)

Created on Oct 28, 2015 3:53:52 PM by  Stephan Linke [Paessler Support]




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.