summaryrefslogtreecommitdiffstats
path: root/frontends/php/report1.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/report1.php')
-rw-r--r--frontends/php/report1.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/report1.php b/frontends/php/report1.php
index 9bb3d169..9184a1e8 100644
--- a/frontends/php/report1.php
+++ b/frontends/php/report1.php
@@ -20,7 +20,7 @@
<td>Is zabbix_suckerd running ?</td>
<?php
$str="No";
- if(exec("ps aux|grep zabbix_suckerd|wc -l")>0)
+ if(exec("ps axw|grep zabbix_suckerd|wc -l")>0)
{
$str="Yes";
}
@@ -32,7 +32,7 @@
<td>Is zabbix_trapperd running ?</td>
<?php
$str="No";
- if(exec("ps aux|grep zabbix_trapperd|wc -l")>0)
+ if(exec("ps axw|grep zabbix_trapperd|wc -l")>0)
{
$str="Yes";
}