summaryrefslogtreecommitdiffstats
path: root/frontends/php/audit.php
diff options
context:
space:
mode:
authoralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-09-14 11:06:27 +0000
committeralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-09-14 11:06:27 +0000
commit8755f9643aba3cffc5320321618fbe8e7b78b73b (patch)
tree61f79790fee2222b1d3c5c3cd3faf09c9de8f168 /frontends/php/audit.php
parent220a18752f8fefdd0af90ccd17cc045c2e6ae1a6 (diff)
downloadzabbix-8755f9643aba3cffc5320321618fbe8e7b78b73b.tar.gz
zabbix-8755f9643aba3cffc5320321618fbe8e7b78b73b.tar.xz
zabbix-8755f9643aba3cffc5320321618fbe8e7b78b73b.zip
Initial integration of distributed monitoring.
Changes 3196:HEAD of branches/distributed git-svn-id: svn://svn.zabbix.com/trunk@3306 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/audit.php')
-rw-r--r--frontends/php/audit.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontends/php/audit.php b/frontends/php/audit.php
index d38f4153..c89f62c1 100644
--- a/frontends/php/audit.php
+++ b/frontends/php/audit.php
@@ -75,13 +75,15 @@
if(!isset($_REQUEST["start"]))
{
$sql="select u.alias,a.clock,a.action,a.resourcetype,a.details from auditlog a, users u".
- " where u.userid=a.userid and a.auditid>$maxauditid-200 order by clock desc";
+ " where u.userid=a.userid and a.auditid>$maxauditid-200 order by clock desc".
+ " and mod(u.userid,100)=".$ZBX_CURNODEID;
$limit = 200;
}
else
{
$sql="select u.alias,a.clock,a.action,a.resourcetype,a.details from auditlog a, users u".
" where u.userid=a.userid and a.auditid>$maxauditid-".($_REQUEST["start"]+200).
+ " and mod(u.userid,100)=".$ZBX_CURNODEID.
" order by clock desc";
$limit = $_REQUEST["start"]+200;