Prtgmanual Parte3
Prtgmanual Parte3
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
1861
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Define Channels
The channels of a Sensor Factory sensor are controlled by the Channel Definition text field. Using a
special syntax, you can refer to other sensors' channels, calculate values, and add horizontal lines. You
can define Sensor Factory channels using data from any other sensor's channels on your PRTG core
server.
1862
Make sure that no channel definitions refer to channels of Sensor Factory sensors.
Example
You see a definition of two Sensor Factory sensor channels. Both use the channel() function that
collects data from the channels of other sensors in your monitoring and displays them:
#1:Local Probe Health
channel(1001,0)
#2:Local Traffic Out[kbit]
channel(1004,1)
The first channel of the Sensor Factory sensor (#1) collects data from the Health channel (ID 0) of the
Probe Health sensor (ID 1001) running on the probe device. The second channel (#2) collects data
from the Traffic Out channel (ID 1) of a traffic sensor (ID 1004) measuring the system's local network
card. Both channels are shown together in the Sensor Factory sensor's data tables and graphs.
The basic syntax for a Sensor Factory sensor channel definition looks like this:
#<id>:<name>[<unit>]
<formula>
For each channel, one section is used. A section begins with the number sign (#). Function names in
formulas are not case sensitive.
§ <id> is the ID of the Sensor Factory sensor's channel. It must be a unique number that is greater than
0.
§ <name> is the name of the Sensor Factory sensor's channel (displayed in graphs and tables).
§ [<unit>] is an optional unit description for the Sensor Factory sensor's channel (for example, bytes). If
you do not provide a unit, the Sensor Factory sensor automatically selects a suitable unit string
(recommended).
§ <formula> contains the formula to calculate the Sensor Factory sensor's channel. For the formula, you
can use the following functions: channel() 1863 , min() 1865 , max() 1865 , avg() 1865 , or percent() 1865 .
§ <sensorId> is the ID of the source sensor. It is displayed on the sensor's Overview tab.
§ <channelId> is the ID of the channel of the source sensor. It is displayed in the respective field of the
channel settings 3053 .
1863
Example
channel(2001,2)
This function reads the data from channel ID 2 of the source sensor with the ID 2001.
#1:Sample
channel(2001,2)
This full channel definition reads the data from channel ID 2 of the source sensor with the ID 2001 and
displays it in the first Sensor Factory sensor channel (#1), without any additional calculations.
Example
This full channel definition results in a Sensor Factory sensor that shows a calculation with values
from two channels (channel IDs -1 and 1) of two traffic sensors (sensor IDs 2001 and 1004). The
returned values are subtracted and then multiplied by two.
Channels can be gauge values (for example, ping ms) or delta values (for example, traffic kbit/s). Not all
combinations are allowed in a formula.
When performing percentage calculation, use the percent() Function 1865 to make sure you obtain the
expected values.
§ You cannot add or subtract a delta from a gauge channel (and vice versa).
§ You cannot use a channel of (another) Sensor Factory sensor channel in the formula.
1864
Define Channels: min() and max() Functions
The min() and max() functions return the minimum or maximum of two values. The syntax is:
min(<a>,<b>)
max(<a>,<b>)
Values for <a> and <b> are either numbers or channel() 1863 functions.
Examples
min(10,5)
This function returns 5, because this is the smaller value out of 10 and 5.
min( channel(2001,1),channel(2002,1) )
This function returns the minimum of the values of channel 1 of the source sensor with ID 2001 and
channel 1 of the source sensor with ID 2002.
Values for <a> and <b> are either numbers or channel() 1863 functions.
Examples
avg(20,10)
avg( channel(2001,1),channel(2002,1) )
This function returns the average of channel 1 of the source sensor with ID 2001 and channel 1 of the
source sensor with ID 2002.
§ <source> is the value the percent is calculated for. This is usually a channel() 1863 function.
§ <maximum> is the limit value used for the percent calculation.
1865
§ <unit> is an optional unit the maximum is provided in. You can use constants with this function (see
Define Channels: Constants 1867 below for a list). This can be used for absolute values (for example,
Ping sensors 1693 ) or calculated delta values (for example, traffic sensors). If no unit is provided, 1 is
used.
The sensor adds the unit string % automatically.
Examples
#1:Usage Traffic In
percent(channel(2001,0),100,kilobit)
#2:Usage Traffic Out
percent(channel(2001,1),100,kilobit)
This full channel definition results in a Sensor Factory sensor that shows two channels of a traffic
sensor (sensor ID 2001): Traffic in (channel ID 0) and traffic out (channel ID 1). The Sensor Factory
sensor displays the values % of maximum bandwidth (100 kilobit/second).
#1:Ping %
percent(channel(2002,0),200)
This full channel definition results in a Sensor Factory sensor that shows the Ping Time channel
(channel ID 0) of a Ping sensor (sensor ID 2002). The sensor displays the values as a percentage of
200 ms.
§ <id> is the ID of the Sensor Factory sensor's channel and must be a unique number greater than 1.
Although the Sensor Factory sensor does not show a horizontal line as a channel, the ID has to be
unique.
§ <name> is the name of the Sensor Factory sensor's channel. PRTG does not display this name in
graphs and tables, but you can use it as a comment to describe the nature of the line.
§ [<unit>] is an optional unit description (for example, kbit/s). If you do not provide a unit, PRTG
automatically applies the line to the scale of the first Sensor Factory sensor's channel. If your Sensor
Factory sensor uses different units, provide a unit to make sure the line is added for the right scale.
Enter the unit exactly as shown in your graph's legend. If you enter a unit that does not yet exist in
your graph, a new scale is added automatically.
§ <value> contains a number defining where the line is shown in the graph.
1866
Examples
This channel definition results in a graph that shows a horizontal line at the value of 100 on the ms
scale.
This channel definition results in a graph that shows a horizontal line at the value of 2000 on the kbit/s
scale.
#1:Ping Time
channel(2002,0)
#2:Line at 120ms [ms]
120
This full channel definition results in a Sensor Factory sensor that shows the Ping Time channel
(channel ID 0) of a Ping sensor (sensor ID 2002). Additionally, the sensor graphs show a horizontal
line at 120 ms.
§ one = 1
§ kilo = 1000
§ byte = 1
§ kilobyte = 1024
§ bit = 1/8
§ kilobit = kilo / 8
§ megabit = mega / 8
§ gigabit = giga / 8
§ terabit = tera / 8
1867
Define Sensor Status: status() Function
You can control the status of a Sensor Factory sensor via the Status Definition text field if you enable
the custom formula option in the sensor settings 1858 . Using a special syntax, you can define when the
Sensor Factory sensor changes to the Down status. In all other cases, the sensor is in the Up status.
The syntax is:
status(sensorID) <boolean> status(sensorID)
§ <sensorId> is the ID of the source sensor that you want to check the status of. It is displayed on the
sensor's Overview tab.
§ <boolean> is one of the Boolean operators AND, OR, or NOT. If the resulting expression is true, the
Sensor Factory sensor changes to the Down status.
Examples
This changes the Sensor Factory sensor to the Down status if both source sensors, with IDs 2031
and 2044, are in the Down status. Otherwise the Sensor Factory sensor shows the Up status.
status(2031) OR status(2044)
This changes the Sensor Factory sensor to the Down status if at least one of the source sensors with
ID 2031 or ID 2044 is in the Down status. Otherwise the Sensor Factory sensor shows the Up status.
This changes the Sensor Factory sensor to the Down status if the source sensor with ID 2031 is in
the Down status, but the source sensor with ID 2044 is not in the Down status. Otherwise the Sensor
Factory sensor shows the Up status.
A status() function with NOT has to be connected with AND or OR if it is combined with other
status() functions:
This changes the Sensor Factory sensor to the Down status if both the source sensor with ID 2031
and the source sensor with ID 2044 are in the Down status, or if the source sensor with ID 2051 is in
the Down status. Otherwise the Sensor Factory sensor shows the Up status.
Additionally, the following elements are allowed to perform calculations and comparisons with the values
that are returned by the status functions:
1868
§ Parentheses: ( )
Example: 3 * (2 + 6)
§ Compare: = (equal), <> (not equal), > (greater), < (less), >= (greater or equal), <= (less or equal)
If the comparison resolves to true, the value is 10,000. If false, the value is 0. For delta sensors, the
speed is compared.
Internally, the status() function returns the Downtime channel of the source sensor in hundreds of percent
(10,000 = 100%).
Example
This changes the Sensor Factory sensor to the Down status if at least any two of the source sensors
with IDs 1031, 1032, 1033, or 1034 are in the Down status. Otherwise the Sensor Factory sensor
shows the Up status.
You can also use the status() function in channel definitions 1862 . Using this functionality, it is
possible, for example, to display the numeric status value of source sensors in a Sensor Factory
sensor channel.
§ If you add a Sensor Factory sensor underneath the cluster probe, and in the Sensor Factory formula
you refer to a channel of a source sensor running on the cluster probe as well, the Sensor Factory
sensor shows the data of all cluster nodes for this channel.
§ If you add a Sensor Factory sensor underneath the local probe, and in the Sensor Factory formula you
refer to a channel of a sensor running on the cluster probe, the Sensor Factory sensor only shows
data of the primary master node for this channel.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
[Custom] The monitoring results from other sensors or devices. Samples for usage
are:
§ Show single channels of one or more sensors in one graph.
1869
Channel Description
§ Use the data from single channels of one or more sensors to calculate
new values (for example, you can subtract, multiply, and divide).
§ Create graphs with data from other sensors' channels and add
horizontal lines at specific vertical positions.
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
The Sensor Factory sensor does not show values in the Downtime
channel because they cannot be calculated for this sensor.
More
Knowledge Base
How can I monitor the overall status of the business process "email"?
§ https://kb.paessler.com/en/topic/60737
Can you help me understand when the Sensor Factory sensor changes to a down status and why?
§ https://kb.paessler.com/en/topic/79458
VIDEO TUTORIAL
1870
7.8.141 sFlow Sensor
The sFlow sensor receives traffic data from an sFlow v5-compatible device and shows the traffic by type.
This sensor has several filter options to divide traffic into different channels.
sFlow Sensor
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1881 .
1871
Sensor in Other Languages
§ Dutch: sFlow
§ French: sFlow
§ German: sFlow
§ Japanese: sFlow
§ Portuguese: sFlow
§ Russian: sFlow
§ Spanish: sFlow
Remarks
§ This sensor has a very high performance impact. Use it with care. We recommend that you use no
more than 50 sensors of this sensor type on each probe.
§ You must enable sFlow v5 export on the target device for this sensor to work. The device must send
the flow data stream to the IP address of the probe system with this sensor (either a local probe or a
remote probe).
§ This sensor accepts RAW data only. The stream must be sent via IPv4.
§ For cloning this sensor, the following rules apply. If you add the clone to the same probe, PRTG keeps
the selected IP addresses on which it listens for Flow (NetFlow, jFlow, sFlow, IPFIX) packets. If you
add the clone to a different probe, PRTG selects all available IP addresses by default. You can change
the selected IP addresses in the sensor settings.
§ This sensor has several limitations 1872 .
§ You cannot use this sensor in cluster mode. You can only set it up on a local probe or a remote probe
but not on a cluster probe.
§ See the Knowledge Base: How can I change the default groups and channels for flow and Packet
Sniffer sensors?
§ See the Knowledge Base: Where is the volume line in graphs?
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Limitations
There are some limitations that you should consider before you use this sensor:
1872
§ The sensor only supports the "Flow sample" and "Extended flow" formats. It cannot process "Counter"
formats.
§ The sensor only processes samples where the source ID matches the ifIndex of the input interface
(avoiding double-counted traffic) and ascending sequence numbers.
§ The sensor only supports sample packets of the Ethernet type "IP" (with optional VLAN tag)
§ The sensor only supports sampled packets of the types TCP and UDP.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
1873
Setting Description
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ bandwidthsensor
§ sflowsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Setting Description
Receive Packets on UDP Enter the UDP port number on which the flow packets are received. It
Port must match the UDP port number in the sFlow export options of the
hardware router device. The default value is 6343. Enter an integer.
Sender IP Address Enter the IP address of the sending device that you want to receive the
sFlow from. Enter an IP address to only receive data from a specific
device or leave the field empty to receive data from any device on the
specified port.
1874
Setting Description
Receive Packets on IP Select the IP addresses on which PRTG listens to sFlow packets. The list
Address of IP addresses is specific to your setup. To select an IP address, enable
a check box in front of the respective line. The IP address that you select
must match the IP address in the sFlow export options of the hardware
router device.
When you configure the export, make sure that you select the
appropriate sFlow v5 for this sensor
You can also select all items or cancel the selection by using the
check box in the table header.
Stream Data Handling Define what PRTG does with the stream and packet data:
§ Discard stream data (recommended): Do not store the stream and
packet data.
§ Store stream data only for the 'Other' channel: Only store stream and
packet data that is not otherwise filtered and is therefore accounted to
the default Other channel. PRTG stores this data in the \StreamLog
subfolder of the PRTG data directory 3579 on the probe system. The file
name is Streams Sensor [ID] (1).csv. This setting is for debugging
purposes. PRTG overwrites this file with each scanning interval.
§ Store all stream data: Store all stream and packet data. This setting is
for debugging purposes. PRTG overwrites this file with each scanning
interval.
Use with caution. If you enable this setting, it can create huge data
files. We recommend that you only use this setting for a short time.
Channel Configuration
Channel Configuration
1875
Setting Description
Channel Selection Define the categories that the sensor accounts the traffic to:
§ Web: Internet web traffic.
§ Other Protocols: Traffic from various other protocols via UDP and TCP.
For each group, you can select how many channels the sensor uses, that
is, how detailed the sensor divides the traffic. For each group, choose
from:
§ No ( ): Do not account traffic of this group in its own channel. The
sensor accounts all traffic of this group to the default channel named
Other.
§ Yes ( ): Count all traffic of this group and summarize it in one channel.
§ Detail ( ): Count all traffic of this group and further divide it into different
channels. The traffic appears in several channels that you can see in
the Content column.
Extensive use of this option can cause load problems on the probe
system. We recommend that you set specific, well-chosen filters
for the data that you really want to analyze.
You can change the default configuration for groups and channels.
For details, see the Knowledge Base: How can I change the default
groups and channels for flow and Packet Sniffer sensors?
Filtering
For detailed information, see section Filter Rules 1880 .
1876
Filtering
Setting Description
Include Filter Define if you want to filter any traffic. If you leave this field empty, the
sensor includes all traffic. To include specific traffic only, define filters
using a special syntax.
Exclude Filter First, the sensor considers the filters in Include Filter. From this subset,
you can explicitly exclude traffic, using the same syntax.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
1877
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Primary Toplist
Primary Toplist
Setting Description
Primary Toplist Define which Toplist is the primary Toplist of the sensor:
§ Top Talkers
§ Top Connections
§ Top Protocols
PRTG shows the primary Toplist in maps when you add a Toplist
object.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
1878
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
1879
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Toplists
For all Flow (NetFlow, jFlow, sFlow, IPFIX) and Packet Sniffer sensors, Toplists are available on the
sensor's Overview tab. Using Toplists, you can review traffic data for small time periods in great detail.
Filter Rules
The following filter rules apply to all Flow (NetFlow, jFlow, sFlow, IPFIX) and Packet Sniffer sensors.
For more information, see section Filter Rules for Flow, IPFIX, and Packet Sniffer Sensors 3536 .
1880
Field Possible Filter Values
SenderIP IP address of the sending device. Use this if you have several devices that
send flow data on the same port, and you want to divide the traffic of each
device into a different channel.
Possible values: IP address or DNS name
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Chat The traffic from chat and instant messaging (Internet Relay Chat (IRC),
AOL Instant Messenger (AIM)) in bytes per second
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
1881
Channel Description
FTP/P2P The traffic from file transfer (File Transfer Protocol (FTP)/Peer-to-Peer
(P2P)) in bytes per second
Infrastructure The traffic from network services (Dynamic Host Configuration Protocol
(DHCP), Domain Name System (DNS), Ident, Internet Control Message
Protocol (ICMP), Simple Network Management Protocol (SNMP)) in bytes
per second
Mail The internet mail traffic (Internet Message Access Protocol (IMAP), Post
Office Protocol version 3 (POP3), Simple Mail Transfer Protocol (SMTP))
in bytes per second
Other The traffic from various other protocols (User Datagram Protocol (UDP),
Transmission Control Protocol (TCP)) in bytes per second
Remote Control The traffic from remote control applications (Remote Desktop Protocol
(RDP), Secure Shell (SSH), Telnet, Virtual Network Computing (VNC)) in
bytes per second
Various The traffic from various other sources in bytes per second
WWW The traffic from the web (HTTP, HTTPS) in bytes per second
More
Knowledge Base
How can I change the default groups and channels for flow and Packet Sniffer sensors?
§ https://kb.paessler.com/en/topic/60203
PAESSLER TOOLS
sFlow Tester
1882
§ https://www.paessler.com/tools/sflowtester
1883
7.8.142 sFlow (Custom) Sensor
The sFlow (Custom) sensor receives traffic data from an sFlow v5-compatible device and shows the traffic
by type. With this sensor, you can define your own channel definitions to divide traffic into different
channels.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1893 .
1884
Sensor in Other Languages
§ Dutch: sFlow (Custom)
§ Japanese: sFlow
Remarks
§ This sensor has a very high performance impact. Use it with care. We recommend that you use no
more than 50 sensors of this sensor type on each probe.
§ You must enable sFlow v5 export on the target device for this sensor to work. The device must send
the flow data stream to the IP address of the probe system with this sensor (either a local probe or a
remote probe).
§ This sensor does not officially support more than 50 channels. Depending on the data used with this
sensor, you might exceed the maximum number of supported channels. In this case, PRTG tries to
display all channels. Be aware, however, that you experience limited usability and performance.
§ This sensor has several limitations 1885 .
§ This sensor accepts RAW data.
§ You cannot use this sensor in cluster mode. You can only set it up on a local probe or a remote probe
but not on a cluster probe.
§ This sensor only supports the IPv4 protocol.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Limitations
There are some limitations that you should consider before you use this sensor:
§ The sensor only supports the "Flow sample" and "Extended flow" formats. It cannot process "Counter"
formats.
§ The sensor only processes samples where the source ID matches the ifIndex of the input interface
(avoiding double-counted traffic) and ascending sequence numbers.
1885
§ The sensor only supports sample packets of the Ethernet type "IP" (with optional VLAN tag)
§ The sensor only supports sampled packets of the types TCP and UDP.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
1886
Setting Description
§ bandwidthsensor
§ sflowsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Setting Description
Receive Packets on UDP Enter the UDP port number on which the flow packets are received. It
Port must match the UDP port number in the sFlow export options of the
hardware router device. The default value is 6343. Enter an integer.
When you configure the export, make sure that you select the
appropriate sFlow v5 for this sensor
Sender IP Address Enter the IP address of the sending device that you want to receive the
sFlow from. Enter an IP address to only receive data from a specific
device or leave the field empty to receive data from any device on the
specified port.
1887
Setting Description
Receive Packets on IP Select the IP addresses on which PRTG listens to sFlow packets. The list
Address of IP addresses is specific to your setup. To select an IP address, enable
a check box in front of the respective line. The IP address that you select
must match the IP address in the sFlow export options of the hardware
router device.
When you configure the export, make sure that you select the
appropriate sFlow v5 for this sensor
You can also select all items or cancel the selection by using the
check box in the table header.
Channel Definition Enter a channel definition to divide the traffic into different channels. Enter
each definition in one line. The sensor accounts all traffic that you do not
define a channel for to the default channel Other.
For detailed information, see section Channel Definitions for Flow,
IPFIX, and Packet Sniffer Sensors 3538 .
Extensive use of many filters can cause load problems on the probe
system. We recommend that you define specific, well-chosen filters
for the data that you really want to analyze. We recommend that you do
not use more than 20 channels in graphs and tables, and not more than
100 channels in total. For performance reasons, we recommend that you
add several sensors with fewer channels each.
Stream Data Handling Define what PRTG does with the stream and packet data:
§ Discard stream data (recommended): Do not store the stream and
packet data.
§ Store stream data only for the 'Other' channel: Only store stream and
packet data that is not otherwise filtered and is therefore accounted to
the default Other channel. PRTG stores this data in the \StreamLog
subfolder of the PRTG data directory 3579 on the probe system. The file
name is Streams Sensor [ID] (1).csv. This setting is for debugging
purposes. PRTG overwrites this file with each scanning interval.
§ Store all stream data: Store all stream and packet data. This setting is
for debugging purposes. PRTG overwrites this file with each scanning
interval.
Use with caution. If you enable this setting, it can create huge data
files. We recommend that you only use this setting for a short time.
Filtering
For detailed information, see section Filter Rules 1892 .
1888
Filtering
Setting Description
Include Filter Define if you want to filter any traffic. If you leave this field empty, the
sensor includes all traffic. To include specific traffic only, define filters
using a special syntax.
Exclude Filter First, the sensor considers the filters in Include Filter. From this subset,
you can explicitly exclude traffic, using the same syntax.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
1889
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Primary Toplist
Primary Toplist
Setting Description
Primary Toplist Define which Toplist is the primary Toplist of the sensor:
§ Top Talkers
§ Top Connections
§ Top Protocols
PRTG shows the primary Toplist in maps when you add a Toplist
object.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
1890
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
1891
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Toplists
For all Flow (NetFlow, jFlow, sFlow, IPFIX) and Packet Sniffer sensors, Toplists are available on the
sensor's Overview tab. Using Toplists, you can review traffic data for small time periods in great detail.
Filter Rules
The following filter rules apply to all Flow (NetFlow, jFlow, sFlow, IPFIX) and Packet Sniffer sensors.
1892
Field Possible Filter Values
SenderIP IP address of the sending device. Use this if you have several devices that
send flow data on the same port, and you want to divide the traffic of each
device into a different channel.
Possible values: IP address or DNS name
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Other All traffic for which no channel is defined in bytes per second
1893
Channel Description
More
Knowledge Base
PAESSLER TOOLS
sFlow Tester
§ https://www.paessler.com/tools/sflowtester
1894
7.8.143 SFTP Secure File Transfer Protocol Sensor
The SFTP Secure File Transfer Protocol sensor monitors File Transfer Protocol (FTP) servers of a
Linux/Unix system via the Secure Shell (SSH) File Transfer Protocol (FTP over SSH).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1901 .
Remarks
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ This sensor cannot support all Linux/Unix and macOS distributions.
1895
§ See the Knowledge Base: SSH and SFTP sensors in Unknown status
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sftpsensor
1896
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer. The maximum timeout value is 900 seconds
(15 minutes).
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
1897
Setting Description
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].Data.txt. This setting is for debugging purposes.
PRTG overwrites this file with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
1898
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
1899
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
1900
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
1901
7.8.144 Share Disk Free Sensor
The Share Disk Free sensor monitors free disk space of a share (Windows/Samba) using Server
Message Block (SMB).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1907 .
§ German: Freigaben-Speicherplatz
§ Japanese:
§ Simplified Chinese:
Remarks
§ This sensor requires that the LanmanServer service runs on the target computer.
§ This sensor only works if no quotas are enabled on the target share. If there are quotas enabled for the
user account that this sensor uses to connect to the share, the absolute value is okay, but the
percentage variable shows incorrect values.
1902
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: What can I do if PRTG doesn't succeed with monitoring a share? PE029
PE032
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
LanmanServer service To monitor shares on Windows machines, make sure that the
LanmanServer service runs on the target computer.
The display name of the service is Server.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
1903
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ diskspacesensor
§ smbdiskspacesensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Share Configuration
Share Configuration
Setting Description
Share Enter the name of the share that you want to monitor.
You can only enter a share name, for example, C$. Do not enter a
complete Universal Naming Convention (UNC) name. The sensor
takes the server name \\server\ from the parent device.
1904
Setting Description
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
1905
For more information, see section Inheritance of Settings 144 .
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
1906
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
What can I do if PRTG doesn't succeed with monitoring a share? PE029 PE032
§ https://kb.paessler.com/en/topic/513
1907
7.8.145 SIP Options Ping Sensor
The SIP Options Ping sensor monitors the connectivity to a Session Initiation Protocol (SIP) server using
SIP options "Ping". The sensor sends auth and options requests to the SIP server.
You can use this sensor to monitor Voice over IP (VoIP) services.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1914 .
Remarks
§ This sensor requires Microsoft .NET 4.7.2 or later on the probe system.
§ An SIP server might return the error '480 Service temporarily unavailable' until at least one reachable
SIP client is connected to the server.
1908
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Detailed Requirements
Requirement Description
.NET 4.7.2 or later This sensor requires .NET 4.7.2 or later to be installed on the probe
system (on every cluster node, if on a cluster probe).
If the framework is missing, you cannot create this sensor.
For more information, see the Knowledge Base: Which .NET version
does PRTG require?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
1909
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ pingsensor
§ sipsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
SIP Specific
SIP Specific
1910
Setting Description
Port Enter the number of the port to which this sensor connects. Enter an
integer. The default User Datagram Protocol (UDP) port is 5060.
User Name Enter the user name of the SIP user account that this sensor logs in to
after a successful connection to the SIP server. Enter a string.
Password Enter the password of the SIP user account that this sensor logs in to
after a successful connection to the SIP server. Enter a string.
Timeout (Sec.) Enter the timeout for the connection to the SIP server. Enter an integer.
The maximum timeout value is 300 seconds (5 minutes).
Retry Count If the connection to the SIP server fails, the sensor tries to connect again.
Enter the maximum number of retries. After the sensor reaches the
maximum count, it shows the Down status 186 . Enter an integer.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
1911
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
1912
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
1913
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
1914
§ https://kb.paessler.com/en/topic/61108
1915
7.8.146 SMTP Sensor
The SMTP sensor monitors a mail server using the Simple Mail Transfer Protocol (SMTP).
The sensor can optionally send a test email with every check.
SMTP Sensor
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1923 .
§ French: SMTP
§ German: SMTP
§ Japanese: SMTP
§ Portuguese: SMTP
§ Russian: SMTP
§ Spanish: SMTP
Remarks
§ This sensor does not support Secure Remote Password (SRP) ciphers.
1916
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ smtpsensor
§ mailsensor
1917
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
SMTP Specific
SMTP Specific
Setting Description
Timeout (Sec.) Enter a timeout in seconds for the request. Enter an integer. The
maximum timeout value is 900 seconds (15 minutes).
If the reply takes longer than this value, the sensor cancels the
request and shows a corresponding error message.
Port Enter the number of the port that the sensor uses to send an email via
SMTP. The default port for unsecure connections is 25 and the default
ports for secure connections are 465 or 587. The actual setting depends
on the server that you connect to. Enter an integer.
We recommend that you use the default value.
If the connection is unsuccessful, try a different port number.
Authentication
Authentication
1918
Setting Description
SMTP Authentication Define if you want to use authentication for the SMTP connection:
Method
§ None: Do not use any authentication method.
§ User name and password: Authenticate against the SMTP server via
user name and password.
User Name This setting is only visible if you select User name and password above.
Enter a user name for SMTP authentication. Enter a string.
Password This setting is only visible if you select User name and password above.
Enter a password for SMTP authentication. Enter a string.
HELO Ident Enter a server name for the HELO part of the mail protocol.
For some mail servers, the HELO identifier must be the valid principal
host domain name for the client host. For more information, see
SMTP RFC 2821.
If you leave this field empty, the value defaults to the computer name.
Only ASCII characters are allowed.
Connection Security
Connection Security
Setting Description
Transport-Level Security Define how the sensor handles the security of the connection:
§ Use transport-level security if available using StartTLS (default): Try to
connect to the server via a Secure Sockets Layer (SSL)/Transport Layer
Security (TLS) secured connection and StartTLS. If the server does not
support this, the sensor tries to connect without connection security.
§ Use transport-level security if available: Try to connect to the server via
an SSL/TLS-secured connection. If the server does not support this, the
sensor tries to connect without connection security.
§ Enforce transport-level security using StartTLS: Try to connect to the
server via an SSL/TLS-secured connection and StartTLS. If the server
does not support this, the sensor shows the Down status 186 .
1919
Setting Description
Monitoring
Monitoring
Setting Description
Email Handling Define the monitoring approach when connecting to the SMTP server:
§ Do not send an email: Do not send an email, only connect to the SMTP
server.
§ Send an email: Send an email through the SMTP server. If there is an
error when sending the email, this triggers an error message and the
sensor changes to the Down status.
From This setting is only visible if you select Send email above. Specify the
address of the sender of the email. Enter a valid email address.
To This setting is only visible if you select Send email above. Specify the
address that PRTG sends the email to. Enter a valid email address.
If you define more than one recipient, separate the individual email
addresses with commas.
Topic This setting is only visible if you select Send email above. Specify the
subject that the email contains. Enter a string or leave the field empty.
1920
Setting Description
Content This setting is only visible if you select Send email above. Specify the
body that the email contains. Enter a string or leave the field empty.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
1921
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
1922
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
1923
7.8.147 SMTP&IMAP Round Trip Sensor
The SMTP&IMAP Round Trip sensor monitors the time it takes for an email to reach an Internet
Message Access Protocol (IMAP) mailbox using the Simple Mail Transfer Protocol (SMTP). It sends an
email via the parent device (an SMTP server) and then scans a dedicated IMAP mailbox until the email
arrives.
The SMTP&IMAP Round Trip sensor automatically deletes these emails from the mailbox as soon
as PRTG retrieves them. The emails only remain in the mailbox if a timeout or a restart of the PRTG
core server occurs during sensor runtime.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1933 .
§ German: SMTP&IMAP-Übermittlung
1924
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ The parent device must be an SMTP server.
§ This sensor does not support Secure Remote Password (SRP) ciphers.
§ Use dedicated email accounts with this sensor. If you use more sensors of this type, make sure that
each sensor uses its own email accounts.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
1925
Setting Description
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ imapsensor
§ roundtrip
§ mailsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Email Settings
Email Settings
Setting Description
From Specify the email address of the email's sender. Enter a valid email
address.
To Specify the address that PRTG sends the emails to. Enter a valid email
address.
You can only enter one email address.
HELO Ident Enter a server name for the HELO part of the mail protocol.
For some mail servers, the HELO identifier must be the valid principal
host domain name for the client host. For more information, see
SMTP RFC 2821.
Only ASCII characters are allowed.
1926
Step 1: Send Email Using Parent Device (SMTP Server)
In this step, you configure how the sensor sends the emails. The sensor uses the IP Address/DNS
Name of the parent device (an SMTP server).
Setting Description
Port Enter the number of the port that the sensor uses to send an email via
SMTP. The default port for unsecure connections is 25 and the default
ports for secure connections are 465 or 587. The actual setting depends
on the server that you connect to. Enter an integer.
We recommend that you use the default value.
If the connection is unsuccessful, try a different port number.
Timeout for SMTP Enter a timeout in seconds for the request. Enter an integer. The
Connection (Sec.) maximum timeout value is 900 seconds (15 minutes).
If the reply takes longer than this value, the sensor cancels the
request and shows a corresponding error message.
SMTP Authentication Define if you want to use authentication for the SMTP connection:
Method
§ None: Do not use any authentication method.
§ User name and password: Authenticate against the SMTP server via
user name and password.
User Name This setting is only visible if you select User name and password above.
Enter a user name for SMTP authentication. Enter a string.
Password This setting is only visible if you select User name and password above.
Enter a password for SMTP authentication. Enter a string.
1927
Setting Description
Additional Text for Email PRTG automatically creates the subject part of the round trip email. The
Subject subject consists of the string PRTG Roundtrip Mail:, followed by a unique
globally unique identifier (GUID) to correctly identify the email in the IMAP
mailbox, for example, PRTG Roundtrip Mail: {5E858D9C-AC70-466A-
9B2A-55630165D276}.
Use this field to place your custom text before the automatically created
text.
Connection Security
Connection Security
Setting Description
Transport-Level Security Define how the sensor handles the security of the connection:
§ Use transport-level security if available using StartTLS (default): Try to
connect to the server via a Secure Sockets Layer (SSL)/Transport Layer
Security (TLS) secured connection and StartTLS. If the server does not
support this, the sensor tries to connect without connection security.
§ Use transport-level security if available: Try to connect to the server via
an SSL/TLS-secured connection. If the server does not support this, the
sensor tries to connect without connection security.
§ Enforce transport-level security using StartTLS: Try to connect to the
server via an SSL/TLS-secured connection and StartTLS. If the server
does not support this, the sensor shows the Down status 186 .
§ Enforce transport-level security: Try to connect to the server via an
SSL/TLS-secured connection. If the server does not support this, the
sensor shows the Down status.
If the sensor connects to a server via StartTLS, the connection is first
established without connection security. After the connection has
been established, the sensor sends a certain command (StartTLS) over
the unsecured connection to negotiate a secure connection via SSL/TLS.
If the sensor does not use StartTLS, the negotiation of a secure
connection happens immediately (implicitly) so that no commands
are sent in unencrypted plain text. If no secure connection is possible, no
communication takes place.
1928
Step 2: Check an IMAP Mailbox until Email Arrives
In this step, you configure how to receive the emails that the sensor sends.
Setting Description
IP Address/DNS Name Specify the IMAP server. Enter a valid IP address or Domain Name
System (DNS) name.
Mailbox Specify the IMAP mailbox that you want to check. Enter the IMAP
mailbox or folder name, for example INBOX.
The IMAP mailbox or folder name must not match the sender of the
email in the From field. Otherwise, the sensor might incorrectly
interpret unsuccessful round trips as successful.
Port Specify the port that the sensor uses for the IMAP connection. The default
port for unsecure connections is 143 and the default port for secure
connections is 993. The actual setting depends on the server you connect
to.. Enter an integer.
We recommend that you use the default value.
If the connection is unsuccessful, try a different port number.
Connection Interval (Sec.) Enter the number of seconds the sensor waits between two connections
to the IMAP server. PRTG repeatedly checks the mailbox in this scanning
interval until the email arrives. Enter an integer.
1929
Setting Description
Maximum Trip Time Enter the number of seconds an email may take to arrive in the IMAP
(Sec.) mailbox. PRTG continuously checks the mailbox in this scanning interval
until the email arrives. If it does not arrive within the maximum trip time,
the sensor shows an error message. Enter an integer.
User Name Enter a user name for IMAP authentication. Enter a string.
Search Method Define how to search for the round trip email in the mailbox:
§ Search for the email directly (default): Send a SEARCH command to
directly find the round trip email on the IMAP server.
§ Search through all available emails: Search through all available emails
in the mailbox locally to find the round trip email. This might take some
time if you have many emails in your mailbox.
Connection Security
Connection Security
Setting Description
Transport-Level Security Define how the sensor handles the security of the connection:
§ Use transport-level security if available using StartTLS (default): Try to
connect to the server via a Secure Sockets Layer (SSL)/Transport Layer
Security (TLS) secured connection and StartTLS. If the server does not
support this, the sensor tries to connect without connection security.
§ Use transport-level security if available: Try to connect to the server via
an SSL/TLS-secured connection. If the server does not support this, the
sensor tries to connect without connection security.
§ Enforce transport-level security using StartTLS: Try to connect to the
server via an SSL/TLS-secured connection and StartTLS. If the server
does not support this, the sensor shows the Down status 186 .
1930
Setting Description
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
1931
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
1932
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
1933
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Response Time (IMAP) The response time of the IMAP server in milliseconds (msec)
Response Time (SMTP) The response time of the SMTP server in msec
Total The sum of the response time of the IMAP server and the SMTP server in
msec
This channel is the primary channel by default.
More
Knowledge Base
1934
7.8.148 SMTP&POP3 Round Trip Sensor
The SMTP&POP3 Round Trip sensor monitors the time it takes for an email to reach a Post Office
Protocol version 3 (POP3) mailbox using the Simple Mail Transfer Protocol (SMTP). It sends an email
using the parent device (an SMTP server) and then scans a dedicated POP3 mailbox until the email
comes in.
The SMTP&POP3 Round Trip sensor automatically deletes these emails from the mailbox as soon
as PRTG has retrieves them. Emails only remain in the mailbox if a timeout or a restart of the PRTG
core server occurs during sensor runtime.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1944 .
§ German: SMTP&POP3-Übermittlung
§ Japanese: SMTP&POP3
1935
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ The parent device must be an SMTP server.
§ This sensor does not support Secure Remote Password (SRP) ciphers.
§ Use dedicated email accounts with this sensor. If you use more sensors of this type, make sure that
each sensor uses its own email accounts.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
1936
Setting Description
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ pop3sensor
§ roundtrip
§ mailsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Email Settings
Email Settings
Setting Description
From Specify the email address of the email's sender. Enter a valid email
address.
To Specify the address that PRTG sends the emails to. Enter a valid email
address.
You can only enter one email address.
HELO Ident Enter a server name for the HELO part of the mail protocol.
For some mail servers, the HELO identifier must be the valid principal
host domain name for the client host. For more information, see
SMTP RFC 2821.
Only ASCII characters are allowed.
1937
Step 1: Send Email Using Parent Device (SMTP Server)
In this step, you configure how the sensor sends the emails. The sensor uses the IP Address/DNS
Name of the parent device (an SMTP server).
Setting Description
Port Enter the number of the port that the sensor uses to send an email via
SMTP. The default port for unsecure connections is 25 and the default
ports for secure connections are 465 or 587. The actual setting depends
on the server that you connect to. Enter an integer.
We recommend that you use the default value.
If the connection is unsuccessful, try a different port number.
Timeout for SMTP Enter a timeout in seconds for the request. Enter an integer. The
Connection (Sec.) maximum timeout value is 900 seconds (15 minutes).
If the reply takes longer than this value, the sensor cancels the
request and shows a corresponding error message.
SMTP Authentication Define if you want to use authentication for the SMTP connection:
Method
§ None: Do not use any authentication method.
§ User name and password: Authenticate against the SMTP server via
user name and password.
User Name This setting is only visible if you select User name and password above.
Enter a user name for SMTP authentication. Enter a string.
Password This setting is only visible if you select User name and password above.
Enter a password for SMTP authentication. Enter a string.
1938
Setting Description
Additional Text for Email PRTG automatically creates the subject part of the round trip email. The
Subject subject consists of the string PRTG Roundtrip Mail:, followed by a unique
globally unique identifier (GUID) to correctly identify the email in the IMAP
mailbox, for example, PRTG Roundtrip Mail: {5E858D9C-AC70-466A-
9B2A-55630165D276}.
Use this field to place your custom text before the automatically created
text.
Connection Security
Connection Security
Setting Description
Transport-Level Security Define how the sensor handles the security of the connection:
§ Use transport-level security if available using StartTLS (default): Try to
connect to the server via a Secure Sockets Layer (SSL)/Transport Layer
Security (TLS) secured connection and StartTLS. If the server does not
support this, the sensor tries to connect without connection security.
§ Use transport-level security if available: Try to connect to the server via
an SSL/TLS-secured connection. If the server does not support this, the
sensor tries to connect without connection security.
§ Enforce transport-level security using StartTLS: Try to connect to the
server via an SSL/TLS-secured connection and StartTLS. If the server
does not support this, the sensor shows the Down status 186 .
§ Enforce transport-level security: Try to connect to the server via an
SSL/TLS-secured connection. If the server does not support this, the
sensor shows the Down status.
If the sensor connects to a server via StartTLS, the connection is first
established without connection security. After the connection has
been established, the sensor sends a certain command (StartTLS) over
the unsecured connection to negotiate a secure connection via SSL/TLS.
If the sensor does not use StartTLS, the negotiation of a secure
connection happens immediately (implicitly) so that no commands
are sent in unencrypted plain text. If no secure connection is possible, no
communication takes place.
1939
Step 2: Check a POP3 Mailbox until Email Arrives
In this step, you configure how to receive the sent emails.
Setting Description
IP Address/DNS Name Specify the POP3 server. Enter a valid IP address or Domain Name
System (DNS) name.
Port Specify the port that the sensor uses for the POP3 connection. The
default port for unsecure connections is 110 and the default port for secure
connections is 995. The actual setting depends on the server you connect
to. Enter an integer.
Connection Interval (Sec.) Enter the number of seconds the sensor waits between two connections
to the POP3 server. PRTG continuously checks the mailbox in this
scanning interval until the email arrives. Enter an integer.
Maximum Trip Time Enter the number of seconds an email may take to arrive in the POP3
(Sec.) mailbox. PRTG continuously checks the mailbox in the interval that you
specify above until the email arrives. If it does not arrive within the
maximum trip time, the sensor triggers an error message. Enter an
integer.
POP3 Authentication Select the authentication method for the POP3 connection:
Method
§ Without login: Only monitor the connection to the POP3 server.
§ User name and password: Log in to the POP3 server with user name
and password.
This is a simple login. It is not secure.
1940
Setting Description
User Name This setting is only visible if you select User name and password or 128-
bit MD5 hash value (APOP) above. Enter a user name for POP3
authentication. Enter a string.
Password This setting is only visible if you select User name and password or 128-
bit MD5 hash value (APOP) above. Enter a user name for POP3
authentication. Enter a string.
Connection Security
Connection Security
Setting Description
Transport-Level Security Define how the sensor handles the security of the connection:
§ Use transport-level security if available using StartTLS (default): Try to
connect to the server via a Secure Sockets Layer (SSL)/Transport Layer
Security (TLS) secured connection and StartTLS. If the server does not
support this, the sensor tries to connect without connection security.
§ Use transport-level security if available: Try to connect to the server via
an SSL/TLS-secured connection. If the server does not support this, the
sensor tries to connect without connection security.
§ Enforce transport-level security using StartTLS: Try to connect to the
server via an SSL/TLS-secured connection and StartTLS. If the server
does not support this, the sensor shows the Down status 186 .
§ Enforce transport-level security: Try to connect to the server via an
SSL/TLS-secured connection. If the server does not support this, the
sensor shows the Down status.
If the sensor connects to a server via StartTLS, the connection is first
established without connection security. After the connection has
been established, the sensor sends a certain command (StartTLS) over
the unsecured connection to negotiate a secure connection via SSL/TLS.
1941
Setting Description
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
1942
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
1943
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Response Time (POP3) The response time of the POP3 server in milliseconds (msec)
Response Time (SMTP) The response time of the SMTP server in msec
Total The sum of the response time of the SMTP server and the POP3 server in
msec
This channel is the primary channel by default.
1944
More
Knowledge Base
1945
7.8.149 SNMP APC Hardware Sensor
The SNMP APC Hardware sensor monitors performance counters on an APC UPS device via the Simple
Network Management Protocol (SNMP).
The SNMP APC Hardware sensor does not appear as a running sensor, instead it is created as an
SNMP Custom Advanced sensor 2042 .
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1951 .
Remarks
§ This sensor supports the IPv6 protocol.
1946
§ See the Knowledge Base: How can I monitor additional counters with the SNMP APC Hardware
sensor?
§ See the Knowledge Base: How can I monitor an APC UPS that does not support SNMP?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Category Select the performance counters that you want to monitor. PRTG creates
one SNMP Custom Advanced sensor with all performance counters of
each category that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
1947
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ apcups
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Interface Shows the name of the interface (performance counter) that this sensor
monitors.
1948
Setting Description
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Unit String Define the unit of the numeric data that the sensor monitors at the OID.
Enter a string.
Multiplication If you want to multiply the received data with a certain value, enter the
quotient. Enter an integer.
Division If you want to divide the received data by a certain value, enter the divisor.
Enter an integer.
If Value Changes Define what the sensor does when the sensor value changes:
§ Ignore changes (default): Take no action on change.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
1949
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
1950
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
§ Capacity of battery
§ Output load
§ Temperature of battery
1951
More
Knowledge Base
How can I monitor additional counters with the SNMP APC Hardware sensor?
§ https://kb.paessler.com/en/topic/60367
How can I monitor an APC UPS that does not support SNMP?
§ https://kb.paessler.com/en/topic/63674
1952
7.8.150 SNMP Buffalo TS System Health Sensor
The SNMP Buffalo TS System Health sensor monitors the system health of a Buffalo TeraStation
network-attached storage (NAS) via the Simple Network Management Protocol (SNMP).
This sensor supports the following TeraStation systems: 3000, 3010, 3020, 5000, 5010, 6000, and
7000 series.
Run an auto-discovery 269 with the device template Buffalo TeraStation NAS to automatically create
SNMP Custom Table sensors 2068 with additional useful information about the TeraStation, for
example, array status, disk smart status, disk status, and Internet Small Computer System Interface
(iSCSI) status. This device template also creates SNMP sensors 3626 for traffic, memory, and load
average on the TeraStation.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1957 .
1953
§ Russian: Рабо то сп о со бн о сть систем ы Buffalo TS п о SNMP
Remarks
§ This sensor supports the TeraStation 3000, 3010, 3020, 5000, 5010, 6000, and 7000 series.
§ In certain cases, this sensor might show an error message. If you encounter such an issue, open the
settings of the parent device 571 , section SNMP Compatibility Options, and set the Walk Mode to Use
GETNEXT requests.
§ This sensor has predefined limits for several metrics. You can individually change these limits in the
channel settings. For detailed information about channel limits, see section Channel Settings 3052 .
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
1954
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpbuffalots
§ buffalots
§ systemhealth
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
1955
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
1956
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
1957
Channel Description
More
Knowledge Base
For more information about sensor settings, see the following sections:
1958
7.8.151 SNMP Cisco ADSL Sensor
The SNMP Cisco ADSL sensor monitors asymmetric digital subscriber line (ADSL) statistics of a Cisco
router via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1963 .
Remarks
§ This sensor supports the IPv6 protocol.
1959
§ This sensor has a low performance impact.
§ For a general introduction to the technology behind SNMP, see section Monitoring via SNMP 3348 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Line Index Select the performance counters that you want to monitor. PRTG creates
one sensor for each performance counter that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
1960
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpciscoadsl
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Line Index Shows the line index (performance counter) that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
1961
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
1962
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
1963
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
1964
7.8.152 SNMP Cisco ASA VPN Connections Sensor
The SNMP Cisco ASA VPN Connections sensor monitors the VPN connections on a Cisco Adaptive
Security Appliance via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1969 .
1965
Remarks
§ This sensor supports the IPv6 protocol.
§ For a general introduction to the technology behind SNMP, see section Monitoring via SNMP 3348 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
1966
Setting Description
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpciscoasavpnsensor
§ snmpciscoasavpnconnectionssensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
1967
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
For more information, see section Root Group Settings 399 , section Credentials for SNMP Devices.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
1968
Schedules, Dependencies, and Maintenance Window
You cannot interrupt the inheritance for schedules, dependencies, and maintenance windows. The
corresponding settings from the parent objects are always active. However, you can define additional
schedules, dependencies, and maintenance windows. They are active at the same time as the parent
objects' settings.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Active IPSec Sessions The number of active Internet Protocol Security (IPsec) sessions
1969
Channel Description
Active SVC Sessions The number of active switched virtual circuit (SVC) sessions
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
§ https://kb.paessler.com/en/topic/75522
1970
7.8.153 SNMP Cisco ASA VPN Traffic Sensor
The SNMP Cisco ASA VPN Traffic sensor monitors the traffic of an Internet Protocol Security (IPsec)
VPN connection on a Cisco Adaptive Security Appliance via the Simple Network Management Protocol
(SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1976 .
Remarks
§ This sensor can monitor IPsec connections only.
1971
§ This sensor has a low performance impact.
§ See the Knowledge Base: I get the error PE123 when using the SNMP Cisco ASA VPN Traffic sensor.
What can I do?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Connections Select the IPsec VPN connections that you want to monitor. PRTG
creates one sensor for each IPsec VPN connection that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
This sensor can only monitor VPN connections based on IPsec. This
means, for example, that connections that use Cisco AnyConnect do
not appear in this list.
Setting Description
1972
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpciscoasavpnsensor
§ snmpciscoasavpntrafficsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Remote IP Address Shows the IP address of the connection that this sensor monitors.
1973
Setting Description
Sensor Behavior Define the sensor status 186 if no active connection is available:
§ Show down status if no connection is active (recommended): Set the
sensor to the Down status if no connection is active.
§ Show warning status if no connection is active: Set the sensor to the
Warning status if no connection is active.
§ Stay in up status if no connection is active: Stay in the Up status if no
connection is active.
IKE Version Handling Select the engine for the Internet Key Exchange (IKE) version handling:
§ IKEv1 (default): Select this option if the tunnel on the device uses IKEv1.
§ IKEv1 and IKEv2: Select this option if the tunnel on the device uses
IKEv1 or IKEv2.
The IKEv1 and IKEv2 option is in beta status and might not work
properly.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
1974
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
For more information, see section Root Group Settings 399 , section Credentials for SNMP Devices.
1975
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
1976
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
I get the error PE123 when using the SNMP Cisco ASA VPN Traffic sensor. What can I do?
§ https://kb.paessler.com/en/topic/59643
§ https://kb.paessler.com/en/topic/46863
1977
7.8.154 SNMP Cisco ASA VPN Users Sensor
The SNMP Cisco ASA VPN Users sensor monitors account connections to a VPN on a Cisco Adaptive
Security Appliance via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1982 .
Remarks
§ Do not use this sensor to monitor more than 50 VPN users, especially if they are all connected
simultaneously. For more information, see the Knowledge Base: My SNMP Cisco ASA VPN Users
sensor shows a user limit error. Why? What can I do?
§ This sensor supports the IPv6 protocol.
1978
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpciscoasavpnsensor
§ snmpciscoasavpntrafficsensor
1979
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
1980
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
For more information, see section Root Group Settings 399 , section Credentials for SNMP Devices.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
1981
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
1982
My SNMP Cisco ASA VPN Users sensor shows a user limit error. Why? What can I do?
§ https://kb.paessler.com/en/topic/64053
1983
7.8.155 SNMP Cisco CBQoS Sensor
The SNMP Cisco CBQoS sensor monitors network parameters using Cisco's Class Based Quality of
Service (CBQoS) via the Simple Network Management Protocol (SNMP).
The sensor supports the classes Class Map, Match Statement, and Queueing.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1989 .
Remarks
§ This sensor has a very low performance impact.
1984
§ For a general introduction to the technology behind SNMP, see section Monitoring via SNMP 3348 .
§ For a general introduction to the technology behind Quality of Service (QoS) monitoring, see section
Monitoring Quality of Service 3372 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Entries Select the entries that you want to monitor. PRTG creates one sensor for
each entry that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
1985
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ cbqossensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
1986
Setting Description
Object Type Shows the object type of the parameter that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Interface Shows the interface of the parameter that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Description Shows the description of the parameter that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
BitMask Shows the number of available channels for the parameter that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
ObjectID Shows the ObjectID of the parameter that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
ConfigID Shows the ConfigID of the parameter that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
1987
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
1988
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
No Buffer Drop Packets The number of drop packets without buffer per second
1989
Channel Description
More
Knowledge Base
1990
7.8.156 SNMP Cisco System Health Sensor
The SNMP Cisco System Health sensor monitors the system health of a Cisco device via the Simple
Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 1997 .
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor has predefined limits for several metrics. You can individually change these limits in the
channel settings. For detailed information about channel limits, see section Channel Settings 3052 .
1991
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ SNMP Cisco System Health sensors that are created with the Cisco Device (Generic) device template
for auto-discovery can have additional tags.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Measurements Select the measurements that you want to monitor. PRTG creates one
sensor for each measurement that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
1992
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpciscosystemhealthsensor
§ systemhealth
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
1993
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
1994
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
1995
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
1996
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
§ Up status: Normal
More
Knowledge Base
1997
7.8.157 SNMP Cisco UCS Blade Sensor
The SNMP Cisco UCS Blade sensor monitors the health status of a Cisco Unified Computing System
(UCS) blade server via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2004 .
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
1998
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Sensor Settings
Setting Description
Blade Servers Select the blade servers that you want to monitor. PRTG creates one
sensor for each blade server that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
1999
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpciscosystemhealthsensor
§ systemhealth
§ ucssystemhealth
§ ucs
§ blade
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Settings
Sensor Settings
2000
Setting Description
Blade Servers Shows the blade server that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Channel Mask Shows the available channels for the blade server that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Model Shows the model of the blade server that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Serial Number Shows the serial number blade server that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2001
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2002
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2003
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2004
§ https://kb.paessler.com/en/topic/61108
2005
7.8.158 SNMP Cisco UCS Chassis Sensor
The SNMP Cisco UCS Chassis sensor monitors the health status of the chassis of a Cisco Unified
Computing System (UCS) device via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2011 .
Remarks
§ This sensor supports the IPv6 protocol.
2006
§ This sensor has a very low performance impact.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Sensor Settings
Setting Description
Chassis Select the chassis that you want to monitor. PRTG creates one sensor for
each chassis that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2007
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpciscosystemhealthsensor
§ systemhealth
§ ucssystemhealth
§ ucs
§ chassis
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Settings
Sensor Settings
Setting Description
2008
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2009
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2010
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2011
Channel Description
2012
Channel Description
§ Up status: Ok
More
Knowledge Base
2013
7.8.159 SNMP Cisco UCS Physical Disk Sensor
The SNMP Cisco UCS Physical Disk sensor monitors a physical disk of a Cisco Unified Computing
System (UCS) device via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2019 .
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
2014
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
This list only shows working disks that have the status Up or
Warning.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2015
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpciscophysicaldisksensor
§ ucs
§ snmp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Display Name Shows the display name of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2016
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2017
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2018
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2019
Channel Description
More
Knowledge Base
2020
7.8.160 SNMP Cisco UCS System Health Sensor
The SNMP Cisco UCS System Health sensor monitors the system health of a Cisco Unified Computing
System (UCS) device via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2025 .
2021
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
2022
Setting Description
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpciscosystemhealthsensor
§ systemhealth
§ ucssystemhealth
§ ucs
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2023
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2024
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Critical Faults Count The number of critical faults (that are not yet acknowledged in the UCS
logs)
2025
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2026
Channel Description
§ Up status: Ok
Major Faults Count The number of major faults (that are not yet acknowledged in the UCS
logs)
Minor Faults Count The number of minor faults (that are not yet acknowledged in the UCS
logs)
2027
Channel Description
Warning Count The number of warnings (that are not yet acknowledged in the UCS logs)
More
Knowledge Base
2028
7.8.161 SNMP CPU Load Sensor
The SNMP CPU Load sensor monitors the system load via the Simple Network Management Protocol
(SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2034 .
Remarks
§ This sensor supports the IPv6 protocol.
2029
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmp
2030
Setting Description
§ cpu
§ cpuloadsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].Data.txt. This setting is for debugging purposes.
PRTG overwrites this file with each scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
2031
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2032
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2033
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2034
7.8.162 SNMP Custom Sensor
The SNMP Custom sensor monitors a single parameter that is returned by a specific object identifier
(OID) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2040 .
§ Japanese: SNMP
Remarks
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: How do I find out which OID I need for an SNMP Custom sensor?
2035
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
OID Settings
Setting Description
Channel Name Enter a name for the channel in which the sensor shows the results for the
OID. Enter a string.
You can change this value later in the channel settings 3052 of this
sensor.
Value Type Select the expected numeric type of the results at the OID:
§ Absolute (unsigned integer): Integers without an operational sign, such
as 10 or 120.
§ Absolute (signed integer): Integers with an operational sign, such as -12
or 120.
§ Absolute (float): Float values, such as -5.80 or 8.23.
Unit String Enter the unit for the values that this sensor returns. Enter a string. PRTG
uses the unit string for display purposes and shows it in graphs, data
tables, and gauges.
If you want to change the unit after sensor creation, you can change it
in the sensor's channel settings 3052 .
2036
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpcustomsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2037
OID Settings
OID Settings
Setting Description
OID Enter the OID of the SNMP object that you want to receive numeric data
from.
Most OIDs begin with 1.3.6.1. However, OIDs that start with 1.0, or
1.1, or 1.2 are also allowed. If you want to entirely disable the
validation of your entry, add the string norfccheck: to the beginning of the
OID, for example, norfccheck:2.0.0.0.1.
Value Type Shows the value type of the numeric data that this sensor receives from
the OID.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Multiplication If you want to multiply the received data with a certain value, enter the
multiplier. Use the default value 1 to not change the received value. Enter
an integer.
Division If you want to divide the received data by a certain value, enter the divisor.
Use the default value 1 to not change the received value. Enter an integer.
If Value Changes Define what the sensor does when the sensor value changes:
§ Ignore changes (default): Take no action on change.
2038
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2039
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2040
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
How do I find out which OID I need for an SNMP Custom sensor?
§ https://kb.paessler.com/en/topic/903
VIDEO TUTORIAL
2041
7.8.163 SNMP Custom Advanced Sensor
The SNMP Custom Advanced sensor monitors numeric values returned for object identifiers (OID) via the
Simple Network Management Protocol (SNMP).
The SNMP Library sensor 2258 automatically creates SNMP Custom Advanced sensors when the
Management Information Base (MIB) file that you import contains single values.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2048 .
§ Japanese: SNMP
2042
§ Spanish: SNMP (personalizado / avanzado)
Remarks
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: How do I find out which OID I need for an SNMP Custom sensor?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
OID Settings
Setting Description
Value Type Select the expected numeric type of the results at the OID:
§ Absolute (unsigned integer): Integers without an operational sign, such
as 10 or 120.
§ Absolute (signed integer): Integers with an operational sign, such as -12
or 120.
§ Absolute (float): Float values, such as -5.80 or 8.23.
Channel #2 - #10 You can define up to 10 channels. You must define at least one data
channel, so you see all available settings for Channel #1. Specify how to
handle all other possible channels:
§ Disable: Do not create this channel.
2043
Basic Sensor Settings
Click the Settings tab of a sensor to change its settings.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpcustomsensor
§ snmpcustomadvanced
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2044
OID Settings
OID Settings
Setting Description
Channel #x Name Enter a name for the channel in which the sensor shows the results at the
OID. Enter a string.
Channel #x OID Enter the OID of the SNMP object from which you want to receive numeric
data.
Most OIDs begin with 1.3.6.1. However, OIDs that start with 1.0, or
1.1, or 1.2 are also allowed. If you want to entirely disable the
validation of your entry, add the string norfccheck: to the beginning of the
OID, for example, norfccheck:2.0.0.0.1.
Channel #x Value Type Shows the value type of the numeric data that this sensor receives from
the OID.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Channel #x Unit Define the unit of the numeric data that this sensor receives from the OID:
§ BytesBandwidth
§ BytesMemory
§ BytesDisk
§ Temperature
§ Percent
§ TimeResponse
§ TimeSeconds
§ TimeHours
§ Count
§ CPU
2045
Setting Description
§ BytesFile
§ SpeedDisk
§ SpeedNet
§ Custom
§ Lookup
For more information about the available units, see section Custom
Sensors 3501 .
To use lookups 3541 with this channel, select Lookup and define the
lookup file in Channel #x Lookup. Do not use Custom if you use
lookups with this sensor.
You cannot use the unit Lookup if you select the value type Delta
(counter) or Absolute (float). You are not able to create the sensor in
this case.
Channel #x Custom Unit This setting is only visible if you select the channel unit Custom above.
Define a unit for the channel value. Enter a string.
Channel #x Lookup This setting is only visible if you select the channel unit Lookup above.
Select a lookup 3541 file that you want to use with this channel.
Channel #2 - #10 Shows if the channel is enabled or disabled. If you enabled a channel, you
can define the settings of the channel as described above.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
2046
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2047
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
[Value] The numeric value for a specified OID (up to 10 OIDs are possible) that
refers to a specific SNMP device
More
Knowledge Base
How do I find out which OID I need for an SNMP Custom sensor?
§ https://kb.paessler.com/en/topic/903
2048
§ https://kb.paessler.com/en/topic/61108
2049
7.8.164 SNMP Custom String Sensor
The SNMP Custom String sensor monitors a string returned by a specific object identifier (OID) via the
Simple Network Management Protocol (SNMP). It can check for keywords. If you want to set limits to
the channel value, you can also extract a numeric value contained in the string.
In the sensor message, the sensor shows the string that you search 2053 for and the reason for the
Warning or Down status 186 .
The SNMP Library sensor 2258 automatically creates SNMP Custom String sensors when the
Management Information Base (MIB) file that you import contains string values.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2059 .
§ German: SNMP-Zeichenfolge
§ Japanese: SNMP
2050
Remarks
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
§ For an example, see section Number Extraction with Regular Expression 2058
§ See the Knowledge Base: How do I find out which OID I need for an SNMP Custom sensor?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
2051
Setting Description
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpcustomstringsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
OID Settings
OID Settings
Setting Description
OID Enter the OID of the SNMP object that you want to receive a string from.
Most OIDs begin with 1.3.6.1. However, OIDs that start with 1.0, or
1.1, or 1.2 are also allowed. If you want to entirely disable the
validation of your entry, add the string norfccheck: to the beginning of the
OID, for example, norfccheck:2.0.0.0.1.
Maximum String Length Define the maximum length of the string that PRTG receives from the
SNMP object at the OID. If the string is longer than this value, the sensor
shows the Down status. Enter an integer or leave the field empty.
If Value Changes Define what the sensor does when the sensor value changes:
§ Ignore changes (default): Take no action on change.
2052
Setting Description
Keyword Search
Setting Description
Response Must Include Define the search string that must be part of the data that PRTG receives
(Down Status if Not from the SNMP object at the OID. You can enter a simple string in plain
Included) text or a regular expression (regex) 3552 .
The search string must be case sensitive.
If the data does not include the search pattern, the sensor shows the
Down status.
2053
Setting Description
Search Method Define the method with which you want to provide the search string.
§ Simple string search: Search for a simple string in plain text.
The characters * and ? work as placeholders. * stands for no
number or any number of characters and ? stands for exactly one
character. You cannot change this behavior. The literal search for these
characters is only possible with a regex.
§ Regular expression: Search with a regex.
Response Must Not Define the search string that must not be part of the data that PRTG
Include (Down Status if receives form the SNMP object at the OID. You can enter a simple string
Included) in plain text or a regex.
The search string must be case sensitive.
If the data does include the search pattern, the sensor shows the
Down status.
Search Method Define the method with which you want to provide the search string.
§ Simple string search: Search for a simple string in plain text.
The characters * and ? work as placeholders. * stands for no
number or any number of characters and ? stands for exactly one
character. You cannot change this behavior. The literal search for these
characters is only possible with a regex.
§ Regular expression: Search with a regex.
Response Must Include Define the search string that must be part of the data that PRTG receives
(Warning Status If Not from the SNMP object at the OID. You can enter a simple string in plain
Included) text or a regex.
The search string must be case sensitive.
If the data does not include the search pattern, the sensor shows the
Warning status.
Search Method Define the method with which you want to provide the search string.
§ Simple string search: Search for a simple string in plain text.
The characters * and ? work as placeholders. * stands for no
number or any number of characters and ? stands for exactly one
character. You cannot change this behavior. The literal search for these
characters is only possible with a regex.
§ Regular expression: Search with a regex.
2054
Setting Description
Response Must Not Define the search string that must not be part of the data that PRTG
Include (Warning Status receives form the SNMP object at the OID. You can enter a simple string
If Included) in plain text or a regex.
The search string must be case sensitive.
If the data does include the search pattern, the sensor shows the
Warning status.
Search Method Define the method with which you want to provide the search string.
§ Simple string search: Search for a simple string in plain text.
The characters * and ? work as placeholders. * stands for no
number or any number of characters and ? stands for exactly one
character. You cannot change this behavior. The literal search for these
characters is only possible with a regex.
§ Regular expression: Search with a regex.
Extended Processing
Extended Processing
Setting Description
2055
Setting Description
Numeric Value Extraction Define if you want to filter out a numeric value from the received string:
§ Do not use extraction: Do not extract a float value. Use the result as a
string value.
§ Use a regular expression for extraction: Use a regular expression
(regex) to identify a numeric value in the string and to convert it to a
float value to use it, for example, with channel limits. Define below. See
also the example 2058 .
For more information, see section Channel Settings 3052 .
Regular Expression This setting is only visible if you select Use a regular expression for
extraction above. Enter a regular expression to identify the numeric value
that you want to extract from the string returned by the SNMP object at
the specified OID. You can use capturing groups.
Make sure that the expression only returns numbers, including the
decimal and thousands separators.
Index of Capturing Group This setting is only visible if you select Use a regular expression for
extraction above. If your regex uses capturing groups, specify which one
captures the number. Enter an integer or leave the field empty.
Decimal Separator This setting is only visible if you select Use a regular expression for
extraction above. Define the character for the decimal separator of the
number. Enter a string or leave the field empty.
Thousands Separator This setting is only visible if you select Use a regular expression for
extraction above. Define the character for the thousands separator of the
number. Enter a string or leave the field empty.
Sensor Display
Sensor Display
2056
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2057
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Assuming you would like to filter for the number 3.555, this is the percentage in the second parentheses.
Enter the following regex in the Regular Expression field:
(\d+\.\d+).*?(\d+\.\d+).*?(\d+\.\d+)
As Index of Capturing Group, enter 3. This extracts the desired number 3.555.
The index must be 3 in this case because the capturing groups here are the following:
Keep this note about index and capturing groups in mind when using number extraction.
2058
It is not possible to match an empty string with the PRTG regex sensor search.
PRTG supports Perl Compatible Regular Expression (PCRE) regex. For more details, see section
Regular Expressions 3552 .
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
How do I find out which OID I need for an SNMP Custom sensor?
§ https://kb.paessler.com/en/topic/903
2059
7.8.165 SNMP Custom String Lookup Sensor
The SNMP Custom String Lookup sensor monitors a string that a specific object identifier (OID) returns
via the Simple Network Management Protocol (SNMP). It can map the string directly to a sensor
status 186 by using a defined lookup file 3541 .
Basically, this sensor does a "reverse lookup". You need to define all potential return strings in the
lookup file as text values, each in one lookup entry. Graphs and data tables show the value to which
the string is mapped, usually an integer (lookup type 3549 SingleInt). For more information, see section
Example 2065 .
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2066 .
§ Japanese: SNMP
2060
Remarks
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See section Example 2065 for a sample lookup definition for this sensor.
§ See the Knowledge Base: How do I find out which OID I need for an SNMP Custom sensor?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
OID Settings
Setting Description
Channel Name Enter a name for the channel in which the sensor shows the results for the
OID. Enter a string.
You can change this value later in the channel settings 3052 of this
sensor.
2061
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpcustomsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2062
OID Settings
OID Settings
Setting Description
OID Enter the OID of the SNMP object that you want to receive a string from.
Most OIDs begin with 1.3.6.1. However, OIDs that start with 1.0, or
1.1, or 1.2 are also allowed. If you want to entirely disable the
validation of your entry, add the string norfccheck: to the beginning of the
OID, for example, norfccheck:2.0.0.0.1.
If Value Changes Define what the sensor does when the sensor value changes:
§ Ignore changes (default): Take no action on change.
Sensor Display
Sensor Display
2063
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2064
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Example
You must provide all possible return strings for this sensor in one lookup file. For example, consider
an OID that can return one of the three strings Good, Deficient, or Bad. Then you must define a
lookup file 3541 for this sensor that contains all these possible string values as text, each text value in one
lookup entry:
2065
<?xml version="1.0" encoding="UTF-8"?>
<ValueLookup id="mylookupfile" desiredValue="0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="PaeValueLookup.xsd">
<Lookups>
<SingleInt state="Ok" value="0">
Good
</SingleInt>
<SingleInt state="Warning" value="1">
Deficient
</SingleInt>
<SingleInt state="Error" value="2">
Bad
</SingleInt>
</Lookups>
</ValueLookup>
If a retrieved string matches one of the text values, the sensor maps it into the defined integer ("reverse
lookup") that is shown, for example, in data graphs. Depending on the integer, the sensor shows the
respective status and converts the integer back to the original string to show it as a channel value. If the
OID returns a string that the lookup definition does not contain, the sensor shows the Down status 186
with a corresponding error message.
For example, you create an SNMP Custom String Lookup sensor, apply the example lookup definition
from above (store it into the \lookups\custom subfolder of the PRTG program directory), and the specified
OID returns the string Good. Then the sensor maps the string Good to the integer 0 that is shown in the
live graph of the sensor, for example. According to the status definition state="Ok", the sensor status is
Up in this case. The integer 0 is converted back to the string Good, which is shown as the channel value.
Use the lookup type SingleInt for this sensor. BitFields and ranges are not supported.
If you imported an SNMP library 2265 (this is an .oidlib file) that contains lookups 3541 (you can see this
in section Lookup in the MIB Importer), you can define your own sensor states for returning values.
Use the lookupname of the imported SNMP library as id parameter in a custom lookup definition. This
overrides the lookups that an .oidlib file might contain with your own status definitions. See section
Define Lookups 3547 for details about this mechanism.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2066
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
[Value] The retrieved string value and its status, as defined in the corresponding
lookup file
This channel is the primary channel by default.
More
Knowledge Base
How do I find out which OID I need for an SNMP Custom sensor?
§ https://kb.paessler.com/en/topic/903
PAESSLER TOOLS
MIB Importer
§ https://www.paessler.com/tools/mibimporter
2067
7.8.166 SNMP Custom Table Sensor
The SNMP Custom Table sensor monitors entries from a table that is provided via the Simple Network
Management Protocol (SNMP). You can create one new sensor per table row. For each sensor, you can
define up to ten channels. Each channel shows the value of one defined table column.
The SNMP Library sensor 2258 automatically creates SNMP Custom Table sensors when the
Management Information Base (MIB) file that you import contains tables.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2076 .
§ Japanese: SNMP
Remarks
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
2068
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: How do I find out which OID I need for an SNMP Custom sensor?
§ See the Knowledge Base: What can I monitor with the SNMP Custom Table sensor?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
SNMP Table
Setting Description
Table OID Enter the object identifier (OID) of the SNMP table that you want to
monitor. The OID must directly point to an object that represents an
SNMP table. PRTG creates one SNMP Custom Table sensor for each
table row that you select.
If you do not enter an OID, you cannot proceed with channel creation.
Setting Description
Sensor Name Enter a meaningful name to identify the sensor. You can use the
placeholders [tablename] and [rowidentifier]. PRTG replaces them with the
name of the table and the identifying value of the chosen row respectively.
You can select the column that provides the row identifier in the
Identification Column option below.
You can also enter a valid OID that is part of a different SNMP table, for
example, [1.3.6.1.2.1.2.2.1.2], to query information that the current table
does not contain. PRTG adds the same index as in the original table to
the OID.
Table Specific
2069
Setting Description
Table The sensor shows you the table that the OID returns. Select the table
rows that contain the data that you want to monitor. PRTG creates one
sensor for each table row that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Identification Column Define the identification column for the sensors that you want to create.
The sensors use this column to uniquely identify each table row.
We recommend that you use a unique identification column because
it allows the sensors to keep track of changing indexes.
The value of the column that you select as identification column
replaces the [rowidentifier] in the sensor name. This lets you
distinguish sensors that you create for the same SNMP table.
Channel #2 - #10 You can create up to 10 different channels for this sensor. You must
define at least one data channel, so you already see all available settings
for Channel #1. Additionally, you can define Channel #2 up to Channel
#10. To do so, choose between:
§ Disable: Do not create this channel.
Value Type Select the expected numeric type of the results at the OID:
§ Absolute (unsigned integer): Integers without an operational sign, such
as 10 or 120.
§ Absolute (signed integer): Integers with an operational sign, such as -12
or 120.
§ Absolute (float): Float values, such as -5.80 or 8.23.
2070
Setting Description
See below 2072 for other channel settings that you can also change
after sensor creation.
This sensor monitors numeric values only. Make sure that you do not
select columns that return strings because they lead to the Down
status 186 . For example, if you monitor an ifTable, we recommend that you
do not select an ifDescr column because this results in an error.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
2071
Setting Description
§ snmpcustomsensor
§ snmpcustomtable
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
SNMP Table
SNMP Table
Setting Description
Table OID Shows the OID of the SNMP table that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Table Specific
Table Specific
2072
Setting Description
Identifier This is the value of the column that you selected as the Identification
Column during sensor creation. PRTG also displays it in the sensor name
to distinguish it from other sensors you created for the same table with
other table rows. You can change the identifier if you want to.
Identification Column Shows the table column that you chose as identification column.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Channel #x Name Enter a name for the channel in which the sensor shows the desired
result. Enter a string.
Channel #x Column Select the table column that, together with the table row, points to the
value that you want to monitor in this channel. You can choose between
the available columns of the table that you monitor.
Channel #x Value Type Shows the value type of the data that this sensor receives in this channel.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Channel #x Unit Define the unit of the data that this sensor receives in this channel:
§ BytesBandwidth
§ BytesMemory
§ BytesDisk
§ Temperature
§ Percent
§ TimeResponse
§ TimeSeconds
§ TimeHours
§ Count
§ CPU
§ BytesFile
§ SpeedDisk
§ SpeedNet
§ Custom
§ Lookup
For more information about the available units, see section Custom
Sensors 3501 .
2073
Setting Description
To use lookups 3541 with this channel, select Lookup and define the
lookup file in Channel #x Lookup. Do not use Custom if you use
lookups with this sensor.
You cannot use the unit Lookup if you select the value type Delta
(counter) or Absolute (float). You are not able to create the sensor in
this case.
Channel #x Custom Unit This setting is only visible if you select the channel unit Custom above.
Define a unit for the channel value. Enter a string.
Channel #x Lookup This setting is only visible if you select the channel unit Lookup above.
Select a lookup 3541 file that you want to use with this channel.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2074
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2075
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
[Value] The returned numeric values in up to ten channels per table row
More
Knowledge Base
How do I find out which OID I need for an SNMP Custom sensor?
§ https://kb.paessler.com/en/topic/903
Can I monitor UPS systems complying with the UPS MIB (RFC-1628) with PRTG?
§ https://kb.paessler.com/en/topic/72117
2076
7.8.167 SNMP Dell EqualLogic Logical Disk Sensor
The SNMP Dell EqualLogic Logical Disk sensor monitors a volume of a Dell EqualLogic storage system
via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2082 .
Remarks
§ This sensor supports the IPv6 protocol.
2077
§ This sensor has a low performance impact.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Volumes Select the volumes that you want to monitor. PRTG creates one sensor
for each volume that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2078
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ dellequallogic
§ snmpdell
§ dell
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
2079
Setting Description
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Member ID Shows the member ID of the volume that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Volume Description Shows the description of the volume that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2080
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2081
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
2082
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
§ Down status: Not Available, Not Available Due To, Not Available Due To
Internal Error, Not Available Due To Lost Cached Blocks, Not Available
Due To Members Offline, Not Available Due To Missing Pages, Not
Available Due To No Space For Auto Grow, Not Available Due To Snap
Reserve Met, Not Available Due To Thin Max Growth Met,
More
Knowledge Base
2083
7.8.168 SNMP Dell EqualLogic Member Health Sensor
The SNMP Dell EqualLogic Member Health sensor monitors the health of an array member of an
EqualLogic storage system via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2090 .
2084
§ Russian: Рабо то сп о со бн о сть элем ен та Dell EqualLogic п о SNMP
Remarks
§ This sensor works with SNMP v2c and SNMP v3. It does not support SNMP v1. Make sure that you
set the correct SNMP Version in the settings 548 of the parent device or inherit it from objects higher in
the hierarchy 140 .
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Array Member Select the array members that you want to monitor. PRTG creates one
sensor for each array member that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2085
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ dellequallogic
§ snmpdell
§ dell
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2086
Dell EqualLogic Specific
Setting Description
Array Member Shows the name of the member that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Group ID Shows the group ID of the member that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Member ID Shows the ID of the group member that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
2087
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2088
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2089
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Fan Power Cooling The power of the cooling module fan in revolutions per minute (RPM)
Module [#] Fan [#]
Power Supply Power The status of the power supply cooling module
Cooling Module [#]
§ Up status: On and Operating
2090
Channel Description
More
Knowledge Base
2091
7.8.169 SNMP Dell EqualLogic Physical Disk Sensor
The SNMP Dell EqualLogic Physical Disk sensor monitors a disk in a Dell EqualLogic storage system
via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2099 .
Remarks
§ This sensor supports the IPv6 protocol.
2092
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2093
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ dellequallogic
§ snmpdell
§ dell
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2094
Setting Description
Group ID Shows the group ID of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Member ID Shows the group member ID of the physical disk that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Disk Slot Shows the slot number of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Serial Number Shows the serial number of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Manufactured Shows the production date of the physical disk that this sensor monitors.
If this field is empty, the physical disk does not provide information about
the date (this depends on the manufacturer).
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
2095
Setting Description
Graph Type Define how different channels are shown for this sensor:
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2096
Schedules, Dependencies, and Maintenance Window
Setting Description
Schedule Select a schedule from the list. You can use schedules to monitor during
a certain time span (days or hours) every week. Choose from:
§ None
§ Saturdays
§ Sundays
§ Weekdays
§ Weekends
Maintenance Window Select if you want to set up a one-time maintenance window. During a
maintenance window, monitoring stops for the selected object and all child
objects. They show the Paused status instead. Choose between:
§ Do not set up a one-time maintenance window: Do not set up a one-
time maintenance window. Monitoring is always active.
§ Set up a one-time maintenance window: Set up a one-time maintenance
window and pause monitoring. You can define a time span for the pause
below.
To terminate an active maintenance window before the defined end
date, change the time entry in Maintenance Ends to a date in the
past.
Maintenance Begins This setting is only visible if you enable Set up a one-time maintenance
window above. Use the date time picker to enter the start date and time of
the one-time maintenance window.
2097
Setting Description
Maintenance Ends This setting is only visible if you enable Set up a one-time maintenance
window above. Use the date time picker to enter the end date and time of
the one-time maintenance window.
Dependency Type Select a dependency type. You can use dependencies to pause
monitoring for an object depending on the status of a different object. You
can choose from:
§ Use parent: Use the dependency type of the parent object.
Dependency This setting is only visible if you enable Select a sensor above. Click
and use the object selector 225 to select a sensor on which the current
object will depend.
Dependency Delay (Sec.) This setting is only visible if you select Select a sensor above. Define a
time span in seconds for the dependency delay.
After the master sensor for this dependency returns to the Up status,
PRTG additionally delays the monitoring of the dependent objects by the
time span you define. This can prevent false alarms, for example, after a
server restart or to give systems more time for all services to start. Enter
an integer.
This setting is not available if you set this sensor to Use parent or to
be the Master sensor for parent. In this case, define delays in the
parent device settings 535 or in its parent group settings 479 .
2098
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
2099
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
§ https://kb.paessler.com/en/topic/46863
2100
7.8.170 SNMP Dell Hardware Sensor
The SNMP Dell Hardware sensor monitors performance counters on a Dell hardware device via the
Simple Network Management Protocol (SNMP).
The data that you can monitor with this sensor depends on the available performance counters on
the target system.
The SNMP Dell Hardware sensor does not appear as a running sensor, instead it is created as an
SNMP Custom Advanced sensor 2042 or an SNMP Custom Table sensor 2068 .
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2106 .
Remarks
§ This sensor requires 2102 that the Dell OpenManage Server Administrator is installed on the monitored
Dell device.
2101
§ This sensor supports the IPv6 protocol.
Detailed Requirements
Requirement Description
Dell OpenManage Server This sensor needs the Dell OpenManage Server Administrator (OMSA)
Administrator tool to be installed on the target device to monitor it. Make sure that you
enable SNMP in the OMSA.
For details, see the Knowledge Base: What do I need to monitor Dell
servers?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Category Select the performance counters that you want to monitor. PRTG creates
one SNMP Custom Advanced sensor or SNMP Custom Table sensor with
up to 10 channels for each category that you select. If your selection
results in more than 10 channels, PRTG creates the corresponding
amount of SNMP Custom Advanced sensors or SNMP Custom Table
sensors.
Select the counters that you want to monitor with caution. We
recommend that you select only a few counters in this dialog. Use
the search in the table header to filter for specific counters. Selecting too
many counters might result in thousands of sensors or the sensor
creation is canceled.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2102
Basic Sensor Settings
Click the Settings tab of a sensor to change its settings.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ dell
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2103
Dell Hardware Specific
Setting Description
Interface Shows the name of the interface (performance counter) that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Unit String Define the unit of the numeric data that the sensor receives at the
specified OID. Enter a string.
Multiplication If you want to multiply the received data with a certain value, enter the
multiplier. Enter an integer.
Division If you want to divide the received data by a certain value, enter the divisor.
Enter an integer.
If Value Changes Define what the sensor does when the sensor value changes:
§ Ignore changes (default): Take no action on change.
Sensor Display
Sensor Display
2104
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2105
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
[Performance Counter] The value returned by a specific Dell hardware object identifier (OID), for
example
§ Data about the system management software
2106
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
2107
7.8.171 SNMP Dell PowerEdge Physical Disk Sensor
The SNMP Dell PowerEdge Physical Disk sensor monitors a physical disk in a Dell PowerEdge server
via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2114 .
Remarks
§ This sensor requiresthat Integrated Dell Remote Access Controller (iDRAC) 7 or the Dell
2109
2108
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See the Knowledge Base: What do I need to monitor Dell servers?
§ See the Knowledge Base: I can't add Dell PowerEdge sensors to PRTG. What can I do?
§ See the Knowledge Base: My Dell PowerEdge sensor fails to validate disks and I can't add it. What
can I do?
Detailed Requirements
Requirement Description
Dell OpenManage Server This sensor needs the Dell OpenManage Server Administrator (OMSA)
Administrator or iDRAC 7 tool to be installed on the target device to monitor it. Make sure that you
enable SNMP in the OMSA.
For details, see the Knowledge Base: What do I need to monitor Dell
servers?
You can also monitor Dell PowerEdge servers with this sensor via
iDRAC 7.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2109
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpdellphysicaldisksensor
§ physicaldisk
§ snmpdell
§ dell
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2110
Dell PowerEdge Physical Disk Settings
Setting Description
Data Source Shows the interface that PRTG uses to get monitoring data. This is either
Dell OMSA or iDRAC.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2111
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2112
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2113
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2114
My Dell PowerEdge sensor fails to validate disks and I can't add it. What can I do?
§ https://kb.paessler.com/en/topic/61784
2115
7.8.172 SNMP Dell PowerEdge System Health Sensor
The SNMP Dell PowerEdge System Health sensor monitors the system health of a Dell PowerEdge
server via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2122 .
2116
Remarks
§ This sensor requiresthat Integrated Dell Remote Access Controller (iDRAC) 7 or the Dell
2117
§ This sensor has predefined limits for several metrics. You can individually change these limits in the
channel settings. For detailed information about channel limits, see section Channel Settings 3052 .
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See the Knowledge Base: Why does my Dell PowerEdge System Health sensor show a power unit
status error after iDRAC update?
§ See the Knowledge Base: What do I need to monitor Dell servers?
§ See the Knowledge Base: I can't add Dell PowerEdge sensors to PRTG. What can I do?
Detailed Requirements
Requirement Description
Dell OpenManage Server This sensor needs the Dell OpenManage Server Administrator (OMSA)
Administrator or iDRAC 7 tool to be installed on the target device to monitor it. Make sure that you
enable SNMP in the OMSA.
For details, see the Knowledge Base: What do I need to monitor Dell
servers?
You can also monitor Dell PowerEdge servers with this sensor via
iDRAC 7.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Chassis Select the chassis that you want to monitor. PRTG creates one sensor for
each chassis that you select.
2117
Setting Description
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpdellsystemhealthsensor
§ systemhealth
2118
Setting Description
§ snmpdell
§ dell
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Channel Mask Shows the channel mask that describes which channels are available.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Data Source Shows the interface that PRTG uses to get monitoring data. This is either
Dell OMSA or iDRAC.
2119
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2120
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2121
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
2122
Channel Description
§ Up status: OK
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2123
Channel Description
§ Up status: OK
More
Knowledge Base
Why does my Dell PowerEdge System Health sensor show a power unit status error after iDRAC
update?
§ https://kb.paessler.com/en/topic/72855
2124
7.8.173 SNMP Disk Free Sensor
The SNMP Disk Free sensor monitors the free disk space on a logical disk via the Simple Network
Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2130 .
§ Japanese: SNMP
Remarks
§ This sensor uses more generic object identifier (OID) values compared to the SNMP Linux Disk Free
sensor 2269 .
§ This sensor supports the IPv6 protocol.
2125
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the disks that you want to monitor. PRTG creates one sensor for
each disk that you select.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2126
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpdiskfreesensor
§ diskspacesensor
§ diskfree
§ snmp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Disk Shows the name of the disk that this sensor monitors.
2127
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2128
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2129
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2130
My SNMP sensors don’t work. What can I do?
§ https://kb.paessler.com/en/topic/46863
2131
7.8.174 SNMP Fujitsu System Health v2 Sensor
The SNMP Fujitsu System Health v2 sensor monitors the status of a Fujitsu PRIMERGY server via the
integrated Remote Management Controller (iRMC) and Simple Network Management Protocol (SNMP).
The sensor might also work on other Fujitsu devices that have an iRMC available like PRIMEQUEST
servers, some storage systems of the ETERNUS product line, and CELSIUS workstations in racks.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2138 .
2132
Remarks
§ Use an iRMC interface as parent device for this sensor.
§ Make sure that you enable SNMP in the iRMC via ServerView.
§ As of iRMC S5, additional counters for physical disks and logical disks are supported.
§ This sensor supersedes the deprecated SNMP Fujitsu System Health sensor.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
System Specific
Setting Description
Measurements Select the measurements that you want to monitor. PRTG creates one
sensor for each measurement that you select.
2133
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpfujitsusystemhealthsensor
§ snmp
§ systemhealth
§ fujitsu
§ irmc
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2134
System Specific
System Specific
Setting Description
Sensor Version Shows the version of the sensor definition that was used to create this
sensor.
Identifier Shows the value that the sensor uses to find the component in the OID
table.
The identifier has the following format: RowIndex | Unique |
Measurement. For example, 1.1|BATT 3.0V|Voltage.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
OID Index Shows the OID table index that this sensor uses.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Debug Options
Debug Options
2135
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].Data.txt and Result of Sensor [ID].log. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2136
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2137
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
2138
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2139
Channel Description
§ Up status: OK
The sensor can also show CPU speed and core count, fan speed, number of correctable and
uncorrectable errors of the memory module, service processor battery status, condition of the power
supply, power limit status, and power consumption.
More
Knowledge Base
§ https://kb.paessler.com/en/topic/46863
2140
7.8.175 SNMP Hardware Status Sensor
The SNMP Hardware Status sensor monitors the status of a server's hardware component via the Simple
Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2146 .
§ Japanese: SNMP
Remarks
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
§ This sensor supports the IPv6 protocol.
2141
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Hardware Specific
Setting Description
Hardware Components Select the hardware components that you want to monitor. PRTG creates
one sensor for each hardware component that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2142
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ hardwarestatus
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Hardware Specific
Setting Description
Hardware Components Shows the hardware component that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2143
Setting Description
Product ID Shows the product ID of the hardware component that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Description Shows the description of the hardware component that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Type Shows the type of the hardware component that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2144
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2145
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2146
7.8.176 SNMP HP LaserJet Hardware Sensor
The SNMP HP LaserJet Hardware sensor monitors performance counters on an HP LaserJet hardware
device via the Simple Network Management Protocol (SNMP).
The SNMP HP LaserJet Hardware sensor does not appear as a running sensor, instead it is created
as an SNMP Custom Advanced sensor 2042 .
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2152 .
Remarks
§ This sensor supports the IPv6 protocol.
2147
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
HP LaserJet Specific
Setting Description
Category Select the categories that you want to monitor. PRTG creates one SNMP
Custom Advanced sensor including all performance counters that you
select.
The following performance counters for your printer are available:
§ Toner/Status
§ Paper/Status
§ Jam/Status
2148
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ hplaserjet
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
HP LaserJet Specific
HP LaserJet Specific
Setting Description
Interface Shows the name of the category (performance counter) that this sensor
monitors.
2149
Setting Description
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
If Value Changes Define what the sensor does when the sensor value changes:
§ Ignore changes (default): Take no action on change.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2150
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2151
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2152
7.8.177 SNMP HPE BladeSystem Blade Sensor
The SNMP HPE BladeSystem Blade sensor monitors the status of an HPE BladeSystem via the Simple
Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2158 .
Remarks
§ Make sure that you add this sensor to a device whose IP address or Domain Name System (DNS)
name points to the HPE BladeSystem Enclosure hosting the Onboard Administrator.
§ This sensor supports the IPv6 protocol.
2153
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Server Blades Select the blades that you want to monitor. PRTG creates one sensor for
each server blade that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2154
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmp
§ hpe
§ blade
§ bladesystem
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Server Blades Shows the server blade that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2155
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2156
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2157
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2158
More
Knowledge Base
§ https://kb.paessler.com/en/topic/75522
2159
7.8.178 SNMP HPE BladeSystem Enclosure System Health Sensor
The SNMP HPE BladeSystem Enclosure System Health sensor monitors the system health of an HPE
BladeSystem device via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2164 .
Remarks
§ Make sure that you add this sensor to a device whose IP address or Domain Name System (DNS)
name points to the HPE BladeSystem Enclosure hosting the Onboard Administrator.
§ This sensor supports the IPv6 protocol.
2160
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmp
2161
Setting Description
§ hpe
§ blade
§ bladesystem
§ systemhealth
§ health
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2162
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2163
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2164
Channel Description
More
Knowledge Base
2165
7.8.179 SNMP HPE ProLiant Logical Disk Sensor
The SNMP HPE ProLiant Logical Disk sensor monitors a logical disk in an HPE server via the Simple
Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2172 .
Remarks
§ For Gen9 servers or earlier: This sensor requires HPE Insight Management Agents and HPE Insight
Management WBEM Providers to be installed on the target device.
§ For Gen10 servers: This sensor requires HPE Agentless Management and the HPE Agentless
Management Service to be installed on the target device.
§ For Gen10 servers: Use the HPE Integrated Lights Out (iLO) interface as the parent device for this
sensor.
2166
§ This sensor supports monitoring iLO as of iLO version 3. We recommend that you use iLO 4 or later.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Detailed Requirements
Requirement Description
HPE system For Gen9 servers or earlier, this sensor needs a specific HPE system
management tools management tool to be installed on the target device to report data via
SNMP: HPE Insight Management Agents. To receive SNMP data from
redundant array of independent disks (RAID) controllers, you additionally
need HPE Insight Management Agents. For Gen10 servers, this sensor no
longer requires HPE system management tools. Instead, the sensor
needs the HPE Agentless Management Service to be installed on the
target device.
For more details and download links, see the Knowledge Base:
Monitor HP ProLiant via SNMP?
For Gen9 servers or earlier, some of the HPE object identifiers (OID)
that this sensor uses are only accessible via the iLO interface. If this
sensor throws an error that it cannot find "such device types", create a
device that points to the address of the HPE iLO interface (if available) and
add the sensor to this device. We recommend that you use the Agentless
Management feature with configured SNMP. You can set this up in the
iLO configuration interface under Administration | Management | SNMP
Settings. For Gen10 servers, use the HPE iLO interface as parent device
for this sensor.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
2167
Setting Description
Disk Select the logical disks that you want to monitor. PRTG creates one
sensor for each logical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
2168
Setting Description
§ snmphpelogicaldisksensor
§ logicaldisk
§ snmphpe
§ hpe
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Disk Shows the name of the disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
2169
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2170
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2171
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2172
7.8.180 SNMP HPE ProLiant Memory Controller Sensor
The SNMP HPE ProLiant Memory Controller sensor monitors a memory controller in an HPE server via
the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2179 .
2173
Remarks
§ For Gen9 servers or earlier: This sensor requires HPE Insight Management Agents and HPE Insight
Management WBEM Providers to be installed on the target device.
§ For Gen10 servers: This sensor requires HPE Agentless Management and the HPE Agentless
Management Service to be installed on the target device.
§ For Gen10 servers: Use the HPE Integrated Lights Out (iLO) interface as the parent device for this
sensor.
§ If modules are inserted at a later point, you must add this sensor anew.
§ This sensor supports monitoring iLO as of iLO version 3. We recommend that you use iLO 4 or later.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See the Knowledge Base: Which lookup values are supported by the SNMP HPE ProLiant Memory
Controller sensor?
Detailed Requirements
Requirement Description
HPE system For Gen9 servers or earlier, this sensor needs a specific HPE system
management tools management tool to be installed on the target device to report data via
SNMP: HPE Insight Management Agents. To receive SNMP data from
redundant array of independent disks (RAID) controllers, you additionally
need HPE Insight Management Agents. For Gen10 servers, this sensor no
longer requires HPE system management tools. Instead, the sensor
needs the HPE Agentless Management Service to be installed on the
target device.
For more details and download links, see the Knowledge Base:
Monitor HP ProLiant via SNMP?
For Gen9 servers or earlier, some of the HPE object identifiers (OID)
that this sensor uses are only accessible via the iLO interface. If this
sensor throws an error that it cannot find "such device types", create a
device that points to the address of the HPE iLO interface (if available) and
add the sensor to this device. We recommend that you use the Agentless
Management feature with configured SNMP. You can set this up in the
iLO configuration interface under Administration | Management | SNMP
Settings. For Gen10 servers, use the HPE iLO interface as parent device
for this sensor.
2174
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Controllers Select the memory controllers that you want to monitor. PRTG creates
one sensor for each memory controller that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2175
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmphpememorycontrollersensor
§ memorycontroller
§ snmphpe
§ hpe
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Controller Shows the name of the controller that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2176
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2177
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2178
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2179
Channel Description
§ Down status: Bad Config, Degraded, Does Not Match, Missing, Not
Supported
§ Unknown status: Other
More
Knowledge Base
Which lookup values are supported by the SNMP HPE ProLiant Memory Controller sensor?
§ https://kb.paessler.com/en/topic/44803
§ https://kb.paessler.com/en/topic/61108
2180
7.8.181 SNMP HPE ProLiant Network Interface Sensor
The SNMP HPE ProLiant Network Interface sensor monitors a network interface in an HPE server via the
Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2187 .
2181
Remarks
§ For Gen9 servers or earlier: This sensor requires HPE Insight Management Agents and HPE Insight
Management WBEM Providers to be installed on the target device.
§ For Gen10 servers: This sensor requires HPE Agentless Management and the HPE Agentless
Management Service to be installed on the target device.
§ For Gen10 servers: Use the HPE Integrated Lights Out (iLO) interface as the parent device for this
sensor.
§ During sensor creation, the status of each available network interface is shown. If this status is Link
Failure, it is still possible to add a sensor for the respective interface. Though, most likely the sensor
for this interface does not work correctly. The error message in this case is "No Such Name (SNMP
error # 2)".
§ This sensor supports monitoring iLO as of iLO version 3. We recommend that you use iLO 4 or later.
Detailed Requirements
Requirement Description
HPE system For Gen9 servers or earlier, this sensor needs a specific HPE system
management tools management tool to be installed on the target device to report data via
SNMP: HPE Insight Management Agents. To receive SNMP data from
redundant array of independent disks (RAID) controllers, you additionally
need HPE Insight Management Agents. For Gen10 servers, this sensor no
longer requires HPE system management tools. Instead, the sensor
needs the HPE Agentless Management Service to be installed on the
target device.
For more details and download links, see the Knowledge Base:
Monitor HP ProLiant via SNMP?
For Gen9 servers or earlier, some of the HPE object identifiers (OID)
that this sensor uses are only accessible via the iLO interface. If this
sensor throws an error that it cannot find "such device types", create a
device that points to the address of the HPE iLO interface (if available) and
add the sensor to this device. We recommend that you use the Agentless
Management feature with configured SNMP. You can set this up in the
iLO configuration interface under Administration | Management | SNMP
Settings. For Gen10 servers, use the HPE iLO interface as parent device
for this sensor.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
2182
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Network Interfaces Select the network interfaces that you want to monitor. PRTG creates one
sensor for each interface that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
If this status is Link Failure, it is still possible to add a sensor for the
respective interface. Though, most likely the sensor for this interface
does not work correctly. The error message in this case is No Such Name
(SNMP error # 2).
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2183
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmphpenetworkinterfacesensor
§ snmphpe
§ hpe
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Network Interfaces Shows the name of the network interface that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2184
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2185
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2186
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Bad Frames Received The number of bad frames received per second
Bad Frames Transmitted The number of bad frames transmitted per second
Carrier Sense Errors The number of carrier sense errors per second
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
FCS Errors The number of Frame Check Sequence (FCS) errors per second
Frames Too Long The number of frames that are too long per second
Good Frames Received The number of good frames received per second
2187
Channel Description
More
Knowledge Base
§ https://kb.paessler.com/en/topic/46863
2188
7.8.182 SNMP HPE ProLiant Physical Disk Sensor
The SNMP HPE ProLiant Physical Disk sensor monitors a physical disk in an HPE server via the Simple
Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2195 .
2189
Remarks
§ For Gen9 servers or earlier: This sensor requires HPE Insight Management Agents and HPE Insight
Management WBEM Providers to be installed on the target device.
§ For Gen10 servers: This sensor requires HPE Agentless Management and the HPE Agentless
Management Service to be installed on the target device.
§ For Gen10 servers: Use the HPE Integrated Lights Out (iLO) interface as the parent device for this
sensor.
§ The sensor only shows Disk Status and no other channels if it runs in "Limited Monitoring" mode. For
more information, see SNMP HPE ProLiant Physical Disk sensor not showing all information.
§ This sensor supports monitoring iLO as of iLO version 3. We recommend that you use iLO 4 or later.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Detailed Requirements
Requirement Description
HPE system For Gen9 servers or earlier, this sensor needs a specific HPE system
management tools management tool to be installed on the target device to report data via
SNMP: HPE Insight Management Agents. To receive SNMP data from
redundant array of independent disks (RAID) controllers, you additionally
need HPE Insight Management Agents. For Gen10 servers, this sensor no
longer requires HPE system management tools. Instead, the sensor
needs the HPE Agentless Management Service to be installed on the
target device.
For more details and download links, see the Knowledge Base:
Monitor HP ProLiant via SNMP?
For Gen9 servers or earlier, some of the HPE object identifiers (OID)
that this sensor uses are only accessible via the iLO interface. If this
sensor throws an error that it cannot find "such device types", create a
device that points to the address of the HPE iLO interface (if available) and
add the sensor to this device. We recommend that you use the Agentless
Management feature with configured SNMP. You can set this up in the
iLO configuration interface under Administration | Management | SNMP
Settings. For Gen10 servers, use the HPE iLO interface as parent device
for this sensor.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
2190
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
2191
Setting Description
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmphpephysicaldisksensor
§ physicaldisk
§ snmphpe
§ hpe
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Disk Shows the ID of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
2192
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2193
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2194
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Hard Read Errors The number of hard read errors per second
Hard Write Errors The number of hard write errors per second
2195
Channel Description
More
Knowledge Base
SNMP HPE ProLiant Physical Disk sensor not showing all information
§ https://kb.paessler.com/en/topic/70009
2196
7.8.183 SNMP HPE ProLiant System Health Sensor
The SNMP HPE ProLiant System Health sensor monitors the system health of an HPE ProLiant server
via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2202 .
2197
§ Russian: Рабо то сп о со бн о сть систем ы HPE ProLiant п о SNMP
Remarks
§ For Gen9 servers or earlier: This sensor requires HPE Insight Management Agents and HPE Insight
Management WBEM Providers to be installed on the target device.
§ For Gen10 servers: Use the HPE Integrated Lights Out (iLO) interface as the parent device for this
sensor.
§ This sensor has predefined limits for temperatures and broken frames. You can change these limits
individually in the channel settings 3052 .
§ Redundant array of independent disks (RAID) controllers that have no hard disks assigned might
cause the Down status 186 . In this case, deactivate the respective controllers in the HPE ProLiant
BIOS to avoid sensor errors.
§ This sensor supports monitoring iLO as of iLO version 3. We recommend that you use iLO 4 or later.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Detailed Requirements
Requirement Description
HPE system For Gen9 servers or earlier, this sensor needs a specific HPE system
management tools management tool to be installed on the target device to report data via
SNMP: HPE Insight Management Agents. To receive SNMP data from
redundant array of independent disks (RAID) controllers, you additionally
need HPE Insight Management Agents. For Gen10 servers, this sensor no
longer requires HPE system management tools.
For more details and download links, see the Knowledge Base:
Monitor HP ProLiant via SNMP?
For Gen9 servers or earlier, some of the HPE object identifiers (OID)
that this sensor uses are only accessible via the iLO interface. If this
sensor throws an error that it cannot find "such device types", create a
device that points to the address of the HPE iLO interface (if available) and
add the sensor to this device. We recommend that you use the Agentless
Management feature with configured SNMP. You can set this up in the
iLO configuration interface under Administration | Management | SNMP
Settings. For Gen10 servers, use the HPE iLO interface as parent device
for this sensor.
2198
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmphpesystemhealthsensor
§ systemhealth
§ snmphpe
§ hpe
2199
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2200
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2201
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
2202
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2203
Channel Description
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
Why is my SNMP HPE ProLiant System Health sensor in error status after updating PRTG?
§ https://kb.paessler.com/en/topic/61805
2204
7.8.184 SNMP IBM System X Logical Disk Sensor
The SNMP IBM System X Logical Disk sensor monitors a logical disk in an IBM server via the Simple
Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2210 .
Remarks
§ This sensor requires the IBM Systems Director Platform Agent to be installed on the target device.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
2205
§ See the Knowledge Base: What are the requirements to monitor IBM System x?
§ See the Knowledge Base: IBM System X sensors could not find any disk/data on this device
(PE187/PE188/PE194)
Detailed Requirements
Requirement Description
IBM Systems Director This sensor needs the IBM Systems Director Platform Agent to be
Platform Agent installed on the target IBM device to monitor it via SNMP.
For more information, see the Knowledge Base: What are the
requirements to monitor IBM System x?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the logical disks that you want to monitor. PRTG creates one
sensor for each logical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2206
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpibmlogicaldisksensor
§ logicaldisk
§ snmpibm
§ ibm
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2207
IBM System X Logical Disk Settings
Setting Description
Disk Shows the ID of the logical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2208
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2209
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2210
More
Knowledge Base
IBM System X sensors could not find any disk/data on this device (PE187/PE188/PE194)
§ https://kb.paessler.com/en/topic/73914
2211
7.8.185 SNMP IBM System X Physical Disk Sensor
The SNMP IBM System X Physical Disk sensor monitors a physical disk in an IBM server via the Simple
Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2217 .
Remarks
§ This sensor requires the IBM Systems Director Platform Agent to be installed on the target device.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
2212
§ See the Knowledge Base: What are the requirements to monitor IBM System x?
§ See the Knowledge Base: IBM System X sensors could not find any disk/data on this device
(PE187/PE188/PE194)
Detailed Requirements
Requirement Description
IBM Systems Director This sensor needs the IBM Systems Director Platform Agent to be
Platform Agent installed on the target IBM device to monitor it via SNMP.
For more information, see the Knowledge Base: What are the
requirements to monitor IBM System x?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2213
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpibmphysicaldisksensor
§ physicaldisk
§ snmpibm
§ ibm
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2214
IBM System X Physical Disk Settings
Setting Description
Disk Shows the ID of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2215
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2216
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2217
More
Knowledge Base
IBM System X sensors could not find any disk/data on this device (PE187/PE188/PE194)
§ https://kb.paessler.com/en/topic/73914
2218
7.8.186 SNMP IBM System X Physical Memory Sensor
The SNMP IBM System X Physical Memory sensor monitors the memory modules in an IBM server via
the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2225 .
Remarks
§ This sensor requires the IBM Systems Director Platform Agent to be installed on the target device.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
2219
§ See the Knowledge Base: What are the requirements to monitor IBM System x?
§ See the Knowledge Base: IBM System X sensors could not find any disk/data on this device
(PE187/PE188/PE194)
Detailed Requirements
Requirement Description
IBM Systems Director This sensor needs the IBM Systems Director Platform Agent to be
Platform Agent installed on the target IBM device to monitor it via SNMP.
For more information, see the Knowledge Base: What are the
requirements to monitor IBM System x?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Modules Select the memory modules that you want to monitor. PRTG creates one
sensor for each memory module that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2220
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpibmphysicalmemorysensor
§ memorycontroller
§ snmpibm
§ ibm
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2221
IBM System X Physical Memory Settings
Setting Description
Name Shows the name of the memory module that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Caption Shows the caption of the memory module that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Serial Number Shows the serial number of the memory module that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Size Shows the size of the memory module that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
2222
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2223
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2224
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
IBM System X sensors could not find any disk/data on this device (PE187/PE188/PE194)
§ https://kb.paessler.com/en/topic/73914
2225
7.8.187 SNMP IBM System X System Health Sensor
The SNMP IBM System X System Health sensor monitors the system health of an IBM device via the
Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2232 .
Remarks
§ This sensor requires the IBM Systems Director Platform Agent to be installed on the target device.
§ This sensor can also run directly on an Integrated Management Module (IMM) network port and can
show the overall health of IMMs.
2226
§ If the IBM device returns a string in an unexpected format for the percentage of fan revolutions (for
example, "offline"), this sensor shows -1% in the corresponding channel. You can define the Down
status for this via channel limits 3053 .
§ This sensor has predefined limits for several metrics. You can individually change these limits in the
channel settings. For detailed information about channel limits, see section Channel Settings 3052 .
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See the Knowledge Base: What are the requirements to monitor IBM System x?
§ See the Knowledge Base: IBM System X sensors could not find any disk/data on this device
(PE187/PE188/PE194)
Detailed Requirements
Requirement Description
IBM Systems Director This sensor needs the IBM Systems Director Platform Agent to be
Platform Agent installed on the target IBM device to monitor it via SNMP.
For more information, see the Knowledge Base: What are the
requirements to monitor IBM System x?
The SNMP IBM System X System Health sensor can also run directly on an IMM network port and
can show the overall health of IMMs.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Measurements Select the measurements that you want to monitor. PRTG creates one
sensor for each measurement that you select.
2227
Setting Description
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpibmsystemhealthsensor
§ systemhealth
2228
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Source Shows the source of the measurement that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
2229
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2230
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2231
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Fan [#] Tach The fan revolutions per minute (RPM) or the percentage of the possible
maximum
More
Knowledge Base
IBM System X sensors could not find any disk/data on this device (PE187/PE188/PE194)
§ https://kb.paessler.com/en/topic/73914
2232
My SNMP sensors don’t work. What can I do?
§ https://kb.paessler.com/en/topic/46863
2233
7.8.188 SNMP interSeptor Pro Environment Sensor
The SNMP interSeptor Pro Environment sensor queries data from a Jacarta interSeptor Pro
environmental monitoring system via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2239 .
Remarks
§ To monitor data of an interSeptor Pro device with this sensor, you must add the IP address of your
PRTG core server system to Access Control in the interSeptor Pro control panel. Open the interSeptor
Pro web interface, select InterSeptor Pro Menu | System Configuration | Access Control, and allow
access for the IP address of PRTG.
§ This sensor supports the IPv6 protocol.
2234
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Measuring Point Select the measuring points that you want to monitor. PRTG creates one
sensor for each measuring point that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2235
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ interseptor
§ environment
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Name Shows the name of the measuring point that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Measuring Point Shows the measuring point that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2236
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2237
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2238
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2239
7.8.189 SNMP Juniper NS System Health Sensor
The SNMP Juniper NS System Health sensor monitors the system health of a Juniper NetScreen device
via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2244 .
Remarks
§ This sensor supports the IPv6 protocol.
2240
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpjuniper
2241
Setting Description
§ systemhealth
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2242
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2243
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2244
Channel Description
More
Knowledge Base
2245
7.8.190 SNMP LenovoEMC Physical Disk Sensor
The SNMP LenovoEMC Physical Disk sensor monitors a physical disk in a LenovoEMC network-
attached storage (NAS) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2251 .
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
2246
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2247
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmplenovoemc
§ lenovoemc
§ physicaldisk
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Disk Shows the ID of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2248
Setting Description
Name Shows the name of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Size Shows the size of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2249
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2250
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
§ https://kb.paessler.com/en/topic/75522
2251
7.8.191 SNMP LenovoEMC System Health Sensor
The SNMP LenovoEMC System Health sensor monitors the system health of a LenovoEMC network-
attached storage (NAS) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2256 .
2252
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
2253
Setting Description
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmplenovoemc
§ lenovoemc
§ systemhealth
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2254
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2255
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2256
More
Knowledge Base
§ https://kb.paessler.com/en/topic/75522
2257
7.8.192 SNMP Library Sensor
The SNMP Library sensor uses a Management Information Base (MIB) file to create sensors that monitor
a device via the Simple Network Management Protocol (SNMP).
The content of the MIB file determines which data types are available for monitoring. When you
create the sensor, it provides a list of counters that the target device returns based on every object
identifier (OID) in the MIB file.
The SNMP Library sensor does not appear as a running sensor. It uses the meta-scan facility of the
probe to find or to match OIDs from the MIB file. It is useful because you do not need to manually
enter OIDs.
To monitor SNMP-capable devices and to add sensors via the SNMP Library sensor, download the
manufacturer's MIB files for the target device, convert the MIB files to the OID library format, and
import 2265 them into PRTG. PRTG also provides precompiled .oidlib files 2265 that contain the OIDs of
SNMP counters for the most common network devices.
For more information, see the Knowledge Base: How do SNMP, MIBs and OIDs work?
§ German: SNMP-Bibliothek
2258
§ Japanese: SNMP
Remarks
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: How do SNMP, MIBs and OIDs work?
§ See the Knowledge Base: How can I import my MIB files into PRTG?
§ See the Knowledge Base: Can't find a sensor for my device in PRTG but I believe it supports SNMP.
How to proceed?
To import MIB files into PRTG Hosted Monitor, see section Manage a PRTG Hosted Monitor
Subscription 81 .
Add Sensor
PRTG shows a list of .oidlib files that are available on the system. This list contains all library files in the
\snmplibs subfolder of the PRTG program directory 3579 . It contains both the default PRTG library files and
your own library files.
2259
The library file names in the list indicate their purpose. Select a library file that is suitable for the target
device (for example, choose an MIB file that you imported) and confirm via Ok.
If the library file not suitable for the target device, this results in the error message The scan for
available monitoring items has failed on this device: No such object (SNMP error # 222). If you see
this message, click Cancel and try to add the sensor with a different library file.
The SNMP Library sensor takes a list of OIDs that you import from an MIB file into an .oidlib file and
tests the OIDs against the target device to find the OIDs that the target device supports. This discovery
process is the meta-scan. If the sensor finds counters for the target device, the sensor settings open
with a list of all available monitoring items.
2260
List of SNMP Table Values: Sorted by MIB, Category (Table Name/OID), Row , Name
The list of SNMP table values sequentially presents row values to help you find the values you are
interested in.
You can also use the search to find the desired group or category. The search matches individual
strings, so if your string has a space in it, put the search string in quotes.
Select the counters that you want to monitor and click Save. PRTG creates sensors based on the OID
types of the selected counters.
Setting Description
Library Shows the path to the .oidlib file that this sensor uses.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Category Select the parameters that you want to monitor. The list is specific to your
setup. The list contains all counters that are available in the .oidlib file that
match the target device. Select one or more items by enabling or disabling
the check boxes in front of the respective line.
You can also select all items or cancel the selection by using the
check box in the table header.
2261
Setting Description
Depending on the type of the selected entries, PRTG creates the following
sensors:
§ SNMP Custom Advanced sensor : For up to 10 channels for 10 OIDs
2042
§ SNMP Custom String sensor 2050 : For each selected entry that returns a
string value.
§ SNMP Custom Table sensor 2068 : For up to 10 channels for 10 columns
per row. The channels represent the values in the columns of the same
row.
Once you create a custom SNMP sensor, you can create a device
template 3093 from it and prepare it for distribution. For example, you
can refine the template with better name templates.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
2262
Setting Description
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmplibrarysensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Specific
The available sensor settings depend on the sensor that the SNMP Library sensor creates. For details
about settings, see the sections of these sensors:
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
2263
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2264
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information about the MIB Importer, see the Knowledge Base: How can I import my MIB
files into PRTG?
If the.oidlib files that you import contain lookups 3541 (you can see this in section Lookup in the MIB
Importer), you can define your own sensor states for the values that the lookups return. Add an SNMP
Library sensor with this .oidlib file. PRTG then creates a lookup definition file using the lookupname of
the chosen library as id parameter.
PRTG adds the lookups without status definitions, so the sensor shows the Warning status 186 by
default. You must edit the corresponding lookup files to get reliable alarms. Override the lookup
definition with your own custom lookup. For more information, see section Define Lookups 3547 .
To import MIB files into PRTG Hosted Monitor, see section Manage a PRTG Hosted Monitor
Subscription 81 .
2265
The .oidlib files might not support all devices or parameters.
Basic Linux Library (UCD-SNMP- Monitors basic system parameters on Linux systems, such
MIB).oidlib as memory, disk and swap, CPU, and more.
Dell Storage Management.oidlib Monitors Dell storage devices. Possible parameters include
disk arrays, battery and power supply, fan and temperature,
virtual disk, and more.
Dell Systems Management Monitors the hardware of Dell systems. Possible parameters
Instrumentation.oidlib include ACPower and battery, alerts, base board, BIOS,
Baseboard Management Controller (BMC), chassis, COO,
cooling, event log, firmware, integrated development
environment (IDE), keyboard, memory, port, network,
processor, Small Computer System Interface (SCSI), system,
temperature, USB, universally unique identifier (UUID), and
more.
Linux SNMP (AX BGP DisMan Monitors different aspects of Linux systems.
EtherLike Host).oidlib
This file might detect a very large number of interfaces. It
might take a few seconds until the selection table
appears.
Linux SNMP (Framework Proxy Noti Monitors different aspects of Linux systems.
v2).oidlib
This file might detect a very large number of interfaces. It
might take a few seconds until the selection table
appears.
2266
.oidlib File Description
Linux SNMP (IP Net SNMP Noti Monitors different aspects of Linux systems.
OSPF RMON SMUX).oidlib
This file might detect a very large number of interfaces. It
might take a few seconds until the selection table
appears.
Linux SNMP (Source TCP UCD Monitors different aspects of Linux systems.
UDP).oidlib
This file might detect a very large number of interfaces. It
might take a few seconds until the selection table
appears.
Paessler Common OID Library.oidlib Monitors many common hardware devices. It is used for
several sensors and is encrypted.
SNMP Informant std.oidlib Monitors logical disks, processor, memory, and network
interface on Windows systems.
More
Knowledge Base
Can't find a sensor for my device in PRTG but I believe it supports SNMP. How to proceed?
§ https://kb.paessler.com/en/topic/65638
PAESSLER TOOLS
MIB Importer
2267
§ https://www.paessler.com/tools/mibimporter
For more information about sensor settings, see the following sections:
2268
7.8.193 SNMP Linux Disk Free Sensor
The SNMP Linux Disk Free sensor monitors the free space on disks of a Linux/Unix system via the
Simple Network Management Protocol (SNMP).
The free space that this sensor returns shows the disk space that is not yet used. Not all of this
space may be available for use because a part of this space may be reserved by the system, for
example, for redundancy purposes. For details, see the Knowledge Base: Why do SSH Disk Free and
SNMP Linux Disk Free show different values for my target Linux system?
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2277 .
2269
§ Russian: Сво бо дн о е п ро стран ство диска в Linux п о SNMP
Remarks
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: Why do SSH Disk Free and SNMP Linux Disk Free show different values
for my target Linux system?
§ See the Knowledge Base: Monitoring Linux problem - SNMP port not reachable
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
2270
Setting Description
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpdiskfreesensor
§ diskspacesensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
All limits that you define here are valid in addition to the limits in the particular channel settings. The
limits are valid simultaneously, so the first limit that is breached applies.
2271
Setting Description
Percentage Limit Check Enable or disable a limit check for the free space in percentage channels
of all drives. By default, the sensor enables percentage limits with a lower
warning limit and a lower error limit. Choose between:
§ Only use the limits in the settings of the percentage channels: Do not
define sensor limits that are valid for all percentage channels. The
sensor only uses the limits that you define in the settings of the
particular "free space in percent" channels to determine the status.
§ Use the limits of both the sensor and the channel settings: Define
sensor limits that are valid for all percentage channels. Additional fields
appear below. The sensor shows the Warning or the Down status when
free space limits are above or below the limits.
Upper Error Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify an upper limit in percent for the
Down status. If the free disk space of one of your drives exceeds this
value, the sensor changes to the Down status. Enter an integer or leave
the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Upper Warning Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify an upper limit in percent for the
Warning status. If the free disk space of one of your drives exceeds this
value, the sensor changes to the Warning status. Enter an integer or leave
the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Lower Warning Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify a lower limit in percent for the
Warning status. If the free disk space of one of your drives falls below this
value, the sensor changes to the Warning status. Enter an integer or leave
the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
2272
Setting Description
Lower Error Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify a lower limit in percent for the
Down status. If the free disk space of one of your drives falls below this
value, the sensor changes to the Down status. Enter an integer or leave
the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Size Limit Check Enable or disable a limit check for the free bytes channels of all drives:
§ Only use the limits in the settings of the byte size channels: Do not
define sensor limits that are valid for all byte size channels. The sensor
only uses limits that you define in the settings of the particular free
space in bytes channels to determine the status.
§ Use the limits of both the sensor and the channel settings: Define limits
for the sensor that are valid for all byte size channels. Additional fields
appear below. The sensor shows the Warning or Down status when free
space limits are above or below the value.
By default, byte size limits are not enabled for drives.
Upper Error Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify an upper limit. Use the same unit
as shown by the free bytes channels of this sensor (by default this is MB).
If the free disk space of one of your drives exceeds this value, the sensor
changes to the Down status. Enter an integer or leave the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Upper Warning Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify an upper limit. Use the same unit
as shown by the free bytes channels of this sensor (by default this is MB).
If the free disk space of one of your drives exceeds this value, the sensor
changes to the Warning status. Enter an integer or leave the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
2273
Setting Description
Lower Warning Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify a lower limit. Use the same unit
as shown by the free bytes channels of this sensor (by default this is MB).
If the free disk space of one of your drives falls below this value, the
sensor changes to the Warning status. Enter an integer or leave the field
empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Lower Error Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify a lower limit. Use the same unit
as shown by the free bytes channels of this sensor (by default this is MB).
If the free disk space of one of your drives falls below this value, the
sensor changes to the Down status. Enter an integer or leave the field
empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Alarm on If a monitored disk is removed or not found, the sensor sets the values to
Missing/Removed Disk zero. Select the alarm approach in this case:
§ Deactivate alarm (default): Do not send an alert for a removed disk.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
2274
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2275
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2276
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
Why do SSH Disk Free and SNMP Linux Disk Free show different values for my target Linux system?
§ https://kb.paessler.com/en/topic/43183
2277
7.8.194 SNMP Linux Load Average Sensor
The SNMP Linux Load Average sensor monitors the system load average of a Linux/Unix system via the
Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2281 .
Remarks
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: Monitoring Linux problem - SNMP port not reachable
2278
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmploadsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2279
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2280
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2281
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
§ https://kb.paessler.com/en/topic/46863
2282
7.8.195 SNMP Linux Meminfo Sensor
The SNMP Linux Meminfo sensor monitors the memory usage of a Linux/Unix system via the Simple
Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2287 .
2283
Remarks
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: Monitoring Linux problem - SNMP port not reachable
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
2284
Setting Description
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpmeminfosensor
§ memorysensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2285
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2286
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
2287
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Total Free Memory The total free memory (physical memory plus swap) in bytes
Total Free Memory % The total free memory (physical memory plus swap) in percent
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
2288
7.8.196 SNMP Linux Physical Disk Sensor
The SNMP Linux Physical Disk sensor monitors the input/output (I/O) on disks of a Linux/Unix system
via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2294 .
Remarks
§ This sensor supports the IPv6 protocol.
2289
§ This sensor has a low performance impact.
§ See the Knowledge Base: Monitoring Linux problem - SNMP port not reachable
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2290
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpphysicaldisksensor
§ physicaldisk
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
BitMask Shows the bitmask that might be necessary for bug tracking purposes.
2291
Setting Description
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2292
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2293
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Load Average (15 Minute) The load average (15 minutes) in percent
2294
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
2295
7.8.197 SNMP Memory Sensor
The SNMP Memory sensor monitors the memory usage of a system via the Simple Network
Management Protocol (SNMP).
This sensor uses more generic object identifier (OID) values in comparison to the SNMP Linux
Meminfo sensor 2283 .
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2301 .
§ Japanese: SNMP
Remarks
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
2296
§ This sensor supports the IPv6 protocol.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Memory Settings
Setting Description
Memory Type Select the memory types that you want to monitor. PRTG creates one
sensor for each memory type that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2297
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpmemorysensor
§ memory
§ memorysensor
§ snmp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Memory Settings
Memory Settings
Setting Description
Memory Type Shows the type of memory that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2298
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2299
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2300
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2301
My SNMP sensors don’t work. What can I do?
§ https://kb.paessler.com/en/topic/46863
2302
7.8.198 SNMP NetApp Disk Free Sensor
The SNMP NetApp Disk Free sensor monitors the free space on disks of a NetApp storage system via
the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2308 .
2303
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See the Knowledge Base: How can I monitor capacity and used disk space on a NetApp?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
File System Select the disks that you want to monitor. PRTG creates one sensor for
each disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2304
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpdiskfreesensor
§ snmpnetappdiskfreesensor
§ snmpnetapp
§ netapp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2305
Setting Description
File System Shows the name of the disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Virtual Disk Shows the name of the virtual disk that this sensor monitors (if
applicable).
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2306
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2307
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
2308
Channel Description
Replaying, Unmounting
§ Down status: Destroying, Frozen, Unmounted
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
2309
7.8.199 SNMP NetApp Enclosure Sensor
The SNMP NetApp Enclosure sensor monitors the power supply and cooling of an enclosure that is part
of a NetApp storage system via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2316 .
2310
Remarks
§ This sensor only supports NetApp versions up to 8.2.
§ This sensor has predefined limits for several metrics. You can individually change these limits in the
channel settings. For detailed information about channel limits, see section Channel Settings 3052 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Enclosures Select the power supply and cooling measurements of the enclosures that
you want to monitor. PRTG creates one sensor for each
enclosure/measurement combination that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2311
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpnetappenclosuresensor
§ snmpnetapp
§ netapp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2312
Setting Description
Enclosure Shows the identifier of the enclosure that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
NetApp Specific
NetApp Specific
Setting Description
N/A Measurement Define the sensor behavior if the requested NetApp value is not available
Handling (N/A values):
§ Set sensor to down status (default): Set the sensor to the Down
status 186 if a measurement is not available.
We recommend that you use this setting to not miss any hardware
errors.
2313
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2314
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2315
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2316
§ https://kb.paessler.com/en/topic/61108
2317
7.8.200 SNMP NetApp I/O Sensor
The SNMP NetApp I/O sensor monitors the input/output operations per second (IOPS) on a NetApp
storage system via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2322 .
2318
§ Spanish: E/S NetApp (SNMP)
Remarks
§ This sensor only supports NetApp versions up to 8.2.
§ If you use NetApp cDOT 8.3 or NetApp ONTAP 9.0 or later, we recommend that you use the NetApp
I/O sensor 1450 instead.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
2319
Setting Description
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpnetappiosensor
§ snmpnetapp
§ netapp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2320
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2321
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
CIFS Ops The number of Common Internet File System (CIFS) operations per
second
2322
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
FCP Ops The number of Fibre Channel Protocol (FCP) operations per second
ISCSI Ops The number of Internet Small Computer System Interface (iSCSI)
operations per second
NFS Ops The network file system (NFS) operations per second
More
Knowledge Base
2323
7.8.201 SNMP NetApp License Sensor
The SNMP NetApp License sensor monitors the licenses for the services of a NetApp storage system
via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2329 .
Remarks
§ This sensor only supports NetApp versions up to 8.2.
2324
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Licenses for Services Select the licenses for the services that you want to monitor. PRTG
creates one sensor for each license that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2325
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpnetapplicensesensor
§ snmpnetapp
§ netapp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
License for Service Shows the name of the license whose service this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2326
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2327
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2328
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Time Left The time until the license for a service expires
This channel is the primary channel by default.
More
Knowledge Base
2329
7.8.202 SNMP NetApp Logical Unit Sensor
The SNMP NetApp Logical Unit sensor monitors the input/output operations per second (IOPS) on a
logical unit of a NetApp storage system via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2336 .
2330
Remarks
§ This sensor only supports NetApp versions up to 8.2.
§ If you use NetApp cDOT 8.3 or NetApp ONTAP 9.0 or later, we recommend that you use the NetApp
LUN sensor 1471 instead.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Logical Unit Select the logical units that you want to monitor. PRTG creates one
sensor for each logical unit that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Alignment Monitoring Select if the sensor checks the alignment of the logical unit:
§ Do not check alignment
2331
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpdiskfreesensor
§ snmpnetappdiskfreesensor
§ snmpnetapp
§ netapp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2332
NetApp Logical Unit Settings
Setting Description
Logical Unit Shows the name of the logical unit that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Alignment Monitoring Shows if the sensor checks the alignment of the logical unit.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Comment Shows comments for the logical unit that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
2333
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2334
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2335
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2336
7.8.203 SNMP NetApp Network Interface Sensor
The SNMP NetApp Network Interface sensor monitors a network card of a NetApp storage system via
the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2342 .
Remarks
§ This sensor only supports NetApp versions up to 8.2.
2337
§ If you use NetApp cDOT 8.3 or NetApp ONTAP 9.0 or later, we recommend that you use the NetApp
NIC sensor 1482 instead.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Network Interface Select the network interfaces that you want to monitor. PRTG creates one
sensor for each interface that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2338
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpnetappnetworkinterfacesensor
§ snmpnetapp
§ netapp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Network Interface Shows the name of the network interface that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2339
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2340
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2341
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2342
What SNMP sensors does PRTG offer?
§ https://kb.paessler.com/en/topic/75522
2343
7.8.204 SNMP NetApp System Health Sensor
The SNMP NetApp System Health sensor monitors the status of a NetApp storage system via the
Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2348 .
2344
§ Spanish: Salud de sistema NetApp (SNMP)
Remarks
§ This sensor supports the IPv6 protocol.
§ If you use NetApp cDOT 8.3 or NetApp ONTAP 9.0 or later, we recommend that you use the NetApp
System Health sensor 1513 instead.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
2345
Setting Description
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpnetappsystemhealthsensor
§ snmpnetapp
§ netapp
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2346
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2347
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
2348
Channel Description
Disks Failing Soon The number of disks that will fail soon
Disks Out Of Date The number of disks that are out of date
Disks Verifying Parity The number of disks that are verifying parity
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2349
7.8.205 SNMP Nutanix Cluster Health Sensor
The SNMP Nutanix Cluster Health sensor monitors the status and the performance of a Nutanix cluster
via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2356 .
Remarks
§ Nutanix devices only support SNMP v3. Make sure that you select SNMP v3 in the credentials for
SNMP devices 548 settings of the parent device.
§ This sensor supports the IPv6 protocol.
2350
§ This sensor has a low performance impact.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
System Specific
Setting Description
Measurement Select the measurements that you want to monitor. PRTG creates one
sensor for each measurement that you select.
Setting Description
2351
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpnutanixclusterhealthsensor
§ snmp
§ nutanix
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
System Specific
System Specific
2352
Setting Description
Sensor Version Shows the version of the sensor definition that was used to create this
sensor.
Identifier Shows the value that the sensor uses to find the component in the OID
table.
OID Index Shows the OID table index that this sensor uses.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].Data.txt and Result of Sensor [ID].log. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
2353
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2354
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2355
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
I/O Bandwidth The bandwidth of input/output (I/O) operations in bytes per second
More
Knowledge Base
2356
7.8.206 SNMP Nutanix Hypervisor Sensor
The SNMP Nutanix Hypervisor sensor monitors a Nutanix hypervisor via the Simple Network
Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2363 .
2357
Remarks
§ Nutanix devices only support SNMP v3. Make sure that you select SNMP v3 in the credentials for
SNMP devices 548 settings of the parent device.
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
System Specific
Setting Description
Measurements Select the measurements that you want to monitor. PRTG creates one
sensor for each measurement that you select.
2358
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpnutanixhypervisorsensor
§ snmp
§ nutanix
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
System Specific
System Specific
2359
Setting Description
Sensor Version Shows the version of the sensor definition that was used to create this
sensor.
Identifier Shows the value that the sensor uses to find the component in the OID
table.
OID Index Shows the OID table index that this sensor uses.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].Data.txt and Result of Sensor [ID].log. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
2360
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2361
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2362
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
I/O Bandwidth The bandwidth of input/output (I/O) operations in bytes per second
Package Drop Out The number of dropped outgoing packages per second
More
Knowledge Base
2363
7.8.207 SNMP Poseidon Environment Sensor
The SNMP Poseidon Environment sensor monitors performance counters for environmental
measurements on Poseidon hardware via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2369 .
Remarks
§ This sensor supports the IPv6 protocol.
§ For a general introduction to the technology behind SNMP, see section Monitoring via SNMP 3348 .
2364
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Measuring Point Select the measuring points that you want to monitor. PRTG creates one
sensor for each measuring point that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2365
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ apcups
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Name Shows the name of the measurement that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Unit Shows the unit of the value measurement that this sensor monitors.
2366
Setting Description
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Measuring Point Shows the measuring points that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2367
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2368
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2369
7.8.208 SNMP Printer Sensor
The SNMP Printer sensor monitors various types of printers via the Simple Network Management
Protocol (SNMP).
The sensor supports the following printers, among others: HP OfficeJet printers, HP LaserJet
printers, RICOH SP 5200, SP 3410, SP C242DN, MP C3003, and MP C2503.
The sensor also shows the printer status as the sensor message.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2374 .
§ Japanese: SNMP
2370
Remarks
§ This sensor supports the following printers, among others: HP OfficeJet printers, HP LaserJet printers,
RICOH SP 5200, SP 3410, SP C242DN, MP C3003, and MP C2503.
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
2371
Setting Description
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmp
§ printer
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2372
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2373
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2374
Channel Description
More
Knowledge Base
§ https://kb.paessler.com/en/topic/75522
2375
7.8.209 SNMP QNAP Logical Disk Sensor
The SNMP QNAP Logical Disk sensor monitors a logical disk in a Quality Network Appliance Provider
(QNAP) network-attached storage (NAS) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2381 .
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
2376
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the logical disks that you want to monitor. PRTG creates one
sensor for each logical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2377
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpqnap
§ qnap
§ logicaldisk
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Description Shows the name of the disk that this sensor monitors.
2378
Setting Description
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
File System Shows the file system of the disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2379
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2380
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2381
7.8.210 SNMP QNAP Physical Disk Sensor
The SNMP QNAP Physical Disk sensor monitors a physical disk in a Quality Network Appliance
Provider (QNAP) network-attached storage (NAS) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2387 .
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
2382
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
§ Fahrenheit
Setting Description
2383
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpqnap
§ qnap
§ physicaldisk
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2384
Setting Description
Description Shows information about the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Model Shows the model of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Capacity Shows the capacity of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2385
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2386
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2387
Channel Description
More
Knowledge Base
2388
7.8.211 SNMP QNAP System Health Sensor
The SNMP QNAP System Health sensor monitors the system health of a Quality Network Appliance
Provider (QNAP) network-attached storage (NAS) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2393 .
Remarks
§ This sensor supports the IPv6 protocol.
2389
§ For a general introduction to the technology behind SNMP, see section Monitoring via SNMP 3348 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
§ Fahrenheit
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
2390
Setting Description
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpqnap
§ qnap
§ systemhealth
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Unit Shows the unit of temperature measurement that the sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
2391
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2392
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Fan [#] (System FAN [#]) The fan revolutions per minute (RPM)
2393
Channel Description
More
Knowledge Base
2394
7.8.212 SNMP Rittal CMC III Hardware Status Sensor
The SNMP Rittal CMC III Hardware Status sensor monitors the overall status of Rittal data center
hardware, for example Rittal Computer Multi Control version 3 (CMC III) processing units, Rittal power
distribution units (PDU), or Rittal IoT Interfaces and the hardware status of every attached external
sensor via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2399 .
2395
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
2396
Setting Description
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmprittal
§ cmc3
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Sensor Display
Sensor Display
Setting Setting
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2397
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2398
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2399
7.8.213 SNMP RMON Sensor
The SNMP RMON sensor monitors traffic on a device using the Remote Monitoring (RMON) standard via
the Simple Network Management Protocol (SNMP).
You can create it on an SNMP-compatible device that provides traffic data via RMON. Depending on
the data that the device returns, PRTG displays traffic data for each port in different channels, which
allows a detailed analysis. If available, the sensor queries 64-bit counters.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2406 .
2400
§ Spanish: RMON (SNMP)
Remarks
§ You can define the displayed sensor name with port name templates in the SNMP compatibility
options 571 of the parent device.
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
§ See the Knowledge Base: What value does the Transmitted channel of an RMON sensor show?
§ See the Knowledge Base: SNMP Traffic sensors when the device changes them
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
RMON Specific
Setting Description
Ports Select the ports that you want to monitor. PRTG creates one sensor for
each port that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
You can select interfaces and cancel the selection by clicking Select
all connected interfaces, Select all disconnected interfaces, and
Deselect all interfaces.
2401
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmprmon
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2402
RMON Specific
RMON Specific
Setting Description
Port Shows the number of the interface port that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Channel Mask Describes which channels are available and might be useful for the
Paessler support team.
This setting is for your information only. You cannot change it.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2403
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2404
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2405
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
CRC Errors The number of cyclic redundancy check (CRC) errors per second
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Packets <= 64 Byte The number of packets with less than or equal to 64 bytes per second
Packets 65 - 127 Bytes The number of packets with 65 - 127 bytes per second
Packets 128 - 255 Bytes The number of packets with 128 - 255 bytes per second
Packets 256 - 511 Bytes The number of packets with 256 - 511 bytes per second
Packets 512 - 1023 The number of packets with 512 - 1023 bytes per second
Bytes
Packets 1024 - 1518 The number of packets with 1024 - 1518 bytes per second
Bytes
2406
Channel Description
More
Knowledge Base
2407
7.8.214 SNMP SonicWall System Health Sensor
The SNMP SonicWall System Health sensor monitors health values of a SonicWall Network Security
Appliance (NSA) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2412 .
Remarks
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: Why does PRTG write error messages into my SonicWall log?
2408
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpsonicwallsystemhealthsensor
§ systemhealth
2409
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2410
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2411
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2412
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
2413
7.8.215 SNMP SonicWall VPN Traffic Sensor
The SNMP SonicWall VPN Traffic sensor monitors the traffic of an Internet Protocol Security (IPsec)
VPN on a SonicWall Network Security Appliance (NSA) via the Simple Network Management Protocol
(SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2420 .
Remarks
§ This sensor supports the IPv6 protocol.
2414
§ This sensor has a very low performance impact.
§ See the Knowledge Base: Why does PRTG write error messages into my SonicWall log?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Connections Select the connections that you want to monitor. PRTG creates one
sensor for each connection that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Identification Method Define how you want to identify the connection that you want to monitor:
§ Index: Every connection has a unique index. This is the safest method
to identify your connection. If the connection is lost and reconnected, it
receives a new index.
§ Remote IP address: If the target of the VPN always has the same IP
address, you can use this IP address to identify the connection.
§ Security policy name: If you use a different security policy for every
VPN, you can use its name to identify the connection.
§ Remote IP address and security policy name: You can also combine
both identification methods.
§ Remote IP address, security policy name, and IP address ranges: If you
use separate connections for specific IP address ranges, identify the
connection by remote IP address, security policy name, and IP address
ranges.
§ IP address ranges: Use IP address ranges only to identify the
connection.
The sensor always uses the first connection that it finds that matches
all criteria.
2415
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpsonicwallvpntrafficsensor
§ traffic
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2416
SonicWall VPN Specific
Setting Description
Security Policy Shows the security policy of the connection that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Remote IP Address Shows the remote IP address of the connection that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Source IP Addresses Shows the source IP addresses of the connection that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Destination IP Addresses Shows the destination IP addresses of the connection that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Index Shows the index of the connection that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Identification Method Shows the identification method of the connection that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2417
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2418
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2419
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Fragmented Packets Out The number of outgoing fragmented packets per second
2420
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
2421
7.8.216 SNMP Synology Logical Disk Sensor
The SNMP Synology Logical Disk sensor monitors a logical disk in a Synology network-attached
storage (NAS) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2426 .
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
2422
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the logical disks that you want to monitor. PRTG creates one
sensor for each logical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2423
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpsynology
§ synology
§ logicaldisk
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Disk Shows the name of the disk that this sensor monitors.
2424
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2425
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2426
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
§ https://kb.paessler.com/en/topic/46863
2427
7.8.217 SNMP Synology Physical Disk Sensor
The SNMP Synology Physical Disk sensor monitors a physical disk in a Synology network-attached
storage (NAS) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2433 .
Remarks
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
2428
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2429
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpsynology
§ synology
§ physicaldisk
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Disk Name Shows the name of the disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2430
Setting Description
Model Shows the model of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Type Shows the type of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2431
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2432
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
2433
7.8.218 SNMP Synology System Health Sensor
The SNMP Synology System Health sensor monitors the system health of a Synology network-attached
storage (NAS) via the Simple Network Management Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2438 .
Remarks
§ This sensor supports the IPv6 protocol.
2434
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See the Knowledge Base: Why does my Synology System Health sensor show incorrect CPU and
memory values?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
2435
Setting Description
§ snmpsynology
§ synology
§ systemhealth
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2436
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2437
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2438
Channel Description
More
Knowledge Base
Why does my Synology System Health sensor show incorrect CPU and memory values?
§ https://kb.paessler.com/en/topic/63283
2439
7.8.219 SNMP System Uptime Sensor
The SNMP System Uptime sensor monitors the uptime of a device via the Simple Network Management
Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2443 .
§ Japanese: SNMP
Remarks
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
§ This sensor supports the IPv6 protocol.
§ See the Knowledge Base: Why does the SNMP System Uptime sensor report wrong values?
2440
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpuptimesensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2441
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2442
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2443
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
Why does the SNMP System Uptime sensor report wrong values?
§ https://kb.paessler.com/en/topic/61249
2444
7.8.220 SNMP Traffic Sensor
The SNMP Traffic sensor monitors traffic on a device via the Simple Network Management Protocol
(SNMP).
You can create the sensor on a device that provides traffic data.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2452 .
§ Japanese: SNMP
Remarks
§ You can define the displayed sensor name with port name templates in the SNMP compatibility
options 571 of the parent device.
2445
§ We recommend that you select SNMP v2c (most common) or SNMP v3 in the credentials for SNMP
devices 548 of the parent device (if supported by the target device). SNMP v1 does not support 64-bit
counters, which may result in invalid data. For details, see the Knowledge Base: SNMP Traffic sensor
suddenly drops at 610Mbps
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
§ This sensor supports the IPv6 protocol.
§ The auto-discovery always creates SNMP Traffic sensors for all interfaces whose SNMP traffic
269
counters are above 0. As a result, every interface that has had traffic since the last restart of the target
device is added, even if it is currently disconnected or disabled. For details, see the Knowledge Base:
How does auto-discovery with SNMP Traffic sensors work?
§ See the Knowledge Base: SNMP Traffic sensors when the device changes them
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Traffic Specific
Setting Description
Interface Number Select the ports on SNMP devices with multiple interfaces that you want
to monitor. PRTG creates one sensor for each port that you select.
Name for Traffic In For the standard channel Traffic In, enter the channel name here. The
Channel sensor shows it in graphs and tables. You can change this description
and the description of all other channels in the channel settings 3052 later.
Name for Traffic Out For the standard channel Traffic Out, enter the channel name here. The
Channel sensor shows it in graphs and tables. You can change this description
and the description of all other channels in the channel settings later.
2446
Setting Description
Name for Traffic Total For the standard channel Traffic Total, enter the channel name here. The
Channel sensor shows it in graphs and tables. You can change this description
and the description of all other channels in the channel settings later.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ bandwidthsensor
§ snmptrafficsensor
2447
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Traffic Specific
Traffic Specific
2448
Setting Description
Interface Number Shows the number and name of the interface in the physical device that
this sensor monitors.
Additional Channels By default, each SNMP Traffic sensor creates the channels Traffic In,
Traffic Out, and Traffic Total. Select additional channels for all interfaces.
Click the respective channel names to mark the channels and to monitor
their data.
You can choose between the following additional channels:
§ Errors in and Errors out: The number of incoming and outgoing packets
that could not be delivered because of errors.
§ Discards in and Discards out: The number of discarded incoming and
outgoing packets even though no errors have been detected.
§ Unicast packets in Unicast packets out: The number of unicast packets
that have been delivered.
§ Non Unicast packets in and Non Unicast packets out (32-bit only): The
number of non-unicast packets that have been delivered.
§ Multicast packets in and Multicast packets out (64-bit only): The
number of delivered packets that were addressed to a multicast
address.
§ Broadcast packets in and Broadcast packets out (64-bit only): The
number of delivered packets that were addressed to a broadcast
address
§ Unknown Protocols: The number of received packets that were
discarded because of an unknown or unsupported protocol.
You cannot delete additional channels later. You can only disable
them.
If the sensor shows the Warning status 186 with the message
Channels not available, you can disable the affected channels to
remove the warning.
Connection Status Define how PRTG reacts when an interface is operational. An interface
Handling that is not operational is, for example, an Ethernet port on a switch with
no cable plugged in. This setting is valid for all selected interfaces.
Choose between:
§ Show down status for all disconnected states: Show the Down status
for a disconnected interface. This applies if the ifOperStatus of the
interface is not "up".
§ Show down status when disconnected, ignore when deactivated: Show
the Down status for a disconnected interface only if it is not deliberately
deactivated in the configuration. This applies if the ifOperStatus of the
interface is not "up" and the ifAdminStatus is "up". So the sensor stays 2449
in the Up status when the interface has been deactivated.
§ Ignore all disconnected states: Show the Up status.
Monitoring is discontinued without notice.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2450
For more information, see section Inheritance of Settings 144 .
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2451
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2452
Channel Description
More
Knowledge Base
2453
7.8.221 SNMP Trap Receiver Sensor
The SNMP Trap Receiver sensor receives and analyzes Simple Network Management Protocol (SNMP)
traps.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2463 .
§ German: SNMP-Trap-Empfänger
§ Japanese: SNMP
Remarks
§ This sensor has a very high performance impact. Use it with care. We recommend that you use no
more than 50 sensors of this sensor type on each probe.
§ This sensor does not support SNMP v3 traps. Use SNMP v1 or v2c instead.
2454
§ Add this sensor to the probe device to receive all messages of the remote probe system.
§ Add this sensor to a specific device to directly receive all messages from this device. This makes this
sensor faster than when you use source filters.
§ This sensor supports the IPv6 protocol.
§ You can use specific placeholders in email notification templates 3182 to see the messages when you
receive an email notification. See section List of Placeholders for Notifications 3704 .
§ The sensor states of this sensor persist for one scanning interval only. After showing a Warning
186
status or a Down status, and if there is no warning or error message in the following scanning interval,
the sensor shows an Up status again. For a workaround, see the Knowledge Base: How can I
configure sensors using speed limits to keep the status for more than one interval?
§ With the available filter options, you can individually define which types of messages the sensor
considers for monitoring, and which messages it categorizes as warning or error messages.
Depending on the filters, received messages are counted in the respective channels.
§ If you do not add the sensor to a probe device but to a different device in PRTG, be careful with the
configuration: Ensure that the IP address or Domain Name System (DNS) name of the parent device
matches the proper sender. For example, if you want to receive messages from a storage area
network (SAN), you might need to add a device to PRTG using the IP address of a specific array
member that sends the messages. Providing a DNS name that points to the IP address of a whole
group might not work for SANs.
§ In PRTG Network Monitor, you can copy the Management Information Base (MIB) file for your traps
into the \MIB subfolder of the PRTG program directory 3579 to translate the object identifiers (OID) for
the traps into readable messages. For details, see the Knowledge Base: How can I show the name of
a received OID in PRTG?
§ You cannot use this sensor in cluster mode. You can only set it up on a local probe or a remote probe
but not on a cluster probe.
§ See the Knowledge Base: How do I test an SNMP Trap Receiver sensor?
§ For a general introduction to the receiver's configuration, see section Monitoring Syslogs and SNMP
Traps 3390 .
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
To import MIB files into PRTG Hosted Monitor, see section Manage a PRTG Hosted Monitor
Subscription 81 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
2455
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmptrapsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2456
Setting Description
Port Enter the number of the port on which the sensor listens for SNMP traps.
The default port is 162. Enter an integer.
We recommend that you use the default value.
Purge Messages After Define for how long PRTG stores received trap messages for analysis.
Choose a period of time from the dropdown list.
Filter
For detailed information, see section Filter Rules 2461 .
Filter
2457
Setting Description
Include Filter Define if you want to filter traps. If you leave this field empty or use the
keyword any, the sensor processes all data. To include only specific
types of traps, define filters using a special syntax.
Exclude Filter Define which types of traps the sensor discards and does not process. To
exclude specific types of traps, define filters using a special syntax.
Warning Filter Define which types of traps count for the Warnings channel. To categorize
received traps as warning messages, define filters using a special syntax.
The sensor collects messages until a scanning interval ends. As long
as the scanning interval is running, no status change happens. By
default, the sensor changes to the Warning status 186 after a scanning
interval finishes and there was at least one warning message (and no error
message) during this scanning interval. The sensor shows the Warning
status at least until the succeeding scanning interval finishes. If the
sensor does not receive any warning or error message in this scanning
interval, its status changes to the Up status again with the start of the
next scanning interval.
Error Filter Define which types of traps count for the Errors channel. To categorize
received traps as error messages, define filters using a special syntax.
The sensor collects messages until a scanning interval ends. As long
as the scanning interval is running, no status change happens. By
default, the sensor changes to the Down status after a scanning interval
finishes and there was at least one error message during this scanning
interval. The sensor shows the Down status at least until the succeeding
scanning interval finishes. If the sensor does not receive any warning or
error message in this scanning interval, its status changes to the Up
status again with the start of the next scanning interval.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
2458
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2459
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2460
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result (recommended): Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\debug subfolder of
the PRTG data directory 3579 on the probe system. The file name is
Sensor [ID]_[Date].log. This setting is for debugging purposes.
Use with caution. We recommend that you only use this setting for
a short time because it can create huge data files.
Filter Rules
Filter rules are used for the include, exclude, warning, and error definition fields of the SNMP Trap
Receiver sensor. They are based on the following format:
field[filter]
You can use include and exclude filters to define which traps to monitor or use warning and error filters to
define how to categorize received traps. Provide these filters in the sensor settings as formulas.
Formulas are fields that you can combine with boolean operators (AND, OR, NOT) and brackets.
2461
Field Parameter Examples
PRTG only shows received traps in the table on the Overview tab after an (automatic) page refresh
following a sensor scan. The default value for auto refresh 3172 is 30 seconds.
For more details and further filter options, click the Messages tab of the SNMP Trap Receiver sensor.
You see all received messages in a table list. At the top, you have display filter options to drill down into
the data for specific events of your interest. The filters are the same as those that are available in the
sensor settings, but you can define them without using formulas. Provide the desired parameters and
PRTG automatically loads the filtered list.
2462
PRTG automatically applies boolean operators to the filters in the following manner: parameters
across all columns are combined with AND, and parameters within a single column are combined
with OR.
The parameters that you enter in the filters must exactly match the parameters in the message.
They are case sensitive.
You can open advanced filter settings by clicking in the Filter row. The Advanced Filter appears in a
popup window. In the text field, you can define a filter using the syntax as described in section Filter
Rules 2461 .
If you provided filter parameters on the Messages tab, the advanced filter already includes them as a
corresponding formula with the correct syntax. You can adjust this filter to your needs. You can also
copy the automatically created and manually adjusted formula for usage in the filter fields of the sensor
settings.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Drops The number of dropped packets per second on the SNMP trap collector
port
More
Knowledge Base
How can I configure sensors using speed limits to keep the status for more than one interval?
§ https://kb.paessler.com/en/topic/73212
2463
How can I show the name of a received OID in PRTG?
§ https://kb.paessler.com/en/topic/63562
2464
7.8.222 SNMP Windows Service Sensor
The SNMP Windows Service sensor monitors a Windows service via the Simple Network Management
Protocol (SNMP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2469 .
Remarks
§ This sensor cannot distinguish the status "not installed" from "not running".
§ It might not work to query data from a probe device via SNMP (querying localhost, 127.0.0.1, or ::1).
Add this device to PRTG 351 with the IP address that it has in your network and create the SNMP
sensor on this device instead.
§ This sensor supports the IPv6 protocol.
2465
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
services Select the services that you want to monitor. PRTG creates one sensor
for each service that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2466
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ snmpservicesensor
§ servicesensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
2467
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2468
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2469
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2470
7.8.223 SNTP Sensor
The SNTP sensor monitors a Simple Network Time Protocol (SNTP) server.
The sensor tries to get a valid time stamp from the server up to three times per scan until it reports
an error.
SNTP Sensor
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2475 .
§ French: SNTP
§ German: SNTP
§ Japanese: SNTP
§ Portuguese: SNTP
§ Russian: SNTP
§ Spanish: SNTP
Remarks
§ This sensor supports the IPv6 protocol.
2471
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sntpsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2472
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Specific
Sensor Specific
Setting Description
Timeout (Sec.) Enter a timeout in seconds for the request. Enter an integer. The
maximum timeout value is 900 seconds (15 minutes).
If the reply takes longer than this value, the sensor cancels the
request and shows a corresponding error message.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2473
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2474
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2475
7.8.224 Soffico Orchestra Channel Health Sensor
The Soffico Orchestra Channel Health sensor monitors the state and the overall number of successful or
unsuccessful channel calls.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2482 .
Remarks
§ This sensor requires a Soffico license and Orchestra 4.8.2.5 or later.
§ You can define credentials for Soffico Orchestra 565 in settings that are higher in the object
2476
§ This sensor has a medium performance impact.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Channel Name Select the Orchestra channels that you want to monitor. PRTG creates
one sensor for each channel that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2477
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ orchestra
§ orchestrachannelhealth
§ soffico
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Channel Name Shows the name of the Orchestra channel that this sensor monitors.
The channel name consists of the Orchestra scenario, a slash, and
the Orchestra channel name.
2478
Setting Description
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Type Shows the type of the Orchestra channel that this sensor monitors.
The sensor supports inbound and outbound channels.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2479
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].log. This setting is for debugging purposes. PRTG
overwrites this file with each scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
The recommended scanning interval of this sensor is 5 minutes.
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2480
Schedules, Dependencies, and Maintenance Window
You cannot interrupt the inheritance for schedules, dependencies, and maintenance windows. The
corresponding settings from the parent objects are always active. However, you can define additional
schedules, dependencies, and maintenance windows. They are active at the same time as the parent
objects' settings.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2481
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2482
§ https://kb.paessler.com/en/topic/61108
2483
7.8.225 SSH Disk Free Sensor
The SSH Disk Free sensor monitors the free space on disks of a Linux/Unix system using Secure Shell
(SSH).
The free space that this sensor returns shows the available disk space of the volume, minus a
reserve defined for this volume (for example, for redundancy purposes). So, this sensor shows the
disk space that is actually available for use. The size of the reserved disk space can be defined with
tune2fs. For details, see the Knowledge Base: Why do SSH Disk Free and SNMP Linux Disk Free show
different values for my target Linux system?
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2494 .
§ Japanese: SSH
2484
Remarks
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ This sensor cannot support all Linux/Unix and macOS distributions.
§ See the Knowledge Base: SSH and SFTP sensors in Unknown status
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the disks that you want to monitor. PRTG creates two channels for
each disk that you select.
You can select up to 100 disks. If you select more disks, you cannot
create the sensor. Add the sensor multiple times to monitor more
than 100 disks with several sensors.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2485
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshdiskfreesensor
§ diskfreesensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2486
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer. The maximum timeout value is 900 seconds
(15 minutes).
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
2487
Setting Description
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
All limits that you define here are valid in addition to the limits defined in the particular Channel
settings. The limits are valid simultaneously, so the first limit that is breached applies.
2488
Set Limits Checkes for ALL Disks
Setting Description
Percentage Limit Check Enable or disable a limit check for the free space in percentage channels
of all drives. By default, the sensor enables percentage limits with a lower
warning limit and a lower error limit. Choose between:
§ Only use the limits in the settings of the percentage channels: Do not
define sensor limits that are valid for all percentage channels. The
sensor only uses the limits that you define in the settings of the
particular "free space in percent" channels to determine the status.
§ Use the limits of both the sensor and the channel settings: Define
sensor limits that are valid for all percentage channels. Additional fields
appear below. The sensor shows the Warning or the Down status when
free space limits are above or below the limits.
Upper Error Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify an upper limit in percent for the
Down status. If the free disk space of one of your drives exceeds this
value, the sensor changes to the Down status. Enter an integer or leave
the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Upper Warning Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify an upper limit in percent for the
Warning status. If the free disk space of one of your drives exceeds this
value, the sensor changes to the Warning status. Enter an integer or leave
the field empty.
2489
Setting Description
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Lower Warning Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify a lower limit in percent for the
Warning status. If the free disk space of one of your drives falls below this
value, the sensor changes to the Warning status. Enter an integer or leave
the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Lower Error Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify a lower limit in percent for the
Down status. If the free disk space of one of your drives falls below this
value, the sensor changes to the Down status. Enter an integer or leave
the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Size Limit Check Enable or disable a limit check for the free bytes channels of all drives:
§ Only use the limits in the settings of the byte size channels: Do not
define sensor limits that are valid for all byte size channels. The sensor
only uses limits that you define in the settings of the particular free
space in bytes channels to determine the status.
§ Use the limits of both the sensor and the channel settings: Define limits
for the sensor that are valid for all byte size channels. Additional fields
appear below. The sensor shows the Warning or Down status when free
space limits are above or below the value.
By default, byte size limits are not enabled for drives.
Upper Error Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify an upper limit. Use the same unit
as shown by the free bytes channels of this sensor (by default this is MB).
If the free disk space of one of your drives exceeds this value, the sensor
changes to the Down status. Enter an integer or leave the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
2490
Setting Description
Upper Warning Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify an upper limit. Use the same unit
as shown by the free bytes channels of this sensor (by default this is MB).
If the free disk space of one of your drives exceeds this value, the sensor
changes to the Warning status. Enter an integer or leave the field empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Lower Warning Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify a lower limit. Use the same unit
as shown by the free bytes channels of this sensor (by default this is MB).
If the free disk space of one of your drives falls below this value, the
sensor changes to the Warning status. Enter an integer or leave the field
empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Lower Error Limit This setting is only visible if you select Use the limits of both the sensor
and the channel settings above. Specify a lower limit. Use the same unit
as shown by the free bytes channels of this sensor (by default this is MB).
If the free disk space of one of your drives falls below this value, the
sensor changes to the Down status. Enter an integer or leave the field
empty.
The limits that you set here are valid for all channels of this sensor.
You can additionally set individual limits for each channel in the
channel settings. Both the limits that you set here and in the channel
settings are valid simultaneously.
Alarm on If a monitored disk is removed or not found, the sensor sets the values to
Missing/Removed Disk zero. Select the alarm approach in this case:
§ Deactivate alarm (default): Do not send an alert for a removed disk.
2491
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2492
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2493
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
Why do SSH Disk Free and SNMP Linux Disk Free show different values for my target Linux system?
§ https://kb.paessler.com/en/topic/43183
2494
What security features does PRTG include?
§ https://kb.paessler.com/en/topic/61108
2495
7.8.226 SSH INodes Free Sensor
The SSH INodes Free sensor monitors the free index nodes on disks of Linux/Unix and macOS systems
via Secure Shell (SSH).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2502 .
2496
Remarks
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ This sensor cannot support all Linux/Unix and macOS distributions.
§ See the Knowledge Base: SSH and SFTP sensors in Unknown status
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
2497
Setting Description
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshinodesfreesensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer. The maximum timeout value is 900 seconds
(15 minutes).
2498
Setting Description
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
2499
Setting Description
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2500
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2501
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2502
Channel Description
Free INodes [Mount] The free index nodes in percent for the mount
UNIX file systems only allow a limited number of index nodes. If the
limit is exceeded, no more data can be stored, although free space
might still be available. This sensor informs you before one of your drives
runs out of INodes.
More
Knowledge Base
2503
7.8.227 SSH Load Average Sensor
The SSH Load Average sensor monitors the load average of a Linux/Unix system using Secure Shell
(SSH).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2510 .
§ Japanese: SSH
Remarks
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ This sensor cannot support all Linux/Unix and macOS distributions.
2504
§ See the Knowledge Base: SSH and SFTP sensors in Unknown status
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshloadavgsensor
2505
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer. The maximum timeout value is 900 seconds
(15 minutes).
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
2506
Setting Description
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
2507
Setting Description
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2508
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2509
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2510
How do I set up SSH sensors with my AWS Linux instances?
§ https://kb.paessler.com/en/topic/79569
2511
7.8.228 SSH Meminfo Sensor
The SSH Meminfo sensor monitors the memory usage of a Linux/Unix system using Secure Shell
(SSH).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2518 .
§ Japanese: SSH
Remarks
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ This sensor cannot support all Linux/Unix distributions.
2512
§ This sensor only supports the IPv4 protocol.
§ See the Knowledge Base: SSH and SFTP sensors in Unknown status
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshmeminfosensor
§ memorysensor
2513
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer. The maximum timeout value is 900 seconds
(15 minutes).
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
2514
Setting Description
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
2515
Setting Description
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2516
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2517
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2518
§ https://kb.paessler.com/en/topic/79569
2519
7.8.229 SSH Remote Ping Sensor
The SSH Remote Ping sensor remotely monitors the connectivity between a system running
Linux/macOS X and another device, using Internet Control Message Protocol (ICMP) echo requests
(Ping) and Secure Shell (SSH).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2526 .
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
2520
§ This sensor cannot support all Linux/Unix and macOS distributions.
§ See the Knowledge Base: SSH and SFTP sensors in Unknown status
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshremotepingsensor
2521
Setting Description
§ pingsensor
§ remotepingsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Target Enter the Domain Name System (DNS) name or IP address of the target
device the Ping is sent to. The sensor remotely connects to the parent
device it is created on via SSH, then performs a ping request from this
remote device to the target device or server. Enter a string.
Packet Size (Bytes) Enter the packet size for the Ping in bytes. You can enter any value
between 1 and 10000. Enter an integer.
We recommend that you use the default value.
Packet Count Enter the number of packets that the sensor sends with each scanning
interval.
Custom Parameter Optionally, enter additional parameters that the sensor adds at the end of
the Ping command. Enter a string or leave the field empty.
2522
Setting Description
Do not use parameters that change the output format of the result to
ensure that it can still be parsed. You cannot enter an additional
command.
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer. The maximum timeout value is 900 seconds
(15 minutes).
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
2523
Setting Description
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
2524
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2525
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2526
Channel Description
Avg Response The average response time measured from the remote device in
milliseconds (msec)
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Max Response The maximum response time measured from the remote device in msec
Min Response The minimum response time measured from the remote device in msec
More
Knowledge Base
§ https://kb.paessler.com/en/topic/79569
2527
7.8.230 SSH SAN Enclosure Sensor
The SSH SAN Enclosure sensor monitors a storage area network (SAN) enclosure via Secure Shell
(SSH).
The SAN must provide a command-line interface (CLI) for this purpose.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2535 .
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
2528
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ This sensor does not support every SAN, even if it provides a CLI. The sensor only works with specific
devices, for example, the HPE P2000.
§ It might happen that the controller of your target device breaks down. Experience shows that this issue
strongly depends on the hardware model you monitor. Increase the scanning interval to discharge the
controller and try again.
§ After a firmware update of the target device, this sensor might show incorrect channel values. Add this
sensor anew in this case.
§ This sensor only supports the IPv4 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ Sometimes the devices you monitor with this SSH SAN sensor return status values that are not
officially documented so that the shown sensor status in PRTG differs from the "real" device status.
For more information on this issue, see the Knowledge Base: Why does my SSH SAN sensor show a
wrong status?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Storage Enclosure Select the storage enclosures that you want to monitor. PRTG creates
one sensor for each storage enclosure that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2529
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshsanenclosure
§ sshsan
§ enclosure
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2530
SSH SAN Enclosure Settings
Setting Description
Storage Enclosure Shows the identifier of the storage enclosure that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Durable ID Shows the durable identifier of the storage enclosure that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Name Shows the name of the storage enclosure that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
WWN Shows the World Wide Name (WWN) of the storage enclosure that this
sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2531
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer.
This sensor has a fixed timeout of 300 seconds. If you change the
value, it does not have an effect on the timeout.
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
This sensor has a fixed timeout of 300 seconds. If you change the
value, it does not have an effect on the timeout.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
2532
Setting Description
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
2533
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2534
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2535
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
§ https://kb.paessler.com/en/topic/60145
2536
7.8.231 SSH SAN Logical Disk Sensor
The SSH SAN Logical Disk sensor monitors a logical disk on a storage area network (SAN) via Secure
Shell (SSH).
The SAN must provide a command-line interface (CLI) for this purpose.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2545 .
Remarks
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ This sensor does not support every SAN, even if it provides a CLI. The sensor only works with specific
devices, for example, the HPE P2000.
2537
§ It might happen that the controller of your target device breaks down. Experience shows that this issue
strongly depends on the hardware model you monitor. Increase the scanning interval to discharge the
controller and try again.
§ After a firmware update of the target device, this sensor might show incorrect channel values. Add this
sensor anew in this case.
§ This sensor has a medium performance impact.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ Sometimes the devices you monitor with this SSH SAN sensor return status values that are not
officially documented so that the shown sensor status in PRTG differs from the "real" device status.
For more information on this issue, see the Knowledge Base: Why does my SSH SAN sensor show a
wrong status?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Volumes Select the volumes that you want to monitor. PRTG creates one sensor
for each volume that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2538
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshsanlogicaldisk
§ sshsan
§ logicaldisk
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2539
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer.
This sensor has a fixed timeout of 300 seconds. If you change the
value, it does not have an effect on the timeout.
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
This sensor has a fixed timeout of 300 seconds. If you change the
value, it does not have an effect on the timeout.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
2540
Setting Description
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
2541
SSH SAN Logical Disk Settings
Setting Description
Size Shows the size of the volume that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Command Mode Define the command set that the sensor uses on the device to get
monitoring data:
§ Basic (recommended): Use the basic command set. We recommend
that you use the basic command set for best sensor performance. This
setting is appropriate for most scenarios.
§ Advanced: Monitor additional data on the target device like IOs and
bandwidth.
Because this setting results in higher usage of system resources
and so might cause sensor instabilities, we strongly recommend
that you ony select this option if this data is crucial for the volume that
you monitor.
Sensor Display
Sensor Display
2542
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2543
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2544
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Total IOs The total number of input/output (I/O) operations per second
More
Knowledge Base
2545
7.8.232 SSH SAN Physical Disk Sensor
The SSH SAN Physical Disk sensor monitors a physical disk on a storage area network (SAN) via
Secure Shell (SSH).
The SAN must provide a command-line interface (CLI) for this purpose.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2554 .
Remarks
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
2546
§ This sensor does not support every SAN, even if it provides a CLI. The sensor only works with specific
devices, for example, the HPE P2000.
§ It might happen that the controller of your target device breaks down. Experience shows that this issue
strongly depends on the hardware model you monitor. Increase the scanning interval to discharge the
controller and try again.
§ After a firmware update of the target device, this sensor might show incorrect channel values. Add this
sensor anew in this case.
§ This sensor has a medium performance impact.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ Sometimes the devices you monitor with this SSH SAN sensor return status values that are not
officially documented so that the shown sensor status in PRTG differs from the "real" device status.
For more information on this issue, see the Knowledge Base: Why does my SSH SAN sensor show a
wrong status?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2547
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshsanphysicaldisk
§ sshsan
§ physicaldisk
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2548
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer.
This sensor has a fixed timeout of 300 seconds. If you change the
value, it does not have an effect on the timeout.
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
This sensor has a fixed timeout of 300 seconds. If you change the
value, it does not have an effect on the timeout.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
2549
Setting Description
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
2550
SSH SAN Physical Disk Settings
Setting Description
Name Shows the name of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Size Shows the size of the physical disk that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Command Mode Define the command set that the sensor uses on the device to get
monitoring data:
§ Basic (recommended): Use the basic command set. We recommend
that you use the basic command set for best sensor performance. This
setting is appropriate for most scenarios.
§ Advanced: Monitor additional data on the target device like IOs and
bandwidth.
Because this setting results in higher usage of system resources
and so might cause sensor instabilities, we strongly recommend
that you ony select this option if this data is crucial for the volume that
you monitor.
Request Mode Define the which type of data the sensor requests:
2551
Setting Description
§ Request all historical data: Use this mode to possibly deliver better
data.
§ Request actual counters: Use this mode if the device does not support
Request all historical data. This mode might result in incorrect data and
spikes in graphs.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2552
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2553
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Total IOs The total number of input/output (I/O) operations per second
2554
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
2555
7.8.233 SSH SAN System Health Sensor
The SSH SAN System Health sensor monitors the system health of a storage area network (SAN) via
Secure Shell (SSH).
The SAN must provide a command-line interface (CLI) for this purpose.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2564 .
2556
Remarks
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ This sensor does not support every SAN, even if it provides a CLI. The sensor only works with specific
devices, for example, the HPE P2000.
§ It might happen that the controller of your target device breaks down. Experience shows that this issue
strongly depends on the hardware model you monitor. Increase the scanning interval to discharge the
controller and try again.
§ After a firmware update of the target device, this sensor might show incorrect channel values. Add this
sensor anew in this case.
§ This sensor has a medium performance impact.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ Sometimes the devices you monitor with this SSH SAN sensor return status values that are not
officially documented so that the shown sensor status in PRTG differs from the "real" device status.
For more information on this issue, see the Knowledge Base: Why does my SSH SAN sensor show a
wrong status?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Metrics Select the metrics that you want to monitor. PRTG creates one sensor for
each metric that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2557
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshsansystemhealth
§ sshsan
§ systemhealth
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2558
SSH SAN Specific
Setting Description
Monitoring Mode Define how the sensor requests data from the target device:
§ Automatic detection: Automatically detect the firmware version and use
the appropriate mode. We recommend that you use this option and only
explicitly define the firmware date if errors occur.
§ Firmware before June 2015: Use the mode that is appropriate for
firmware versions before June 2015.
§ Firmware as of June 2015: Use the mode that is appropriate for firmware
versions as of June 2015.
The required mode depends on the firmware version of the target
device. The sensor automatically detects the firmware version and
uses the appropriate mode in most cases. If errors occur, explicitly define
the firmware version.
We recommend that you use the default value.
2559
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer.
This sensor has a fixed timeout of 300 seconds. If you change the
value, it does not have an effect on the timeout.
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
This sensor has a fixed timeout of 300 seconds. If you change the
value, it does not have an effect on the timeout.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
2560
Setting Description
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
2561
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2562
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2563
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Capacitor Cell [#] Voltage The capacitor cell voltage in volts (V)
[Controller]
2564
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2565
More
Knowledge Base
§ https://kb.paessler.com/en/topic/61108
2566
7.8.234 SSH Script Sensor
The SSH Script sensor connects to a Linux/Unix system via Secure Shell (SSH) and executes a script
file that is located on the target system. This option is available as part of the PRTG API.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2576 .
§ German: SSH-Skript
§ Japanese: SSH
Remarks
§ This sensor has a very high performance impact. Use it with care. We recommend that you use no
more than 50 sensors of this sensor type on each probe.
§ For security reasons, you must store your script file in the /var/prtg/scripts directory on the target
system. Make sure that the script has executable rights. If the script is not available or was deleted
from the directory, you get the error message Script not found (237).
2567
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ For details about the return value format, see section Custom Sensors 3498 .
§ See the Knowledge Base: SSH and SFTP sensors in Unknown status
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Sensor Settings
Setting Description
Script Select a script file from the dropdown list. It shows all script files that are
available in the /var/prtg/scripts directory on the target Linux/Unix system.
For a script file to appear in this list, store the target file in this directory.
Make sure that the script has executable rights.
To show the expected sensor value and status 186 , your file must use
the correct format for the returned values. In this case, it is
exitcode:value:message to standard output stdout. The exit code
determines the sensor status.
For detailed information on how to create custom sensors and for the
return format, see section Custom Sensors 3498 .
Value Type Define the type of the values that your executable or script file returns:
§ Integer: An integer is expected as return value. If the script returns a
float, PRTG displays the value 0.
§ Float: A float is expected as return value, with a dot (.) between the
predecimal position and the decimal places.
The sensor also displays integers unless they produce a buffer
overflow.
§ Counter: Your script returns an integer that increases. PRTG shows the
difference between the values of two sensor scans.
A counter must return an integer. It does not support float values.
The sensor does not support string values.
Channel Name Enter a name for the channel. Enter a string. This is for display purposes
only.
2568
Setting Description
You can change this value later in the channel settings 3052 of this
sensor.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshscript
2569
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Sensor Settings
Sensor Settings
Setting Description
Script Shows the name of the script that the sensor executes with each
scanning interval.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Character Encoding Define the character encoding that you use in your script to correctly
display the sensor message:
§ UTF-8 (default)
§ ASCII
Parameters If your script file catches command-line parameters, define them here.
You can also use placeholders. Enter a string or leave the field empty.
For a full list of all placeholders, see section Custom Sensors 3508 .
You must escape special characters and whitespaces in your
parameters and surround them with double quotes. See section
Escape Special Characters and Whitespaces in Parameters 2576 for
details.
2570
Setting Description
In SSH scripts, you can use alphanumeric characters and the special
characters ".", "_", "-", "=", and "/" outside of quoted strings.
Mutex Name Define a mutual exclusion (mutex) name for the process. Enter a string or
leave the field empty.
PRTG runs all custom script sensors that have the same mutex
name serially (not simultaneously). This is useful if you use a lot of
sensors and want to avoid high resource usage caused by processes that
run running at the same time.
See the Knowledge Base: What is the Mutex Name in the EXE/Script
sensor settings?
Unit String Define a unit for the channel value. Enter a string. This is for display
purposes only and is the default unit for a new channel. You can change
the unit after sensor creation in the sensor's channel settings.
If Value Changes Define what the sensor does when the sensor value changes:
§ Ignore changes (default): Take no action on change.
2571
SSH Specific
SSH Specific
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer.
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
2572
Setting Description
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
2573
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2574
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2575
Escape Special Characters and Whitespaces in Parameters
You need to escape special characters in parameters that you pass to an executable or script and
surround them with quotation marks to make sure that the characters are correctly interpreted.
PowerShell scripts in particular require adequate escaping so that the parameters are passed in a valid
PowerShell syntax. PRTG automatically does most of the escaping for you.
Follow these rules to escape special characters and whitespaces in the parameters fields:
§ Use double quotes for parameters that contain double and single quotes and escape double quotes.
-name "pu'b\"lic"
In SSH scripts, you can use alphanumeric characters and the special characters ".", "_", "-", "=",
and "/" outside of quoted strings.
We recommend that you do not pass passwords in parameters. Use placeholders instead. See
section Custom Sensors 3509 for details.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
[Value] The value that the script file returns in one channel
For details about the return value format, see section Custom
Sensors 3498 .
2576
More
Knowledge Base
§ https://kb.paessler.com/en/topic/39513
How can I test if parameters are correctly transmitted to my script when using an EXE/Script sensor?
§ https://kb.paessler.com/en/topic/11283
Why do I have to store SQL sensor queries and custom scripts in files on the probe computer?
§ https://kb.paessler.com/en/topic/75372
For which sensor types do you recommend Windows Server 2012 R2 or later and why?
§ https://kb.paessler.com/en/topic/64331
2577
7.8.235 SSH Script Advanced Sensor
The SSH Script Advanced sensor connects to a Linux/Unix system via Secure Shell (SSH) and
executes a script file that is located on the target system. This option is available as part of the PRTG
API.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2586 .
§ Japanese: SSH
Remarks
§ This sensor has a very high performance impact. Use it with care. We recommend that you use no
more than 50 sensors of this sensor type on each probe.
§ For security reasons, you must store the script file in the /var/prtg/scriptsxml directory on the target
system. Make sure that the script has executable rights.
2578
§ This sensor requires credentials for Linux/Solaris/macOS (SSH/WBEM) systems 543 in the settings of
the parent device.
§ This sensor does not officially support more than 50 channels. Depending on the data used with this
sensor, you might exceed the maximum number of supported channels. In this case, PRTG tries to
display all channels. Be aware, however, that you experience limited usability and performance.
§ This sensor only supports the IPv4 protocol.
§ For details about the return value format, see section Custom Sensors 3499 .
§ See the Knowledge Base: SSH and SFTP sensors in Unknown status
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Sensor Settings
Setting Description
Script Select a script file from the dropdown list. It shows all script files that are
available in the /var/prtg/scriptsxml directory on the target Linux/Unix
system. For a script file to appear in this list, store the target file in this
directory.
Make sure that the script has executable rights.
To show the expected sensor value and status 186 , your files must
return the expected XML or JSON format to standard output stdout.
The values and message must be embedded in the XML or JSON.
For detailed information on how to create custom sensors and for the
return format, see section Custom Sensors 3499 .
2579
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sshscript
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Sensor Settings
Sensor Settings
Setting Description
Script Shows the script that the sensor executes with each scanning interval.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2580
Setting Description
Parameters If your script file catches command-line parameters, you can define them
here. You can use also placeholders. Enter a string or leave the field
empty.
For a full list of all placeholders, see section Custom Sensors 3508 .
You must escape special characters and whitespaces in your
parameters and surround them with double quotes. See section
Escape Special Characters and Whitespaces in Parameters 2585 for
details.
In SSH scripts, you can use alphanumeric characters and the special
characters ".", "_", "-", "=", and "/" outside of quoted strings.
Mutex Name Define a mutual exclusion (mutex) name for the process. Enter a string or
leave the field empty.
PRTG runs all custom script sensors that have the same mutex
name serially (not simultaneously). This is useful if you use a lot of
sensors and want to avoid high resource usage caused by processes that
run running at the same time.
See the Knowledge Base: What is the Mutex Name in the EXE/Script
sensor settings?
SSH Specific
SSH Specific
2581
Setting Description
Connection Timeout Define a timeout in seconds for the connection. This is the time that the
(Sec.) sensor waits to establish a connection to the host. Keep this value as low
as possible. Enter an integer.
Ensure that the connection timeout is a value that is higher than the
shell timeout to avoid potential errors.
Shell Timeout (Sec.) Define a timeout in seconds for the shell response. This is the time in
seconds the sensor waits for the shell to return a response after it has
sent its specific command (for example, cat /proc/loadavg). The maximum
value is 300 seconds (5 minutes). Enter an integer.
Ensure that the shell timeout is a value that is lower than the
connection timeout to avoid potential errors.
SSH Port Define which port this sensor uses for the SSH connection:
§ Inherit port number from parent device (default): Use the port number as
defined in the Credentials for Linux/Solaris/macOS (SSH/WBEM)
Systems 543 section of the parent device settings.
§ Enter custom port number: Define a custom port number below and do
not use the port number from the parent device settings.
Use Port Number This setting is only visible if you select Enter custom port number above.
Enter the port number (between 1 and 65535) that this sensor uses for the
SSH connection. Enter an integer.
SSH Engine Select the method that you want to use to access data with this SSH
sensor 3363 . We strongly recommend that you use the default engine. You
can still use the legacy mode for some time to ensure compatibility with
your target systems. Choose between:
§ Inherit from parent device (default): Use the SSH engine that you defined
in the parent device settings or higher up in the object hierarchy 140 . If
you have not changed the SSH engine, this is the recommended default
engine.
§ Default: This is the default monitoring method for SSH sensors. It
provides the best performance and security. It is set by default in
objects that are higher up in the hierarchy, so usually you can keep the
Inherit from parent device (default) option.
§ Compatibility mode (deprecated): Try this legacy method only if the
default mode does not work on a target device. The compatibility mode
is the SSH engine that PRTG used in previous versions. It is
deprecated. We will remove this legacy mode soon, so try to get your
SSH sensors running with the default SSH engine.
The option you select here overrides the selection of the SSH engine
in a higher object: a parent device, group, probe, or root.
Result Handling Define what PRTG does with the sensor result:
2582
Setting Description
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID] (SSHv2).txt. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
§ Store result in case of error: Store the last sensor result only if the
sensor shows the Down status.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2583
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2584
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Follow these rules to escape special characters and whitespaces in the parameters fields:
2585
-name "Mr 'John Q' Public"
§ Use double quotes for parameters that contain double and single quotes and escape double quotes.
-name "pu'b\"lic"
In SSH scripts, you can use alphanumeric characters and the special characters ".", "_", "-", "=",
and "/" outside of quoted strings.
We recommend that you do not pass passwords in parameters. Use placeholders instead. See
section Custom Sensors 3509 for details.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
[Value] The values that the script file returns in several channels
For details about the return value format, see section Custom
Sensors 3499 .
More
Knowledge Base
How can I test if parameters are correctly transmitted to my script when using an EXE/Script sensor?
§ https://kb.paessler.com/en/topic/11283
2586
§ https://kb.paessler.com/en/topic/64817
Why do I have to store SQL sensor queries and custom scripts in files on the probe computer?
§ https://kb.paessler.com/en/topic/75372
For which sensor types do you recommend Windows Server 2012 R2 or later and why?
§ https://kb.paessler.com/en/topic/64331
2587
7.8.236 SSL Certificate Sensor
The SSL Certificate sensor monitors the certificate of a Secure Sockets Layer (SSL)/Transport Layer
Security (TLS) secured connection.
The sensor also shows the certificate common name and the certificate thumbprint in the sensor
message.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2595 .
§ German: SSL-Zertifikat
§ Japanese: SSL
2588
Remarks
§ Enter the Domain Name System (DNS) name in the settings of the parent device 535 exactly as it is
written in your certificate. You can also use wildcards 2595 .
§ To check the revocation status of a certificate, the sensor uses WinHTTP to auto-detect the proxy
server to use. You can also manually define a server. If you do not define a proxy server, PRTG uses
the default WinHTTP proxy settings. For more information, see the Knowledge Base: How can I
configure the WinHTTP proxy settings for the SSL Certificate sensor?
§ This sensor has predefined limits for several metrics. You can individually change these limits in the
channel settings. For detailed information about channel limits, see section Channel Settings 3052 .
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2589
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sslcertificate
§ ssl
§ certificate
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Timeout (Sec.) Enter a timeout in seconds for the TCP read request. Enter an integer.
The maximum timeout value is 300 seconds (5 minutes).
If the reply takes longer than this value, the sensor cancels the
request and shows a corresponding error message.
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2590
Setting Description
Port Enter the number of the port to which this sensor connects. Enter an
integer. The default port is 443.
Virtual Host (SNI Define the host name that the sensor tries to query if your server has
Domain) multiple certificates on the same IP address and port combination. Enter a
string.
In the case of virtual hosting, you must identify the specific certificate
for a specific domain while all domains use the same IP address, you
can use SNI, which is an extension of TLS.
If you select a Certificate Name Validation option below, the sensor
compares the common name and optionally alternative names with
the SNI. Leave this field empty to validate the common name with the host
address of the parent device.
Certificate Name Define if you want the sensor to validate the certificate name:
Validation
§ Do not compare common name (CN) with device address or SNI
(default): Do not check if the certificate name is valid by comparing it
with the address of the parent device or the defined SNI.
§ Compare and show down status if common name (CN) and address/SNI
do not match: Check the common name to validate the certificate
name. If you define an SNI above, the sensor compares the common
name with the SNI. If you do not define an SNI, the sensor uses the
host address of the parent device. If the common name and the
checked address/SNI do not match, the sensor shows the Down
status 186 .
§ Compare and show down status if common name (CN)/alternative
names (SAN) and address/SNI do not match: Check the common name
and the Subject Alternative Names (SAN) to validate the certificate. If
you define an SNI domain above, the sensor compares the common
name and alternative names with the SNI. If you do not define an SNI,
the sensor uses the host address of the parent device. If the common
name or alternative names and the checked address/SNI do not match,
the sensor shows the Down status.
Connection Specific
Connection Specific
2591
Setting Description
SOCKS Proxy (v5 only) Define if the sensor uses a SOCKS proxy server for the sensor
connection:
§ Do not use SOCKS proxy (default): Directly connect to the target host
without using a SOCKS proxy.
§ Use SOCKS proxy: Connect using SOCKS5. Provide data for the
SOCKS connection below.
Other SOCKS versions are not supported.
This sensor only supports SOCKS5 proxies. It does not support
HTTP proxies.
Server This setting is only visible if you select Use SOCKS proxy above. Enter
the IP address or host name of the proxy server that the sensor uses for
connection.
Port This setting is only visible if you select Use SOCKS proxy above. Enter
the port number of the proxy server that the sensor uses for connection.
User Name This setting is only visible if you select Use SOCKS proxy above. If the
proxy server requires authentication, enter a username.
Password This setting is only visible if you select Use SOCKS proxy above. If the
proxy server requires authentication, enter the password for the user you
specified above.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
2592
Setting Description
§ Store result: Store the last sensor result to the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].Data.txt, Result of Sensor [ID] (Certificate 0 in
Certificate Chain).cer, Result of Sensor [ID] (Certificate 1 in Certificate
Chain).cer, Result of Sensor [ID] (Certificate 2 in Certificate Chain).cer,
Result of Sensor [ID] (Certificate Chain).txt, and Result of Sensor [ID]
(Certificate).cer. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
You can use the debug option to get a logfile with information about the certificate chain.
Additionally, certificates in the certificate chain are stored in the log folder (.cer files). This can help
you, for example, if you have issues with the Root Authority Trusted channel of this sensor.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2593
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
2594
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Using Wildcards
You can use wildcards in the IP Address/DNS Name in the device settings 535 . Wildcards that apply to
only one level of the domain name are supported.
Example Result
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2595
Channel Description
Common Name Check If the common name or subject-alternative names match the host address
or Server Name Indication (SNI) (if certificate name validation is enabled)
§ Up status: CN/SAN Match, Disabled, Matches Device Address,
Matches SNI
§ Down status: CN/SAN Do Not Match SNI, Does Not Match Device
Address, Does Not Match SNI
Days to Expiration The days to expiration with a predefined lower warning limit (28 days) and
lower error limit (7 days)
This channel is the primary channel by default.
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
§ Warning status: No
2596
More
Knowledge Base
How can I configure the WinHTTP proxy settings for the SSL Certificate sensor?
§ https://kb.paessler.com/en/topic/86280
§ https://kb.paessler.com/en/topic/61108
2597
7.8.237 SSL Security Check Sensor
The SSL Security Check sensor monitors Secure Sockets Layer (SSL)/Transport Layer Security (TLS)
connectivity to the port of a device. It tries to connect to the specified TCP/IP port number of a device
with different SSL/TLS versions and shows if the device supports a particular protocol.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2603 .
§ German: SSL-Sicherheitsüberprüfung
§ Japanese: SSL
Remarks
§ This sensor only checks accepted protocols, it does not consider the used ciphers.
2598
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See the Knowledge Base: How do you determine the protocol security ratings of the SSL Security
Check sensor?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
2599
Setting Description
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ sslsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Timeout (Sec.) Enter a timeout in seconds for the request. Enter an integer. The
maximum timeout value is 900 seconds (15 minutes).
If the reply takes longer than this value, the sensor cancels the
request and shows a corresponding error message.
Port Enter the number of the port to which this sensor connects. Enter an
integer. The default port is 443.
Virtual Host (SNI Enter the host name that the sensor queries. The sensor uses this host
Domain) for the connection if the target server has multiple certificates on the same
IP address and IP port when using Server Name Indication (SNI).
2600
Connection Specific
Connection Specific
Setting Description
SOCKS Proxy (v5 only) Define if the sensor uses a SOCKS proxy server for the sensor
connection:
§ Do not use SOCKS proxy (default): Directly connect to the target host
without using a SOCKS proxy.
§ Use SOCKS proxy: Connect using SOCKS5. Provide data for the
SOCKS connection below.
Other SOCKS versions are not supported.
This sensor only supports SOCKS5 proxies. It does not support
HTTP proxies.
Server This setting is only visible if you select Use SOCKS proxy above. Enter
the IP address or host name of the proxy server that the sensor uses for
connection.
Port This setting is only visible if you select Use SOCKS proxy above. Enter
the port number of the proxy server that the sensor uses for connection.
User Name This setting is only visible if you select Use SOCKS proxy above. If the
proxy server requires authentication, enter a username.
Password This setting is only visible if you select Use SOCKS proxy above. If the
proxy server requires authentication, enter the password for the user you
specified above.
Sensor Display
Sensor Display
2601
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2602
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2603
Channel Description
More
Knowledge Base
How do you determine the protocol security ratings of the SSL Security Check sensor?
§ https://kb.paessler.com/en/topic/71566
2604
7.8.238 Syslog Receiver Sensor
The Syslog Receiver sensor receives and analyzes Syslog messages.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2614 .
§ German: Syslog-Empfänger
§ Japanese: Syslog
§ Simplified Chinese:
Remarks
§ This sensor has a very high performance impact. Use it with care. We recommend that you use no
more than 50 sensors of this sensor type on each probe.
§ This sensor only supports the User Datagram Protocol (UDP).
2605
§ If you do not add the sensor to a probe device but to a different device in PRTG, be careful with the
configuration: Ensure that the IP address or Domain Name System (DNS) name of the parent device
matches the proper sender. For example, if you want to receive messages from a storage area
network (SAN), you might need to add a device to PRTG using the IP address of a specific array
member that sends the messages. Providing a DNS name that points to the IP address of a whole
group might not work for SANs.
§ With the available filter options, you can individually define which types of messages the sensor
considers for monitoring, and which messages it categorizes as warning or error messages.
Depending on the filters, received messages are counted in the respective channels.
§ Add this sensor to the probe device to receive all messages of the remote probe system.
§ Add this sensor to a specific device to directly receive all messages from this device. This makes this
sensor faster than when you use source filters.
§ This sensor supports the IPv6 protocol.
§ You cannot use this sensor in cluster mode. You can only set it up on a local probe or a remote probe
but not on a cluster probe.
§ For a general introduction to the receiver's configuration, see section Monitoring Syslogs and SNMP
Traps 3390 .
§ You can use specific placeholders in email notification templates 3182 to see the messages when you
receive an email notification. See section List of Placeholders for Notifications 3704 .
§ The sensor states 186 of this sensor persist for one scanning interval only. After showing a Warning
status or a Down status, and if there is no warning or error message in the following scanning interval,
the sensor shows an Up status again. For a workaround, see the Knowledge Base: How can I
configure sensors using speed limits to keep the status for more than one interval?
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
2606
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ syslogsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Syslog Specific
Syslog Specific
Setting Description
Port Enter the number of the port on which the sensor listens for Syslog
messages. The default port is 514. Enter an integer.
2607
Setting Description
Purge Messages After Define how long PRTG stores received Syslog messages for analysis.
Select a period of time from the dropdown list.
Filter
For detailed information, see section Filter Rules 2612 .
Filter
2608
Setting Description
Include Filter Define if you want to filter Syslog messages. If you leave this field empty
or use the keyword any, the sensor processes all data. To only include
specific types of messages, define filters using a special syntax.
Exclude Filter Define which types of Syslog messages the sensor discards and does not
process. To exclude specific types of messages, define filters using a
special syntax.
Warning Filter Define which types of Syslog messages count for the Warnings channel.
To categorize received messages as warning messages, define filters
using a special syntax.
The sensor collects messages until a scanning interval ends. As long
as the scanning interval is running, the sensor does not change its
status. By default, the sensor changes to the Warning status 186 after a
scanning interval finishes and there was at least one warning message
(and no error message) during this scanning interval. The sensor shows
the Warning at least until the succeeding scanning interval finishes. If the
sensor does not receive any warning or error message in this scanning
interval, its status changes to the Up status again with the start of the
next scanning interval.
Error Filter Define which types of Syslog messages count for the Errors channel. To
categorize received messages as error messages, define filters using a
special syntax.
The sensor collects messages until a scanning interval ends. As long
as the scanning interval is running, the sensor does not change its
status. By default, the sensor changes to the Down status after a
scanning interval finishes and there was at least one error message during
this scanning interval. The sensor shows the Down status at least until the
succeeding scanning interval finishes. If the sensor does not receive any
warning or error message in this scanning interval, its status changes to
the Up status again with the start of the next scanning interval.
Sensor Display
Sensor Display
2609
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2610
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2611
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result (recommended): Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\debug subfolder of
the PRTG data directory 3579 on the probe system. The file name is
Sensor [ID]_[Date].log. This setting is for debugging purposes.
Use with caution. We recommend that you only use this setting for
a short time because it can create huge data files.
Filter Rules
Filter rules are used for the include, exclude, warning, and error definition fields of the Syslog Receiver
sensor. They are based on the following format:
field[filter]
You can use various filters suitable to your needs. Include and exclude filters define which messages to
monitor. Warning and error filters define how to categorize received messages. Provide these filters in the
sensor settings as formulas. Formulas are fields that you can combine with boolean operators (AND,
OR, NOT) and brackets.
§ source[10.0.23.10/24]
§ facility[5] OR facility[6]
2612
Field Parameter Example
hostname[text] Enter any string that specifies the hostname of a device§ hostname[www.example.c
in the message. om]
tag[text] Enter any string that specifies the tag of a program or § tag[su]
process in the message.
appname[text] Enter any string that specifies the appname part of the § appname[myproc]
message.
§ appname[demo] AND
msgid[m42]
procid[text] Enter any string that specifies the process identifier § procid[1860]
part of the message.
msgid[text] Enter any string that specifies the message identifier § msgid[ID47]
part of the message.
message[parttext] Enter any string that specifies the message part of the § message[Error]
message. (Any substring matches. This value is case
insensitive.)
data This checks the SD-ID block of the message's § data[exampleSDID@12345
[id,param,value] structured data for a parameter matching the specified ,eventSource,Application]
value.
data[parttext] This checks if the specified substring matches § data[exampleSDID@1234]
structured data as displayed in the corresponding table.
data[id,param] This checks if the parameter exists in the specified ID § data[exampleSDID@1234,
element. eventSource]
String parameters (except the substring in message) must exactly match the particular parts of the
message. They are case sensitive.
Received Syslog messages are only shown in the table on the Overview tab after an (automatic)
page refresh following a sensor scan. The default value for auto refresh 3172 is 30 seconds.
For more details and further filter options, click the Messages tab of the Syslog Receiver sensor. You
see all received messages in a table list. On the top, you have display filter options to drill down into the
data for specific events of your interest. The filters are the same as those available in the sensor
settings, but you can define them without using formulas. Provide the desired parameters and PRTG
automatically loads the filtered list.
2613
Advanced Filter Settings
You can open advanced filter settings by clicking in the Filter row. The Advanced Filter appears in a
popup window. In the text field, you can define a filter using the syntax as specified in section Filter
Rules 2612 .
If you provided filter parameters on the Messages tab, the advanced filter already includes them as a
corresponding formula with the correct syntax. You can adjust this filter to your needs. You can also
copy the automatically created and manually adjusted formula for usage in the filter fields of the sensor
settings.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Drops The number of dropped packets per second on the syslog port
More
Knowledge Base
How can I configure sensors using speed limits to keep the status for more than one interval?
§ https://kb.paessler.com/en/topic/73212
VIDEO TUTORIAL
2614
7.8.239 System Health Sensor
The System Health sensor monitors the status of the probe system. It checks various system
parameters that can affect the quality of the monitoring results.
PRTG automatically creates this sensor. You cannot delete the sensor if it was created
automatically. If you manually create the sensor, you can delete it.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2619 .
§ German: Systemzustand
§ Japanese:
§ Simplified Chinese:
2615
Remarks
§ This sensor has a very low performance impact.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ systemhealthsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2616
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2617
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2618
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Available Memory The amount of free memory available on the system. This value should not
fall below 500 MB. This way, PRTG can still request resources during
report generation or auto-discoveries, for example.
CPU Load The CPU load in percent on the probe system with a predefined upper
warning limit (50 %) and upper error limit (90 %). Extensive CPU load can
lead to false, incomplete, and incorrect monitoring results. This value
should usually stay below 50%.
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Health The sum of the system status as a value between 100% (healthy) and 0%
(failing). Investigate frequent or repeated health values below 100%.
This channel is the primary channel by default.
More
Knowledge Base
2619
7.8.240 TFTP Sensor
The TFTP sensor monitors a Trivial File Transfer Protocol (TFTP) server and checks if a certain file is
available for download.
TFTP Sensor
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2625 .
§ French: TFTP
§ German: TFTP
§ Japanese: TFTP
§ Portuguese: TFTP
§ Russian: TFTP
§ Spanish: TFTP
Remarks
§ This sensor has a medium performance impact.
2620
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ trivialftpsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2621
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Specific
Sensor Specific
Setting Description
Timeout (Sec.) Enter a timeout in seconds for the request. Enter an integer. The
maximum timeout value is 900 seconds (15 minutes).
If the reply takes longer than this value, the sensor cancels the
request and shows a corresponding error message.
Port Enter the number of the port that the TFTP service runs on. The sensor
connects to this port. Enter an integer.
File Name Enter the name of the file that this sensor checks. If the file is not
available on the server, the sensor shows the Down status 186 . Enter a
string.
Sensor Display
Sensor Display
2622
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2623
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2624
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2625
7.8.241 Traceroute Hop Count Sensor
The Traceroute Hop Count sensor traces the number of hops from the probe system to the IP
Address/DNS Name of the parent device.
If the number of hops (the route) changes, you can additionally define a different sensor status 186 .
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2631 .
§ Japanese: Traceroute
§ Simplified Chinese:
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires Microsoft .NET 4.7.2 or later on the probe system. If the sensor shows the error
PE087, additionally install .NET 3.5 on the probe system.
2626
§ We recommend Windows Server 2012 R2 on the probe system for best performance of this sensor.
Detailed Requirements
Requirement Description
.NET 4.7.2 or later This sensor requires .NET 4.7.2 or later to be installed on the probe
system (on every cluster node, if on a cluster probe).
If the framework is missing, you cannot create this sensor.
For more information, see the Knowledge Base: Which .NET version
does PRTG require?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
2627
Setting Description
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ ptfsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Sensor Settings
Sensor Settings
Setting Description
If Route Changes Define what to do if the route has changed since the last check:
§ Ignore: Do not perform any action.
§ Set sensor to warning status: Show the Warning status 186 if the route
changes.
§ Set sensor to down status: Show the Down status if the route changes.
2628
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2629
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2630
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2631
§ https://kb.paessler.com/en/topic/60543
2632
7.8.242 Veeam Backup Job Status Sensor
The Veeam Backup Job Status sensor monitors the status of all backup job runs on the Veeam Backup
Enterprise Manager in the last 24 hours.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2638 .
Remarks
§ This sensor requires credentials for Veeam 569 in settings that are higher in the object hierarchy 140 , for
example, in the settings of the parent device.
2633
§ This sensor requires an installation of the Veeam Backup Enterprise Manager 10 or 11 with the
Enterprise Plus license.
§ This sensor does not support the following backup job types: Tape, Sure Backup, NAS Backup Copy,
and Agent Backup Copy.
§ This sensor does not support Veeam Agent Backup Jobs if they are managed by a Veeam Agent.
§ This sensor only supports version 1.5 of the Representational State Transfer (REST) application
programming interface (API).
§ This sensor supports the IPv6 protocol.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
2634
Setting Description
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ veeam
§ veeambackup
§ veeamenterprisemanager
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2635
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].log. This setting is for debugging purposes. PRTG
overwrites this file with each scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2636
Scanning Interval
The minimum scanning interval of this sensor is 1 minute.
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2637
Channel Unit Configuration
Which channel units are available depends on the sensor type and the available parameters. If no
configurable channels are available, this field shows No configurable channels.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2638
Channel Description
More
Knowledge Base
2639
7.8.243 Veeam Backup Job Status Advanced Sensor
The Veeam Backup Job Status Advanced sensor monitors the status of a specific backup job that runs
on the Veeam Backup Enterprise Manager.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2646 .
Remarks
§ This sensor requires credentials for Veeam 569 in settings that are higher in the object hierarchy 140 , for
example, in the settings of the parent device.
2640
§ This sensor requires an installation of the Veeam Backup Enterprise Manager 10 or 11 with the
Enterprise Plus license.
§ This sensor does not support the following backup job types: Tape, Sure Backup, NAS Backup Copy,
and Agent Backup Copy.
§ This sensor does not support Veeam Agent Backup Jobs if they are managed by a Veeam Agent.
§ This sensor only supports version 1.5 of the Representational State Transfer (REST) application
programming interface (API).
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See the Knowledge Base: How can I change the status of my Veeam sensors based on whether a job
is scheduled or not?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Veeam Specific
Setting Description
Backup Jobs You see a list of all backup jobs that are available on the Veeam Backup
Enterprise Manager. The backup jobs are listed by job name, job type,
platform, and job description.
2641
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ veeam
§ veeambackup
§ veeamenterprisemanager
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2642
Veeam Specific
Veeam Specific
Setting Description
Job Name Shows the name of the backup job that this sensor monitors.
Job Type Shows the type of backup job that this sensor monitors.
Job Description Shows the description of the backup job that this sensor monitors.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2643
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].log. This setting is for debugging purposes. PRTG
overwrites this file with each scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2644
Scanning Interval
The minimum scanning interval of this sensor is 1 minute.
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2645
Channel Unit Configuration
Which channel units are available depends on the sensor type and the available parameters. If no
configurable channels are available, this field shows No configurable channels.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Last Job Run The time since the last backup job run
2646
Channel Description
More
Knowledge Base
How can I change the status of my Veeam sensors based on whether a job is scheduled or not?
§ https://kb.paessler.com/en/topic/89136
2647
7.8.244 VMware Datastore (SOAP) Sensor
The VMware Datastore (SOAP) sensor monitors the disk usage of a VMware datastore using the Simple
Object Access Protocol (SOAP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2654 .
Remarks
§ The parent device must be a VMware ESXi server version 5.2 or later or vCenter.
§ This sensor requires credentials for VMware/XenServer 547 in the settings of the parent device. Ensure
that you enter a user with sufficient access rights to obtain statistics (read-only usually works).
2648
§ This sensor requires Microsoft .NET 4.7.2 or later on the probe system.
§ We recommend Windows Server 2012 R2 on the probe system for best performance of this sensor.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ This sensor has predefined limits for several metrics. You can individually change these limits in the
channel settings. For detailed information about channel limits, see section Channel Settings 3052 .
§ See the Knowledge Base: I cannot add VMware sensors because of "wrong" password although it is
correct. What can I do?
§ See the Knowledge Base: Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
This sensor supersedes the outdated SSH VMWare ESX(i) Disk sensor. We recommend that you
use this new VMware Datastore (SOAP) sensor to monitor VMware datastores.
Detailed Requirements
Requirement Description
.NET 4.7.2 or later This sensor requires .NET 4.7.2 or later to be installed on the probe
system (on every cluster node, if on a cluster probe).
If the framework is missing, you cannot create this sensor.
For more information, see the Knowledge Base: Which .NET version
does PRTG require?
For details about this setting, see the Knowledge Base: How can I increase the connection limit on
VMware systems? PE121.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
2649
Datastore Settings
Setting Description
Datastores Select the datastores that you want to monitor. PRTG creates one sensor
for each datastore that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
2650
Setting Description
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ vmwaredatastoreexternsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Datastore Settings
Datastore Settings
Setting Description
Managed Object Identifier Shows the managed object identifier (MOID) of the datastore that this
(MOID) sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
2651
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2652
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2653
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
§ Down status: No
Available Capacity The available capacity in bytes (the physically or virtually available size of
the datastore)
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Free Bytes The free space in bytes (the disk space that is not used by virtual
machines (VM). Used disk space can be either thick-provisioned or used
by thin-provisioned virtual disks)
Free Space The free space in percent (the disk space that is not used by VMs. Used
disk space can be either thick-provisioned or used by thin-provisioned
virtual disks)
This channel is the primary channel by default.
2654
Channel Description
Total Provisioned The total provisioned disk space in percent (the sum of all potentially used
disk space of thin-provisioned and thick-provisioned VM hard drives, that
is, the uncommitted bytes plus used bytes)
Uncommitted Bytes The uncommitted bytes (the disk space that is provisioned for thin-
provisioned VMs but not used yet)
More
Knowledge Base
I cannot add VMware sensors because of "wrong" password although it is correct. What can I do?
§ https://kb.paessler.com/en/topic/66794
Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
§ https://kb.paessler.com/en/topic/78274
Monitoring VMware ESXi 5.5 does not work. What can I do?
§ https://kb.paessler.com/en/topic/59173
For which sensor types do you recommend Windows Server 2012 R2 or later and why?
§ https://kb.paessler.com/en/topic/64331
2655
7.8.245 VMware Host Hardware (WBEM) Sensor
The VMware Host Hardware (WBEM) sensor monitors information about the hardware of an ESXi server
using Web-based Enterprise Management (WBEM).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2661 .
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires that the CIM interface is enabled on the ESXi host. On ESXi 6.5 and later, you
2657
2656
§ The parent device must be a VMware ESXi server version 5.2 or later.
§ We recommend Windows Server 2012 R2 on the probe system for best performance of this sensor.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
§ See the Knowledge Base: Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
Detailed Requirements
Requirement Description
Enabled CIM Interface on To access the ESXi host and retrieve monitoring data via WBEM, the CIM
ESXi Host interface must be enabled on the ESXi host. On ESXi 6.5, CIM is disabled
by default, so you need to manually activate it.
For details, see the Knowledge Base: How do I enable the CIM
interface on VMware ESXi 6.5?
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Hardware Elements Select the hardware elements that you want to monitor. PRTG creates
one sensor for each element that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2657
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ esxshealthsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2658
ESXi Server Elements
Setting Description
Hardware Element Shows the hardware element that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Automatic Sensor Status Define if the sensor changes its status 186 depending on the health status
reading:
§ Set sensor to warning or down status: Set the sensor to the Warning or
the Down status when the server returns respective values. The sensor
also changes to the Down status if the connection to the server fails.
§ Report the current reading: Never change the sensor's status dependent
on the values returned by the server. The sensor only changes to the
Down status if the connection to the server fails.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
2659
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2660
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2661
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
§ https://kb.paessler.com/en/topic/78274
§ https://kb.paessler.com/en/topic/76255
2662
7.8.246 VMware Host Hardware Status (SOAP) Sensor
The VMware Host Hardware Status (SOAP) sensor monitors the hardware status of a VMware host
server using the Simple Object Access Protocol (SOAP). It gives you a general status overview of the
host.
The sensor also shows any states other than normal in the sensor message.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2669 .
Remarks
§ This sensor requires Microsoft .NET 4.7.2 or later on the probe system.
2663
§ This sensor requires credentials for VMware/XenServer 547 in the settings of the parent device. Ensure
that you enter a user with sufficient access rights to obtain statistics (read-only usually works).
§ The parent device must be a VMware ESXi server version 5.2 or later. We recommend that you do not
use this sensor on your vCenter. Reliable hardware information can only be provided when this sensor
is created on your physical host server as parent device.
§ We recommend Windows Server 2012 R2 on the probe system for best performance of this sensor.
§ This sensor only shows items that report an actual status, so you might see more "sensors" in your
vSphere client than the number of states available in the channels of this sensor
§ See the Knowledge Base: I cannot add VMware sensors because of "wrong" password although it is
correct. What can I do?
§ See the Knowledge Base: Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
Detailed Requirements
Requirement Description
.NET 4.7.2 or later This sensor requires .NET 4.7.2 or later to be installed on the probe
system (on every cluster node, if on a cluster probe).
If the framework is missing, you cannot create this sensor.
For more information, see the Knowledge Base: Which .NET version
does PRTG require?
For details about this setting, see the Knowledge Base: How can I increase the connection limit on
VMware systems? PE121.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
2664
Setting Description
Host Servers Select the host servers that you want to monitor. PRTG creates one
sensor for each host server that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
2665
Setting Description
§ esxserverhosthealthsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Setting Description
Managed Object Identifier Shows the managed object identifier of the host that this sensor monitors.
(MOID)
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Known Warnings Enter one or more warning messages from the VMware host that you want
to ignore. Use semicolons (;) as separators, for example, Power Supply
7;Power Supply 8. Enter a string or leave the field empty.
Warning messages that you enter do not affect the sensor status 186 .
We strongly recommend that you use this filter for known issues
only. For example, for states that systems return because of
errors in the vendors' CIM extensions. Because of this, the sensor might
never show the Up status although the vSphere client does not show any
warnings.
2666
Setting Description
Known Errors Enter one or more error messages from the VMware host that you want to
ignore. Use semicolons (;) as separators, for example, Power Supply
7;Power Supply 8. Enter a string or leave the field empty.
Error messages that you enter do not affect the sensor status.
We strongly recommend that you use this filter for known issues
only. For example, for states that systems return because of
errors in the vendors' CIM extensions. Because of this, the sensor might
never show the Up status although the vSphere client does not show any
errors.
Handling of Unknown Define the sensor behavior when the vSphere client reports unknown
States states:
§ Show unknown states (default): Show unknown states in the status
message and set the sensor to the Warning status.
§ Do not show unknown states: Do not show unknown states in the
status message and do not change the sensor status.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
2667
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2668
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Alert States The total number of items in the alert status as the vSphere client reports
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Normal States The total number of items in the normal status as the vSphere client
reports
This channel is the primary channel by default.
Unknown States The total number of items in the unknown status as the vSphere client
reports
2669
Channel Description
Warning States The total number of items in the warning status as the vSphere client
reports
More
Knowledge Base
I cannot add VMware sensors because of "wrong" password although it is correct. What can I do?
§ https://kb.paessler.com/en/topic/66794
Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
§ https://kb.paessler.com/en/topic/78274
Monitoring VMware ESXi 5.5 does not work. What can I do?
§ https://kb.paessler.com/en/topic/59173
For which sensor types do you recommend Windows Server 2012 R2 or later and why?
§ https://kb.paessler.com/en/topic/64331
For more information about sensor settings, see the following sections:
2670
7.8.247 VMware Host Performance (SOAP) Sensor
The VMware Host Performance (SOAP) sensor monitors a VMware host server using the Simple Object
Access Protocol (SOAP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2677 .
2671
Remarks
§ This sensor has a very high performance impact. Use it with care. We recommend that you use no
more than 50 sensors of this sensor type on each probe.
§ This sensor requires Microsoft .NET 4.7.2 or later on the probe system.
§ The parent device must be a VMware ESXi server version 5.2 or later. We recommend that you do not
use this sensor on your vCenter. Reliable hardware information can only be provided when this sensor
is created on your physical host server as parent device.
§ This sensor requires credentials for VMware/XenServer 547 in the settings of the parent device. Ensure
that you enter a user with sufficient access rights to obtain statistics (read-only usually works).
§ We recommend Windows Server 2012 R2 on the probe system for best performance of this sensor.
§ See the Knowledge Base: I cannot add VMware sensors because of "wrong" password although it is
correct. What can I do?
§ See the Knowledge Base: Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
Detailed Requirements
Requirement Description
.NET 4.7.2 or later This sensor requires .NET 4.7.2 or later to be installed on the probe
system (on every cluster node, if on a cluster probe).
If the framework is missing, you cannot create this sensor.
For more information, see the Knowledge Base: Which .NET version
does PRTG require?
For details about this setting, see the Knowledge Base: How can I increase the connection limit on
VMware systems? PE121.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
2672
Basic Sensor Settings
Click the Settings tab of a sensor to change its settings.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ esxserverhostsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2673
VMware Host Settings
Setting Description
Managed Object Identifier Shows the managed object identifier of the host that this sensor monitors.
(MOID)
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
2674
Setting Description
Graph Type Define how different channels are shown for this sensor:
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2675
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2676
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2677
Channel Description
More
Knowledge Base
I cannot add VMware sensors because of "wrong" password although it is correct. What can I do?
§ https://kb.paessler.com/en/topic/66794
Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
§ https://kb.paessler.com/en/topic/78274
Monitoring VMware ESXi 5.5 does not work. What can I do?
§ https://kb.paessler.com/en/topic/59173
For which sensor types do you recommend Windows Server 2012 R2 or later and why?
§ https://kb.paessler.com/en/topic/64331
2678
7.8.248 VMware Virtual Machine (SOAP) Sensor
The VMware Virtual Machine (SOAP) sensor monitors a virtual machine (VM) on a VMware host server
using the Simple Object Access Protocol (SOAP).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2685 .
2679
Remarks
§ This sensor has a very high performance impact. Use it with care. We recommend that you use no
more than 50 sensors of this sensor type on each probe.
§ This sensor requires Microsoft .NET 4.7.2 or later on the probe system.
§ This sensor requires credentials for VMware/XenServer 547 in the settings of the parent device. Ensure
that you enter a user with sufficient access rights to obtain statistics (read-only usually works).
§ We recommend that you use vCenter as parent device. If the monitored VM changes the host server
via vMotion, PRTG can still continue monitoring. The sensor can monitor VMware ESXi server version
5.2 or later.
§ We recommend Windows Server 2012 R2 on the probe system for best performance of this sensor.
§ For VMware virtual machines, disk usage channels are only available as of virtual hardware version 8.
§ See the Knowledge Base: I cannot add VMware sensors because of "wrong" password although it is
correct. What can I do?
§ See the Knowledge Base: Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
Detailed Requirements
Requirement Description
.NET 4.7.2 or later This sensor requires .NET 4.7.2 or later to be installed on the probe
system (on every cluster node, if on a cluster probe).
If the framework is missing, you cannot create this sensor.
For more information, see the Knowledge Base: Which .NET version
does PRTG require?
For details about this setting, see the Knowledge Base: How can I increase the connection limit on
VMware systems? PE121.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
2680
PRTG requests a full list of all VMs configured on the target device. Because of this, it might take a
few seconds before the dialog appears.
Setting Description
Virtual Machines You see a list of all VMs available on the host server on this device,
including the ones that do not run. PRTG lists all VMs by name and the
operating system that they run on. Select the VMs that you want to
monitor. PRTG creates one sensor for each VM that you select.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
2681
Setting Description
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ esxservervmsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Setting Description
Managed Object Identifier Shows the managed object identifier (MOID) of the VM that this sensor
(MOID) monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Powered-Off VM Handling Define how the sensor reacts to VMs that are powered off:
§ Alarm when VM is powered off (default): Change to the Down status 186
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
2682
Setting Description
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
This option is not available when the sensor runs on the hosted probe
of a PRTG Hosted Monitor instance.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2683
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2684
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Datastore Total Read The datastore total read latency in milliseconds (msec)
Latency
2685
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
I cannot add VMware sensors because of "wrong" password although it is correct. What can I do?
§ https://kb.paessler.com/en/topic/66794
Why are my VMware sensors not working after upgrading to VCSA 6.5 U1?
§ https://kb.paessler.com/en/topic/78274
Monitoring VMware ESXi 5.5 does not work. What can I do?
§ https://kb.paessler.com/en/topic/59173
For which sensor types do you recommend Windows Server 2012 R2 or later and why?
2686
§ https://kb.paessler.com/en/topic/64331
2687
7.8.249 Windows CPU Load Sensor
The Windows CPU Load sensor monitors the CPU load on a computer via Windows Management
Instrumentation (WMI) or Windows performance counters, as configured in the Windows Compatibility
Options 569 of the parent device.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2694 .
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
2688
§ This sensor requires Windows Server 2008 R2 or later on the probe system.
§ This sensor requires that the Remote Registry Windows service runs on the target computer.
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
§ This sensor supports the IPv6 protocol.
§ This sensor can use a hybrid approach with Windows performance counters and WMI as fallback to
query data.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, a connection via
performance counters is not possible. However, WMI connections might
still work.
Windows version For this sensor to work with Windows performance counters, make sure
that Windows Server 2008 R2 or later is installed on the probe system (on
every cluster node, if on a cluster probe).
WoW64 must be installed on target systems that run Windows
Server 2016. This allows 32-bit applications to be run on 64-bit
systems. This is necessary because the PRTG probe service only runs
with 32-bit support. Without it, WMI sensors do not work.
Remote Registry For this sensor to work with Windows performance counters, make sure
Windows service that the Remote Registry Windows service runs on the target computer. If
this service does not run, a connection via performance counters is not
possible. However, WMI connections might still work.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
2689
Sensors that use the WMI protocol have a high impact on the system performance. Try to stay
below 200 WMI sensors per probe 133 . Above this number, consider using multiple remote
probes 3557 for load balancing.
For a general introduction to the technology behind WMI, see section Monitoring via WMI 3360 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
2690
Setting Description
§ cpuloadsensor
§ wmicpuloadsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].Data.txt. This setting is for debugging purposes.
PRTG overwrites this file with each scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
2691
Setting Description
Query Method Select the method that the sensor uses to query via WMI:
§ Use the default WMI query method: Use the standard method to query
WMI. We recommend that you use this option.
§ Use the alternative WMI query method: Use an alternative method to
query WMI for better compatibility if WMI sensors return errors such as
class not valid or invalid data.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2692
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2693
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2694
What security features does PRTG include?
§ https://kb.paessler.com/en/topic/61108
My Windows sensors do not work when using direct performance counter access. What can I do?
§ https://kb.paessler.com/en/topic/47263
2695
7.8.250 Windows IIS 6.0 SMTP Received Sensor
The Windows IIS 6.0 SMTP Received sensor monitors the number of received emails for a Microsoft
Internet Information Services (IIS) 6.0 Simple Mail Transfer Protocol (SMTP) service (Exchange 2003) via
Windows Management Instrumentation (WMI) or Windows performance counters, as configured in the
Windows Compatibility Options 569 of the parent device.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2703 .
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ This sensor requires Windows Server 2008 R2 or later on the probe system.
§ This sensor requires that the Remote Registry Windows service runs on the target computer.
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
§ This sensor can use a hybrid approach with Windows performance counters and WMI as fallback to
query data.
§ This sensor supports the IPv6 protocol.
§ This service is not used by Exchange Server 2007 and higher. Exchange Server 2007 uses its own
SMTP stack implemented in the Microsoft Exchange Transport service.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
2696
Detailed Requirements
Requirement Description
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, a connection via
performance counters is not possible. However, WMI connections might
still work.
Windows version For this sensor to work with Windows performance counters, make sure
that Windows Server 2008 R2 or later is installed on the probe system (on
every cluster node, if on a cluster probe).
WoW64 must be installed on target systems that run Windows
Server 2016. This allows 32-bit applications to be run on 64-bit
systems. This is necessary because the PRTG probe service only runs
with 32-bit support. Without it, WMI sensors do not work.
Remote Registry For this sensor to work with Windows performance counters, make sure
Windows service that the Remote Registry Windows service runs on the target computer. If
this service does not run, a connection via performance counters is not
possible. However, WMI connections might still work.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
Sensors that use the WMI protocol have a high impact on the system performance. Try to stay
below 200 WMI sensors per probe 133 . Above this number, consider using multiple remote
probes 3557 for load balancing.
For a general introduction to the technology behind WMI, see section Monitoring via WMI 3360 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
2697
Basic Sensor Settings
Click the Settings tab of a sensor to change its settings.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ wmiiissmtpreceivedsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2698
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2699
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2700
Schedules, Dependencies, and Maintenance Window
Setting Description
Schedule Select a schedule from the list. You can use schedules to monitor during
a certain time span (days or hours) every week. Choose from:
§ None
§ Saturdays
§ Sundays
§ Weekdays
§ Weekends
Maintenance Window Select if you want to set up a one-time maintenance window. During a
maintenance window, monitoring stops for the selected object and all child
objects. They show the Paused status instead. Choose between:
§ Do not set up a one-time maintenance window: Do not set up a one-
time maintenance window. Monitoring is always active.
§ Set up a one-time maintenance window: Set up a one-time maintenance
window and pause monitoring. You can define a time span for the pause
below.
To terminate an active maintenance window before the defined end
date, change the time entry in Maintenance Ends to a date in the
past.
Maintenance Begins This setting is only visible if you enable Set up a one-time maintenance
window above. Use the date time picker to enter the start date and time of
the one-time maintenance window.
2701
Setting Description
Maintenance Ends This setting is only visible if you enable Set up a one-time maintenance
window above. Use the date time picker to enter the end date and time of
the one-time maintenance window.
Dependency Type Select a dependency type. You can use dependencies to pause
monitoring for an object depending on the status of a different object. You
can choose from:
§ Use parent: Use the dependency type of the parent object.
Dependency This setting is only visible if you enable Select a sensor above. Click
and use the object selector 225 to select a sensor on which the current
object will depend.
Dependency Delay (Sec.) This setting is only visible if you select Select a sensor above. Define a
time span in seconds for the dependency delay.
After the master sensor for this dependency returns to the Up status,
PRTG additionally delays the monitoring of the dependent objects by the
time span you define. This can prevent false alarms, for example, after a
server restart or to give systems more time for all services to start. Enter
an integer.
This setting is not available if you set this sensor to Use parent or to
be the Master sensor for parent. In this case, define delays in the
parent device settings 535 or in its parent group settings 479 .
2702
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2703
Channel Description
More
Knowledge Base
My Windows sensors do not work when using direct performance counter access. What can I do?
§ https://kb.paessler.com/en/topic/47263
2704
7.8.251 Windows IIS 6.0 SMTP Sent Sensor
The Windows IIS 6.0 SMTP Sent sensor monitors the number of sent emails for a Microsoft Internet
Information Services (IIS) 6.0 Simple Mail Transfer Protocol (SMTP) service (Exchange 2003) via
Windows Management Instrumentation (WMI) or Windows performance counters, as configured in the
Windows Compatibility Options 569 of the parent device.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2712 .
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ This sensor requires Windows Server 2008 R2 or later on the probe system.
§ This sensor requires that the Remote Registry Windows service runs on the target computer.
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
§ This sensor can use a hybrid approach with Windows performance counters and WMI as fallback to
query data.
§ This sensor supports the IPv6 protocol.
§ This service is not used by Exchange Server 2007 and higher. Exchange Server 2007 uses its own
SMTP stack implemented in the Microsoft Exchange Transport service.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
2705
Detailed Requirements
Requirement Description
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, a connection via
performance counters is not possible. However, WMI connections might
still work.
Windows version For this sensor to work with Windows performance counters, make sure
that Windows Server 2008 R2 or later is installed on the probe system (on
every cluster node, if on a cluster probe).
WoW64 must be installed on target systems that run Windows
Server 2016. This allows 32-bit applications to be run on 64-bit
systems. This is necessary because the PRTG probe service only runs
with 32-bit support. Without it, WMI sensors do not work.
Remote Registry For this sensor to work with Windows performance counters, make sure
Windows service that the Remote Registry Windows service runs on the target computer. If
this service does not run, a connection via performance counters is not
possible. However, WMI connections might still work.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
Sensors that use the WMI protocol have a high impact on the system performance. Try to stay
below 200 WMI sensors per probe 133 . Above this number, consider using multiple remote
probes 3557 for load balancing.
For a general introduction to the technology behind WMI, see section Monitoring via WMI 3360 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
2706
Basic Sensor Settings
Click the Settings tab of a sensor to change its settings.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ wmiiissmtpsentsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2707
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2708
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2709
Schedules, Dependencies, and Maintenance Window
Setting Description
Schedule Select a schedule from the list. You can use schedules to monitor during
a certain time span (days or hours) every week. Choose from:
§ None
§ Saturdays
§ Sundays
§ Weekdays
§ Weekends
Maintenance Window Select if you want to set up a one-time maintenance window. During a
maintenance window, monitoring stops for the selected object and all child
objects. They show the Paused status instead. Choose between:
§ Do not set up a one-time maintenance window: Do not set up a one-
time maintenance window. Monitoring is always active.
§ Set up a one-time maintenance window: Set up a one-time maintenance
window and pause monitoring. You can define a time span for the pause
below.
To terminate an active maintenance window before the defined end
date, change the time entry in Maintenance Ends to a date in the
past.
Maintenance Begins This setting is only visible if you enable Set up a one-time maintenance
window above. Use the date time picker to enter the start date and time of
the one-time maintenance window.
2710
Setting Description
Maintenance Ends This setting is only visible if you enable Set up a one-time maintenance
window above. Use the date time picker to enter the end date and time of
the one-time maintenance window.
Dependency Type Select a dependency type. You can use dependencies to pause
monitoring for an object depending on the status of a different object. You
can choose from:
§ Use parent: Use the dependency type of the parent object.
Dependency This setting is only visible if you enable Select a sensor above. Click
and use the object selector 225 to select a sensor on which the current
object will depend.
Dependency Delay (Sec.) This setting is only visible if you select Select a sensor above. Define a
time span in seconds for the dependency delay.
After the master sensor for this dependency returns to the Up status,
PRTG additionally delays the monitoring of the dependent objects by the
time span you define. This can prevent false alarms, for example, after a
server restart or to give systems more time for all services to start. Enter
an integer.
This setting is not available if you set this sensor to Use parent or to
be the Master sensor for parent. In this case, define delays in the
parent device settings 535 or in its parent group settings 479 .
2711
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2712
Channel Description
Message Send Retries The number of retries per second for sent messages
More
Knowledge Base
My Windows sensors do not work when using direct performance counter access. What can I do?
§ https://kb.paessler.com/en/topic/47263
2713
7.8.252 Windows IIS Application Sensor
The Windows IIS Application sensor monitors a Microsoft Internet Information Services (IIS) server via
Windows Management Instrumentation (WMI). It can also monitor applications that use IIS, such as
Microsoft SharePoint or Microsoft Reporting Services (SSRS).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2720 .
2714
§ Spanish: Aplicación IIS Windows
Remarks
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
§ This sensor supports the IPv6 protocol.
§ The sensor cannot return data for the channels Status, Uptime, and Total when using performance
counters. We recommend that you use WMI only (recommended) as Preferred Data Source in the
Windows Compatibility Options 569 of the parent device.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Instances Select the instances that you want to monitor. PRTG creates one sensor
for each instance that you select.
2715
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ wmiiis
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
2716
Windows Internet Information Services
Setting Description
Instance Shows the unique instance name of the web service that this sensor
monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].Data.txt. This setting is for debugging purposes.
PRTG overwrites this file with each scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
2717
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2718
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2719
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
CGI Requests The number of Common Gateway Interface (CGI) requests per second
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Not Found Errors The number of not found errors per second
More
Knowledge Base
2720
§ https://kb.paessler.com/en/topic/61108
My Windows sensors do not work when using direct performance counter access. What can I do?
§ https://kb.paessler.com/en/topic/47263
2721
7.8.253 Windows MSMQ Queue Length Sensor
The Windows MSMQ Queue Length sensor reads the number of messages in a Microsoft message
queue of the parent device.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2728 .
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires that the Microsoft Message Queuing (MSMQ) service runs on both the probe
2723
2722
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ We recommend Windows Server 2012 R2 on the probe system for best performance of this sensor.
§ See the Knowledge Base: How do I activate Message Queuing in my Windows installation?
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
.NET 4.7.2 or later This sensor requires .NET 4.7.2 or later to be installed on the probe
system (on every cluster node, if on a cluster probe).
If the framework is missing, you cannot create this sensor.
For more information, see the Knowledge Base: Which .NET version
does PRTG require?
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, the sensor cannot
correctly connect.
MSMQ service For this sensor to work, the MSMQ service must be started both on the
target system and on the probe system. Additionally, the MSMQ service
must also be started on the target computer.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
Depending on your Windows version, you might first need to install the
MSMQ Server.
When installing MSMQ Server, make sure that you install it including
the Directory Service. Depending on your Windows installation, this
might have a different name, such as:
§ MSMQ Active Directory Domain Service Integration
2723
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Sensor Settings
Setting Description
Message Queues Select the message queues that you want to monitor. PRTG creates one
sensor for each message queue that you select.
If no message queues are available, you see a corresponding
message.
This sensor cannot monitor subqueues.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items
or to cancel the selection. In large tables, use the search function in the
upper-right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2724
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ ptfsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Sensor Settings
Sensor Settings
Setting Description
Message Queue Shows the name of the message queue that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Message Queue Type Shows the type of the message queue that this sensor monitors.
2725
Setting Description
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Minimum Message Age Optionally define an age in minutes that the message must be for the
sensor to count it. If you set a minimum message age, the sensor does
not regard messages that are younger than this age. If you leave this field
empty, the sensor does not check for the message age. Enter an integer
or leave the field empty.
If Value Changes Define what the sensor does when the sensor value changes:
§ Ignore changes (default): Take no action on change.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
2726
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
2727
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
2728
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2729
7.8.254 Windows Network Card Sensor
The Windows Network Card sensor monitors the bandwidth usage and traffic of a network interface via
Windows Management Instrumentation (WMI) or Windows performance counters, as configured in the
Windows Compatibility Options 569 of the parent device.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2737 .
§ Japanese: Windows
2730
§ Spanish: Tarjeta de red Windows
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ This sensor requires 2731 Windows Server 2008 R2 or later on the probe system to work with Windows
performance counters.
§ This sensor requires that the Windows Remote Registry service runs on the target computer.
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
§ This sensor requires Windows Server 2008 R2 or later or Windows 7 or later to monitor 64-bit counters
of the class Network Adapter (virtual network interfaces). On older target systems, the sensor can only
monitor 32-bit counters of the class Network Interface (the physical interface) and shows fewer
channels.
§ This sensor can use a hybrid approach with Windows performance counters and WMI as fallback to
query data.
§ This sensor supports teamed network adapters ("network interface card (NIC) teaming") on Windows
Server 2012.
§ This sensor supports the IPv6 protocol.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, a connection via
performance counters is not possible. However, WMI connections might
still work.
Windows version For this sensor to work with Windows performance counters, make sure
that Windows Server 2008 R2 or later is installed on the probe system (on
every cluster node, if on a cluster probe).
WoW64 must be installed on target systems that run Windows
Server 2016. This allows 32-bit applications to be run on 64-bit
systems. This is necessary because the PRTG probe service only runs
with 32-bit support. Without it, WMI sensors do not work.
2731
Requirement Description
Remote Registry For this sensor to work with Windows performance counters, make sure
Windows service that the Remote Registry Windows service runs on the target computer. If
this service does not run, a connection via performance counters is not
possible. However, WMI connections might still work.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
Sensors that use the WMI protocol have a high impact on the system performance. Try to stay
below 200 WMI sensors per probe 133 . Above this number, consider using multiple remote
probes 3557 for load balancing.
For a general introduction to the technology behind WMI, see section Monitoring via WMI 3360 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Sensor Specific
Setting Description
Network Cards Select the network cards that you want to monitor. PRTG creates one
sensor for each network card that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2732
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ bandwidthsensor
§ wmibandwidthsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Sensor Specific
Sensor Specific
2733
Setting Description
Network Card Shows the name of the network card that this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].Data.txt. This setting is for debugging purposes.
PRTG overwrites this file with each scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
2734
Setting Description
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2735
Schedules, Dependencies, and Maintenance Window
You cannot interrupt the inheritance for schedules, dependencies, and maintenance windows. The
corresponding settings from the parent objects are always active. However, you can define additional
schedules, dependencies, and maintenance windows. They are active at the same time as the parent
objects' settings.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
2736
Channel Unit Configuration
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
2737
Channel Description
More
Knowledge Base
My Windows sensors do not work when using direct performance counter access. What can I do?
§ https://kb.paessler.com/en/topic/47263
2738
7.8.255 Windows Pagefile Sensor
The Windows Pagefile sensor monitors the Windows pagefile usage via Windows Management
Instrumentation (WMI) or Windows performance counters, as configured in the Windows Compatibility
Options 569 of the parent device.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2744 .
§ Japanese: Windows
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ This sensor requires Windows Server 2008 R2 or later on the probe system.
§ This sensor requires that the Remote Registry Windows service runs on the target computer.
2739
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
§ This sensor does not work with Windows 2000 because the respective WMI class does not exist on
this operating system.
§ This sensor can use a hybrid approach with Windows performance counters and WMI as fallback to
query data.
§ This sensor supports the IPv6 protocol.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, a connection via
performance counters is not possible. However, WMI connections might
still work.
Windows version For this sensor to work with Windows performance counters, make sure
that Windows Server 2008 R2 or later is installed on the probe system (on
every cluster node, if on a cluster probe).
WoW64 must be installed on target systems that run Windows
Server 2016. This allows 32-bit applications to be run on 64-bit
systems. This is necessary because the PRTG probe service only runs
with 32-bit support. Without it, WMI sensors do not work.
Remote Registry For this sensor to work with Windows performance counters, make sure
Windows service that the Remote Registry Windows service runs on the target computer. If
this service does not run, a connection via performance counters is not
possible. However, WMI connections might still work.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
2740
Sensors that use the WMI protocol have a high impact on the system performance. Try to stay
below 200 WMI sensors per probe 133 . Above this number, consider using multiple remote
probes 3557 for load balancing.
For a general introduction to the technology behind WMI, see section Monitoring via WMI 3360 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
2741
Setting Description
§ pagefilesensor
§ wmipagefilesensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].Data.txt. This setting is for debugging purposes.
PRTG overwrites this file with each scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
2742
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2743
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
My Windows sensors do not work when using direct performance counter access. What can I do?
2744
§ https://kb.paessler.com/en/topic/47263
2745
7.8.256 Windows Physical Disk I/O Sensor
The Windows Physical Disk I/O sensor monitors the input/output (I/O) parameters of a hard disk on a
Windows system via Windows Management Instrumentation (WMI) or Windows performance counters,
as configured in the Windows Compatibility Options 569 of the parent device.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2753 .
2746
§ Simplified Chinese: Windows I/O
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ This sensor requires Windows Server 2008 R2 or later on the probe system.
§ This sensor requires that the Remote Registry Windows service runs on the target computer.
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
§ This sensor can use a hybrid approach with Windows performance counters and WMI as fallback to
query data.
§ This sensor supports the IPv6 protocol.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, a connection via
performance counters is not possible. However, WMI connections might
still work.
Windows version For this sensor to work with Windows performance counters, make sure
that Windows Server 2008 R2 or later is installed on the probe system (on
every cluster node, if on a cluster probe).
WoW64 must be installed on target systems that run Windows
Server 2016. This allows 32-bit applications to be run on 64-bit
systems. This is necessary because the PRTG probe service only runs
with 32-bit support. Without it, WMI sensors do not work.
Remote Registry For this sensor to work with Windows performance counters, make sure
Windows service that the Remote Registry Windows service runs on the target computer. If
this service does not run, a connection via performance counters is not
possible. However, WMI connections might still work.
2747
Requirement Description
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
Sensors that use the WMI protocol have a high impact on the system performance. Try to stay
below 200 WMI sensors per probe 133 . Above this number, consider using multiple remote
probes 3557 for load balancing.
For a general introduction to the technology behind WMI, see section Monitoring via WMI 3360 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Disk Select the physical disks that you want to monitor. PRTG creates one
sensor for each physical disk that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2748
Basic Sensor Settings
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ wmiphysicaldisksensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2749
Setting Description
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
PRTG only stores the result of this sensor if you select WMI only
(recommended) as Preferred Data Source in the Windows
Compatibility Options 569 of the parent device.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
2750
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2751
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
2752
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Avg Bytes Per Read The average number of bytes per read
Avg Bytes Per Transfer The average number of bytes per transfer
Avg Bytes Per Write The average number of bytes per write
Avg Read Queue The average number of items in the read queue
Avg Write Queue The average number of items in the write queue
Disk IOs The number of disk input/output (I/O) operations per second
Disk Read IOs The number of disk read I/O operations per second
Disk Write IOs The number of disk write I/O operations per second
2753
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
My Windows sensors do not work when using direct performance counter access. What can I do?
§ https://kb.paessler.com/en/topic/47263
2754
7.8.257 Windows Print Queue Sensor
The Windows Print Queue sensor reads the print queue on the parent device and returns the number of
jobs in the print queue. It can monitor queues for all printers that are locally installed.
You can use this sensor to monitor all print queues on your Windows print server and to retrieve
information about all available jobs that are in the queue longer than defined.
Additionally, this sensor can change to a defined status if there is a printer problem. See section
Sensor Settings 2757 for available parameters.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2764 .
§ Japanese: Windows
2755
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires 2756 that the Print Spooler Windows service runs on the target device and the
probe system.
§ This sensor requires Microsoft .NET 4.7.2 or later on the probe system. If the sensor shows the error
PE087, additionally install .NET 3.5 on the probe system.
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ We recommend Windows Server 2012 R2 on the probe system for best performance of this sensor.
§ You can add a change trigger 3182 to this sensor to get a notification when the number of jobs in the
queue changes.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
.NET 4.7.2 or later This sensor requires .NET 4.7.2 or later to be installed on the probe
system (on every cluster node, if on a cluster probe).
If the framework is missing, you cannot create this sensor.
For more information, see the Knowledge Base: Which .NET version
does PRTG require?
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, the sensor cannot
correctly connect.
Print Spooler Windows For this sensor to work, the Print Spooler Windows service must be
service started on the target computer and the probe system.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
2756
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Sensor Settings
Setting Description
Print Queues Select the print queues that you want to monitor. PRTG creates one
sensor for each print queue that you select.
If no print queues are available, you see a corresponding message.
If a printer name changes after sensor creation, you need to add the
sensor anew.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
2757
Setting Description
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ ptfsensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Settings
Sensor Settings
Setting Description
Print Queue Shows the name of the task whose print queue this sensor monitors.
PRTG shows this value for reference purposes only. If you need to
change this value, add the sensor anew.
2758
Setting Description
Advanced Status Options You can optionally define specific sensor states 186 for several return
messages of the printer that this sensor monitors. Choose between:
§ Do not define sensor states for specific return messages: Do not define
sensor states for specific return messages.
§ Define sensor states for specific return messages: Define sensor states
for various messages that the printer reports.
Not all printer types properly support Advanced Status Options, which
might lead to false alerts. If the printer does not support a property,
this property is always false. This means that the sensor cannot display
the state or detect if the printer supports the property. Even if the printer
can report a property, it can only do so if a print job is sent to the printer.
Door Open This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Manual Feed Required This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Needs User Intervention This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Offline This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
2759
Setting Description
Out of Memory This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Out of Paper This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Paper Jammed This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Paper Problem This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Paused This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Printer Error This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
2760
Setting Description
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Printer Not Available This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Toner Low This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Toner Out This setting is only available if you select the Define sensor states for
specific return messages above. For each problem that the printer reports,
you can define the status that the sensor shows. Choose between:
§ Ignore: Stay the same if the printer reports this message.
§ Warning: Show the Warning status if the printer reports this message.
§ Down: Show the Down status if the printer reports this message.
Minimum Print Job Age Optionally define the age of the print job in seconds. If you define a
(Sec.) minimum print job age, the sensor does not regard jobs that are younger
than this value. If you leave this field empty, the sensor does not check for
the print job age. Enter an integer or leave the field empty.
Debug Options
Debug Options
2761
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt and Result of Sensor [ID].Data.txt. This setting
is for debugging purposes. PRTG overwrites these files with each
scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2762
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2763
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
2764
7.8.258 Windows Process Sensor
The Windows Process sensor monitors a Windows process via Windows Management Instrumentation
(WMI) or Windows performance counters, as configured in the Windows Compatibility Options 569 of the
parent device.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2771 .
§ Japanese: Windows
2765
Remarks
§ This sensor has a high performance impact. Use it with care. We recommend that you use no more
than 200 sensors of this sensor type on each probe.
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ This sensor requires Windows Server 2008 R2 or later on the probe system.
§ This sensor requires that the Remote Registry Windows service runs on the target computer.
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
§ The sensor cannot show values above 4 GB for 64-bit processes if you use performance counters.
§ This sensor can use a hybrid approach with Windows performance counters and WMI as fallback to
query data.
§ This sensor supports the IPv6 protocol.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, a connection via
performance counters is not possible. However, WMI connections might
still work.
Windows version For this sensor to work with Windows performance counters, make sure
that Windows Server 2008 R2 or later is installed on the probe system (on
every cluster node, if on a cluster probe).
WoW64 must be installed on target systems that run Windows
Server 2016. This allows 32-bit applications to be run on 64-bit
systems. This is necessary because the PRTG probe service only runs
with 32-bit support. Without it, WMI sensors do not work.
Remote Registry For this sensor to work with Windows performance counters, make sure
Windows service that the Remote Registry Windows service runs on the target computer. If
this service does not run, a connection via performance counters is not
possible. However, WMI connections might still work.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
2766
Hybrid Approach: Performance Counters and WMI
By default, this sensor uses WMI to request monitoring data. You can change the default behavior
to a hybrid approach in the Windows Compatibility Options of the parent device's settings 569 on
which you create this sensor: if you choose this option, the sensor first tries to query data via Windows
performance counters and uses WMI as a fallback if performance counters are not available. When
running in fallback mode, the sensor tries to connect via performance counters again after 24 hours.
Sensors that use the WMI protocol have a high impact on the system performance. Try to stay
below 200 WMI sensors per probe 133 . Above this number, consider using multiple remote
probes 3557 for load balancing.
For a general introduction to the technology behind WMI, see section Monitoring via WMI 3360 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
2767
Setting Description
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ wmiprocesssensor
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Setting Description
Executable Enter the name of the process that you want to monitor. Provide the name
of an executable file without the .exe extension (for example, enter firefox
to monitor firefox.exe).
The sensor shows the Down status 186 if the process is not active on
the target device.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
2768
Setting Description
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].Data.txt. This setting is for debugging purposes.
PRTG overwrites this file with each scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
2769
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
2770
For more information, see section Root Group Settings 421 , section Access Rights.
For more information, see section Root Group Settings 422 , section Channel Unit Configuration.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
CPU Usage (Average Per The average CPU usage (if multiple instances are running) in percent
Instance)
For the CPU Usage (average per instance) value, the summed up
CPU usage value is divided by the number of all instances. It shows
the average CPU usage of a single instance of the process on one CPU.
2771
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
My Windows sensors do not work when using direct performance counter access. What can I do?
§ https://kb.paessler.com/en/topic/47263
2772
7.8.259 Windows System Uptime Sensor
The Windows System Uptime sensor monitors the uptime of a Windows system via Windows
Management Instrumentation (WMI) or Windows performance counters, as configured in the Windows
Compatibility Options 569 of the parent device.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2778 .
§ German: Windows-Systemlaufzeit
§ Japanese: Windows
Remarks
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ This sensor requires Windows Server 2008 R2 or later on the probe system.
§ This sensor requires that the Remote Registry Windows service runs on the target computer.
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
2773
§ This sensor can use a hybrid approach with Windows performance counters and WMI as fallback to
query data.
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
Windows credentials This sensor requires credentials for Windows systems 542 in the settings
of the parent device. Preferably, use Windows domain credentials.
If you use local credentials, make sure that the same Windows user
accounts (with the same user name and password) exist on both the
probe system and the target computer. Otherwise, a connection via
performance counters is not possible. However, WMI connections might
still work.
Windows version For this sensor to work with Windows performance counters, make sure
that Windows Server 2008 R2 or later is installed on the probe system (on
every cluster node, if on a cluster probe).
WoW64 must be installed on target systems that run Windows
Server 2016. This allows 32-bit applications to be run on 64-bit
systems. This is necessary because the PRTG probe service only runs
with 32-bit support. Without it, WMI sensors do not work.
Remote Registry For this sensor to work with Windows performance counters, make sure
Windows service that the Remote Registry Windows service runs on the target computer. If
this service does not run, a connection via performance counters is not
possible. However, WMI connections might still work.
To enable the service, log in to the respective computer and open the
services manager (for example, via services.msc). In the list, find the
respective service and set its Start Type to Automatic.
Sensors that use the WMI protocol have a high impact on the system performance. Try to stay
below 200 WMI sensors per probe 133 . Above this number, consider using multiple remote
probes 3557 for load balancing.
2774
For a general introduction to the technology behind WMI, see section Monitoring via WMI 3360 .
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ wmiuptimesensor
2775
Setting Description
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file name is
Result of Sensor [ID].Data.txt. This setting is for debugging purposes.
PRTG overwrites this file with each scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
2776
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2777
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
More
Knowledge Base
My Windows sensors do not work when using direct performance counter access. What can I do?
2778
§ https://kb.paessler.com/en/topic/47263
2779
7.8.260 Windows Updates Status (PowerShell) Sensor
The Windows Updates Status (PowerShell) sensor monitors the status of Windows updates on a
computer and counts the available and installed Windows updates that are either from Microsoft or from
the local Windows Server Update Services (WSUS) server.
You can find the updates that the sensor considers in the Server Manager (WSUS) under Roles |
Windows Server Update Services | Update Services | Computers | Reports.
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2786 .
2780
§ Spanish: Estado de actualizaciones Windows (PowerShell)
Remarks
§ This sensor has a very high performance impact. Use it with care. We recommend that you use no
more than 50 sensors of this sensor type on each probe.
§ This sensor requires that Remote PowerShell is enabled on the target system and PowerShell 3.0
2781
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ We recommend that you set the scanning interval 2785 of this sensor to at least 12 hours to limit the
load on the server that is monitored.
§ This sensor supports the IPv6 protocol.
§ In certain cases, it might take some time until the sensor receives data for the first time.
§ If the sensor cannot determine any values for the Time Since Last Update channel (for example,
because the list of updates is empty), it shows the value -1s and changes to the Warning status 186 .
§ When monitoring a Remote Desktop Server (RDS) system with the option Roaming Profiles enabled,
this sensor creates a temporary user profile folder for each scanning interval. To minimize this effect,
we recommend that you set the sensor's scanning interval to at least 7 days.
§ See the Knowledge Base: Where can I find more information about PowerShell sensors?
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Detailed Requirements
Requirement Description
.NET 4.7.2 or later This sensor requires .NET 4.7.2 or later to be installed on the probe
system (on every cluster node, if on a cluster probe).
If the framework is missing, you cannot create this sensor.
For more information, see the Knowledge Base: Which .NET version
does PRTG require?
Remote PowerShell This sensor uses PowerShell commands. To monitor devices with this
sensor, Remote PowerShell access must be enabled on the target
computer. Also make sure that you have installed PowerShell 3.0 or later
on both the probe system and the target system.
If you receive an error message regarding issues with the WinRM
connection, make sure that remote commands have been enabled in
PowerShell. For more details, see the Knowledge Base: How do I enable
and use remote commands in Windows PowerShell?
2781
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
Setting Description
Parent Tags Shows tags 146 that the sensor inherits 146 from its parent device 142 ,
parent group 141 , and parent probe 141 .
This setting is for your information only. You cannot change it.
Tags Enter one or more tags. Confirm each tag with the Spacebar key, a
comma, or the Enter key. You can use tags to group objects and use tag-
filtered views later on. Tags are not case-sensitive. Tags are automatically
inherited 146 .
It is not possible to enter tags with a leading plus (+) or minus (-)
sign, nor tags with parentheses (()) or angle brackets (<>).
For performance reasons, it can take some minutes until you can
filter for new tags that you added.
The sensor has the following default tags that are automatically predefined
in the sensor's settings when you add the sensor:
§ windowsupdatesstatus
Priority Select a priority for the sensor. This setting determines the position of the
sensor in lists. The highest priority is at the top of a list. Choose from the
lowest priority ( ) to the highest priority ( ).
2782
Usually, a sensor connects to the IP Address/DNS Name of the parent device. See the device
settings 535 for details. For some sensors, you can explicitly define the monitoring target in the
sensor settings.
Sensor Specific
Sensor Specific
Setting Description
Port Enter the number of the port to which this sensor connects. Enter an
integer. The default port is 5985.
Port in SPN Define whether to include the port number in the Service Principal Name
(SPN) used for Kerberos authentication, for example, on devices where
Microsoft Internet Information Services (IIS) or similar services are
installed.
§ Exclude port in SPN (default): Do not include the port number in the
SPN.
Authentication Method Select the authentication method for the connection to the host via
PowerShell. Choose between:
§ Kerberos authentication (default): The sensor uses Kerberos
authentication.
§ Negotiate authentication: The sensor uses Negotiate authentication.
For more information about Negotiate authentication, see the
Knowledge Base: Facing issues with the Windows Updates Status
(PowerShell) sensor - can you help me?
2783
Debug Options
Debug Options
Setting Description
Result Handling Define what PRTG does with the sensor result:
§ Discard result: Do not store the sensor result.
§ Store result: Store the last sensor result in the \Logs\sensors subfolder
of the PRTG data directory 3579 on the probe system. The file names are
Result of Sensor [ID].txt, Result of Sensor [ID].Data.txt, and Result of
Sensor [ID].log. This setting is for debugging purposes. PRTG
overwrites these files with each scanning interval.
In a cluster, PRTG stores the result in the PRTG data directory of the
master node.
Sensor Display
Sensor Display
Setting Description
Primary Channel Select a channel from the list to define it as the primary channel. In the
device tree, the last value of the primary channel is always displayed
below the sensor's name. The available options depend on what channels
are available for this sensor.
You can set a different primary channel later by clicking below a
channel gauge on the sensor's Overview tab.
Graph Type Define how different channels are shown for this sensor:
§ Show channels independently (default): Show a graph for each channel.
2784
Setting Description
Stack Unit This setting is only visible if you enable Stack channels on top of each
other as Graph Type. Select a unit from the list. All channels with this unit
are stacked on top of each other. By default, you cannot exclude single
channels from stacking if they use the selected unit. However, there is an
advanced procedure to do so.
Inherited Settings
By default, all of these settings are inherited from objects that are higher in the hierarchy. We
recommend that you change them centrally in the root group settings 396 if necessary. To change a
setting for this object only, click under the corresponding setting name to disable the inheritance
and to display its options.
Scanning Interval
This sensor has a fixed minimum scanning interval for performance reasons. You cannot use a
shorter scanning interval. Consequently, shorter scanning intervals in the Monitoring 3233 settings are
not available for this sensor.
Scanning Interval
For more information, see section Root Group Settings 418 , section Scanning Interval.
2785
Schedules, Dependencies, and Maintenance Window
For more information, see section Root Group Settings 420 , section Schedules, Dependencies, and
Maintenance Window.
Access Rights
Access Rights
For more information, see section Root Group Settings 421 , section Access Rights.
Channel List
Which channels the sensor actually shows might depend on the target device, the available
components, and the sensor setup.
Channel Description
Downtime In the channel table on the Overview tab, this channel never shows any
values. PRTG uses this channel in graphs and reports to show the amount
of time in which the sensor was in the Down status in percent.
Time Since Last Update The time passed since the last update
This channel is the primary channel by default.
The sensor always creates the channel Time Since Last Update.
All other channels are optional and only show up if the sensor
can retrieve respective data.
2786
Channel Description
Updates (Severity Low) The number of hidden updates with low severity
Hidden
Updates (Severity Low) The number of installed updates with low severity
Installed
Updates (Severity Low) The number of missing updates with low severity
Missing
More
Knowledge Base
2787
Where can I find more information about PowerShell sensors?
§ https://kb.paessler.com/en/topic/62451
I have problems with the PowerShell Exchange sensors, what can I do?
§ https://kb.paessler.com/en/topic/54353
I get the error "WinRM cannot process the request" when I try to use a PowerShell sensor
§ https://kb.paessler.com/en/topic/59745
Facing issues with the Windows Updates Status (PowerShell) sensor - can you help me?
§ https://kb.paessler.com/en/topic/71899
2788
7.8.261 WMI Battery Sensor
The WMI Battery sensor monitors the available capacity and the state of connected batteries of a
Windows-based device via Windows Management Instrumentation (WMI).
For a detailed list and descriptions of the channels that this sensor can show, see section Channel
List 2795 .
§ Japanese: WMI
Remarks
§ This sensor has a high performance impact. Try to stay below 200 WMI sensors in total per probe 133 .
Above this number, consider using multiple remote probes 3557 for load balancing.
2789
§ This sensor requires credentials for Windows systems 542 in the settings of the parent device.
§ This sensor requires WoW64 (Windows 32-bit on Windows 64-bit) for target systems that run
Windows Server 2016.
§ This sensor supports the IPv6 protocol.
§ This sensor uses lookups to determine the status values of one or more channels. This means that
possible states are defined in a lookup file. You can change the behavior of a channel by editing the
lookup file that the channel uses. For details, see section Define Lookups 3541 .
You cannot add this sensor to the hosted probe of a PRTG Hosted Monitor instance. If you want to
use this sensor, add it to a remote probe device.
Add Sensor
The Add Sensor 391 dialog appears when you manually add a new sensor to a device. It only shows the
settings that are required to create the sensor. You can change nearly all settings on the sensor's
Settings tab after creation.
The settings that you select in the Add Sensor dialog are valid for all sensors that you create when
you finish the dialog.
Setting Description
Batteries Select the batteries or uninterruptible power supplies (UPSs) that you
want to monitor. PRTG creates one sensor for each battery or
uninterruptible power supply (UPS) that you select.
Enable check boxes in front of the respective lines to select the
items. Use the check box in the table header to select all items or to
cancel the selection. In large tables, use the search function in the upper-
right corner.
2790