Questions tagged [auditing]

330 questions
1
vote
1 answer

How to migrate already existing custom history tables to envers

Due to historic reasons we use envers as well as a custom auditing mechanism. Some tables are audited by envers but one table and most of its dependent tables are audited manually. Our custom solution creates a copy of the object graph, adds a…
samjaf
  • 1,033
  • 1
  • 9
  • 19
1
vote
6 answers

SQL Server 2005 Change Auditing

Is there a built in way in SQL Server 2005 to audit things specifically like deleting a stored procedure? Is there a history table that I can query? We have a mystery sproc that has disappeared a few times now.
tidge
  • 437
  • 2
  • 7
  • 16
1
vote
1 answer

How can I consume all messages from an AuditQueue in Rebus using SQLServerPersistance?

I have Rebus'es Message Auditing feature turned on but currently nothing to consume the messages ending up in the queue. I want to be able to consume all the messages and simply write them to offline storage. I don't need my AuditConsumer service…
XenoPuTtSs
  • 1,254
  • 1
  • 11
  • 31
1
vote
2 answers

log or Audit in spring and database for 2 purposes how much time a method, task and job took and also store caclulations for audit debug purpose

Our application uses java / sql server. We have ETL jobs (around 35 for different upstreams) using sprint batch. Some of the code is in java and some in database. We want to track lifecycle of a job from database. E.g. when a job started, when a…
Naren
  • 86
  • 1
  • 8
1
vote
1 answer

spring data jpa fine granular auditing, custom audit

I have requirement where I need to insert user name and group name to which the user belongs (both available in SecurityContext) in the same table. class Entity { @createdBy String username @createdBy String groupname other…
1
vote
0 answers

Anyone know if there is a Django auditing lib to track user/record activities?

I need add a auditing log to my system, so all changes on some module records be saved and be used for auditing purpose, this is a system to create and manage Raffle. I am looking for a existing lib before I try to create one myself. Thanks
wyx2000
  • 75
  • 1
  • 8
1
vote
0 answers

Hibernate: how to mirror specific data

I'm currently working on a project using hibernate for persistance on top of databases of various types. The solution consists of multiple servers with their own databases. The challenge is now to build server that receives all data from all other…
1
vote
1 answer

EventLog & ConvertFrom-String

i am trying to objectify the security event log by using the ConvertFrom-String PowerShell cmdlet, but am not able to work it out. First i am getting the event/s from my DC. $events = Get-WinEvent -ComputerName $comp FilterHashtable…
ajhstn
  • 21
  • 4
1
vote
1 answer

Selinux must need auditing support? Can audit2allow be used instead?

I have seen that selinux need to enable auditing support. I want to know the difference between audit and audit2allow, can I just use audit2allow instead of audit? It seems that no audit support in android code, only audit2allow. For the audit, I…
roMoon
  • 91
  • 10
1
vote
2 answers

Track changes to a sharepoint list item

We are developing a system using SharePoint 2010 Foundataion. We would like to track all changes made to a list. What is the best way to do this?
Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252
1
vote
0 answers

error: libaudit.h: No such file or directory

I am building libselinux on openwrt, and need auditing support. But I have really open the aduditing support in the linux kernel menuconfig, why still this error happen? error: libaudit.h: No such file or directory. Any sort of help is greatly…
roMoon
  • 91
  • 10
1
vote
0 answers

Mule ESB - Catch Exception Strategy block and Payload

Mule documentation states that catch-exception-strategy is similar to java catch block. But unfortunately, the payload is consumed (message is consumed); from the catch block the payload is lost (unlike a java method where you can access the method…
1
vote
3 answers

Auto generating create date and last modify date using JPA data CrudRepositories

I'm trying to migrate my app to generate the schema using the entities, instead of having a pre existing schema. Up until now, the create and lastModify dates where updated by the DB (MySql), but now since i want to generate the schema from JPA, i…
ido flax
  • 528
  • 1
  • 10
  • 19
1
vote
1 answer

How to implement tungsten replicator BuildAuditTable filter

This is regarding : com.continuent.tungsten.replicator.filter.BuildAuditTable I tried both Tungsten 2.2 and 3.0 My intial configuration ./tools/tpm install alpha \ --topology=master-slave \ --master=host1 \ --replication-user=tungsten…
1
vote
0 answers

geeting error while storing table name in hibernate envers

I have to store table name in my auditing table and for that I am using hibernate envers. I am trying to implement the example in my sample application given in hibernate envers documentation. you can refer this link for code…
rishi
  • 1,792
  • 5
  • 31
  • 63