What is this?

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

Learn more

PRTG Network Monitor

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

Free Download

Top Tags


View all Tags

Trying to graph response time

Votes:

0

Hey guys,

I have created a custom sensor to measure response time of one of my applications using PowerShell. Here is the output of my script:

<prtg>
<result><channel>App1</channel><value>1.390 seconds</value></result>
<result><channel>App2</channel><value>1.421 seconds</value></result>
</prtg>

The logs show's this same output but my graphs show 0#. How can I change the settings to show time instead?

Thank you! Kevin

prtg time unit

Created on Apr 29, 2013 4:46:47 PM

Last change on Apr 30, 2013 6:56:13 AM by  Konstantin Wolff [Paessler Support]



2 Replies

Votes:

0

Hi,
as you are returning float values, please try adjusting the script output to the following:

<prtg>
<result>
<channel>App1</channel>
<value>1.390 seconds</value>
<float>1</float>
</result>
<result>
<channel>App2</channel>
<value>1.421 seconds</value>
<float>1</float>
</result>
</prtg>

Now PRTG should show the correct values.
Best regards

Created on Apr 30, 2013 6:58:25 AM by  Konstantin Wolff [Paessler Support]



Votes:

0

<float>1</float> did the trick! thanks for your help!

Kevin

Created on Apr 30, 2013 12:20:23 PM




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