What is this?

This knowledgebase contains questions and answers about PRTG Network Monitor and network monitoring in general. You are invited to get involved by asking and answering questions!

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

Your Vote:

Up

Down

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 by  KevinOBrien (0) 1

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



2 Replies

Votes:

0

Your Vote:

Up

Down

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

Your Vote:

Up

Down

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

Kevin

Created on Apr 30, 2013 12:20:23 PM by  KevinOBrien (0) 1



Please log in or register to enter your reply.


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.