summaryrefslogtreecommitdiffstats
path: root/frontends/php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-01-31 08:16:40 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-01-31 08:16:40 +0000
commit744aea747fefc55250c515ce79ed2c02a9a91f38 (patch)
tree8bd6aeca499155aac4a61a8a66a3d49f97ee8609 /frontends/php
parente3693c12ab9e2bf934e1cb8194c1be5fe3650d86 (diff)
downloadzabbix-744aea747fefc55250c515ce79ed2c02a9a91f38.tar.gz
zabbix-744aea747fefc55250c515ce79ed2c02a9a91f38.tar.xz
zabbix-744aea747fefc55250c515ce79ed2c02a9a91f38.zip
WEB monitoring, create WEB items as Float, not UINT64
git-svn-id: svn://svn.zabbix.com/trunk@3773 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php')
-rw-r--r--frontends/php/include/httptest.inc.php4
1 files changed, 2 insertions, 2 deletions
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(