[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
slapo-auditlog doesn't log the time and name for delete operation
- To: openldap-technical@openldap.org
- Subject: slapo-auditlog doesn't log the time and name for delete operation
- From: Ben Leo <benz.leo@gmail.com>
- Date: Sat, 14 Nov 2009 11:34:16 -0800
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=S+eFBzxK+d313g/ECQfix9f7mbCcX4tKAo/l8LGNYsQ=; b=Q9GPhxlEGBckKsGDy2T4P5wUDSfb+ppWiMcdHq1KwbWiK2I06e2p6iGYvgzRDQk1ky 9UsENRp1SwmcA1+Xy8wF53U+GmqALpQwWiidEt2r2bh6RRpTBUAVDPFAZtz62lHvHTGz E3W3C/7pdvKEZVBpMDNG9sRgNwRdSOPcwshE4=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=AJHT49xMRTzjsBmoOMYDpXtdEM7URZiGEgDz8/oDqmgR0JH6uWM2XjvxBIoCuXxhcI vDkQv7GLyhR+2MZvHai7HqveEMGoAE9PReecjw6zDw3ehsGte26a2TRLRk9oTuaQNBmI 6DR19imE45ZgLzBw2V1hqOGrKBhvZb1tnb1tQ=
Hi,
I have successfully implemented slapo-auditlog but as I test the logging, I found a problem on the logging for "delete" operation.
I noticed that, for "add" and "modify" operation, the auditlog shows the Timestamp and Name of each operation, as the following example:
# add 1257968890 dc=example,dc=com cn=manager,dc=example,dc=com
dn: uid=test,ou=People,dc=example,dc=com
changetype: add
uid: test
sn: test
cn: test
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: inetOrgPerson
creatorsName: cn=manager,dc=example,dc=com
createTimestamp: 20091111194810Z
entryCSN: 20091111194810.672178Z#000000#000#000000
modifiersName: cn=manager,dc=example,dc=com
modifyTimestamp: 20091111194810Z
# end add 1257968890
But, for "delete" operation, it doesn't show the Timestamp and Name at all, as the following example:
# delete 1258152007 dc=example,dc=com cn=manager,dc=example,dc=com
dn: uid=test,ou=People,dc=example,dc=com
changetype: delete
# end delete 1258152007
How can I get the Timestamp and Name to show for the "delete" operation?
If slapo-auditlog cannot provide this, is there any other way to do this?
Please kindly help.
Thanks,
Ben