Questions tagged [audit-logging]

Audit-logging is the practice of keeping records of system activity

Audit-logging is the practice of keeping records of system activity. Audit logging does not contain information about the technical operation of a system, like print statements, but rather keeps track of discrete events that occur within a system. Examples are "User X accessed data Y at Time T", etc.

389 questions
0
votes
2 answers

Use data in database table (not a domain) in grails

I'm using Grails Audit Logging plugin which populates a database table with changes in grails domain classes. Now, I need to display those data(rows) persisted by plugin to a view. How can I use data from a database table (not a domain class) in…
TheKojuEffect
  • 20,103
  • 19
  • 89
  • 125
0
votes
0 answers

Grails Audit-Logging Plugin

I use grails audit plugin for logging any domain data change I am doing simple test to test out this plugin. Inserting/Updating grails form. My update failed with data out of bound. That save was failed, but still auditLog recorded that data in the…
monal86
  • 433
  • 2
  • 11
  • 26
0
votes
1 answer

Receiving a fatal error related to an extension that was removed

I removed the entire extension. This error showed up. I even replaced the entire application files. It still showed up. I searched AuditFieldBehavior, nothing showed up. Any ideas where I can look next? AuditFieldBehavior is the class that extends…
hammies
  • 1,344
  • 2
  • 22
  • 46
0
votes
1 answer

Grails audit logging plugin for mongodb is not working

I am using grails 2.2.3 , mongodb 1.3.3 the curd operation is working fine. I want to log my curd operation so i use audit-logging plugin "audit-logging:1.0.0",it work fine with mysql-database but not with mongodb.It shows Error 2014-05-05…
Bharat
  • 1
  • 1
0
votes
1 answer

hibernate interceptor for auditing log design issue due to time difference in calling of onSave and afterTransactionComplete

What i do I have a async system which react whenever a new entity is created in main system and this async system query the database for the newly created entities. How i do it For creating the msgs for async system i use hibernate interceptor. …
Bhuvan
  • 4,028
  • 6
  • 42
  • 84
0
votes
2 answers

Linking Application Audit Trail with DB Logs

I'm working on an application that logs every business transaction to an audit trail, and I have a requirement to be able to correlate events in this audit trail with records in the Journal of an IBM System i (AS400) that is used as an RDBMS by that…
Eyad
  • 327
  • 3
  • 10
0
votes
1 answer

How to log Relying Party Authentication in ADFS

Does anyone know of a way to log or track logging to multiple Relying Parties during a ADFS session? So for more clarity we have 5 relying parties on our ADFS servers. This is setup to be an SSO solution. We can log when that user authenticates to…
0
votes
1 answer

storing old values in audit trigger

Hi I'm developing simple audit trigger in postgres server. At the moment, I'm getting old value from name column such as below line. v_old_data := ROW (OLD.name); It works fine, but it store the value with parentheses. Such as '(john)'. Is there…
user3242117
  • 35
  • 1
  • 3
0
votes
2 answers

Postgres audit trigger only fired by one row UPDATE

Hi I'm up to develop a simple audit trigger for postgresql server. According to this document, I pretty much understand how it works. But I want to record my activity only when the certain row is updated. Below is the code from the link. And it…
user3242117
  • 35
  • 1
  • 3
0
votes
1 answer

NHibernate IPreUpdateEventListener doesn't insert to second table

I'm prototyping some simple audit logging functionality. I have a mid sized entity model (~50 entities) and I'd like to implement audit logging on about 5 or 6. Ultimately I'd like to get this working on Inserts & Deletes as well, but for now I'm…
0
votes
1 answer

Entity Framework: Get the underlying entity type when foreign key changes for audit trail

I'm currently working on a project where the requirement is to log changes to each individual property of an entity. Many of the entity's have 1 to many relationship with a lookup value type and when this changes I can so far track that i.e. '1' was…
Drauka
  • 1,217
  • 2
  • 10
  • 21
0
votes
1 answer

Why AFTER UPDATE Trigger is fired only ONCE even tough there are 3 UPDATES on a ROW?

I have an AFTER UPDATE trigger on a db table, Foo. It INSERTS an audit record into an Audit table whenever an UPDATE occurs on Foo. There are 3 separate services running and sometimes they UPDATE the same Foo record -but different fields. PROBLEM is…
pencilCake
  • 51,323
  • 85
  • 226
  • 363
0
votes
1 answer

Pull records for Audit Trail

I am implementing audit trail in my application. I followed this and this created History table the tables that only needs to be audited. I have a following tables to store the Patient information. TenantId represent each tenant data, since its a…
Billa
  • 5,226
  • 23
  • 61
  • 105
0
votes
1 answer

QuickBooks Online (QBO) API Retrieve Deleted Bills

Does the QuickBooks Online (QBO) API have the ability to query for objects that have been deleted? For example, I would like to query for bills that have been deleted.
0
votes
1 answer

grails audit-logging plugin onSave in UserRole

how audit-logging can work in domain class like userRole from springSecurity? class SecUserSecRole implements Serializable { static auditable = true User user Role role ... def onSave = { map -> println "onSave…
rsijaya
  • 159
  • 2
  • 14
1 2 3
25
26