From 744aea747fefc55250c515ce79ed2c02a9a91f38 Mon Sep 17 00:00:00 2001 From: osmiy Date: Wed, 31 Jan 2007 08:16:40 +0000 Subject: WEB monitoring, create WEB items as Float, not UINT64 git-svn-id: svn://svn.zabbix.com/trunk@3773 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/include/httptest.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontends/php') diff --git a/frontends/php/include/httptest.inc.php b/frontends/php/include/httptest.inc.php index 575bb957..3d77e290 100644 --- a/frontends/php/include/httptest.inc.php +++ b/frontends/php/include/httptest.inc.php @@ -82,13 +82,13 @@ array( 'description' => 'Download speed for step \'$2\' of scenario \'$1\'', 'key_' => 'web.test.in['.$testname.','.$name.',bps]', - 'type' => ITEM_VALUE_TYPE_UINT64, + 'type' => ITEM_VALUE_TYPE_FLOAT, 'units' => 'bps', 'httpstepitemtype'=> HTTPSTEP_ITEM_TYPE_IN), array( 'description' => 'Response time for step \'$2\' of scenario \'$1\'', 'key_' => 'web.test.time['.$testname.','.$name.',resp]', - 'type' => ITEM_VALUE_TYPE_UINT64, + 'type' => ITEM_VALUE_TYPE_FLOAT, 'units' => 's', 'httpstepitemtype'=> HTTPSTEP_ITEM_TYPE_TIME), array( -- cgit