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
1
vote
0 answers

Camel (audit)log to somewhere e.g. into elastic search

There are many ways to log info with camel .log -dsl .to("log: ") .wireTap("direct:myLogRoute") .process(customLogProcessor) All this can be mixed of course. On the other hand i have some requirements about logging: log into an elastic search…
dermoritz
  • 12,519
  • 25
  • 97
  • 185
1
vote
1 answer

Audit Trail Design in Hibernate using Interceptors

I am new to Hibernate and wants to maintain the Audit Information across most of the tables (but not for all). Here is the work done. Employee.java @Entity @Table(name = "EMPLOYEE") public class Employee { @Id @GeneratedValue @Column(name =…
Ashish
  • 341
  • 2
  • 7
  • 17
1
vote
1 answer

How to audit Read Operations

MSDN says: Audit of read operations is an Unsupported Feature. Does it means that I can't audit read operations at all, or that I just can't do it with standart CRM tools and need to create a custom solution (plugin i.e.) for this case?
Raman Sinclair
  • 1,194
  • 17
  • 31
1
vote
0 answers

Audit Service using MongoDB

I have a requirement to create an Audit service. All the changes in The transactional system will be captured at the service layer and will be sent to a JMS queue as a JSON object. This audit service will take this JSON object and is tasked to store…
1
vote
0 answers

Log response body apache with the client IP

I need to log the server response body along with the client which requested it. Tried mod_dumpio which logs the response body but it doesn't reveal the client IP so I am not able to map the request and response. The other option was audit log…
Varun Hegde
  • 349
  • 2
  • 12
1
vote
1 answer

EntityFramework.Extended Audit - foreign key property IsRelationship always false

I am using the EntityFramework.Extended library to implement audit logging in my system. However, when I update the foreign key 'TitleId' on my Person object, it does not register it as a foreign key and does not replace the Id with my chosen…
1
vote
1 answer

How to create audit log / audit trail in asp.net mvc

When we are used code first or entity framework then there is easiest way to audit trail the actions like add , update and delete.
Swapnil Malap
  • 610
  • 1
  • 7
  • 14
1
vote
0 answers

Wildfly 8 separate daily console.log

I would like to ask how could I configure wildfly (8) to have a separate daily console.log (/var/log/wildfly/console.log). What I want is for the older console log to be renamed with date (ex. console_03-28-2016.log), the console log for the current…
Borgy Manotoy
  • 1,960
  • 5
  • 27
  • 42
1
vote
3 answers

EF Auditing Creations

Ok there's a lot going on here and I don't want to bore you guys with a very long winded code sample so here's an extract ... When SaveChangesAsync() is called on my EF context I have it calling this method to audit each entry ... async Task…
War
  • 8,539
  • 4
  • 46
  • 98
1
vote
1 answer

ADF Audit logging

We are developing the ADF application, where in we came accross the requirement that we have to log all the operations into the database which user has performed like all the DML operations (Insert, update , delete), this can be achieved by…
user1784757
  • 41
  • 1
  • 4
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

Audit Login/Logout Events using ServiceStack

I am new to ServiceStack and would like to know how to capture login (successful and failed attempts) information in a table during authentication and wanted to ask whether any of you have done this sort of work before. I also read about a feature…
John Smith
  • 77
  • 7
1
vote
2 answers

Does exist some better manner to logger update history?

In our back-end systems, there are many situations to update object, e.g. update goods, update goods prices, update user, update status, update order(cancel, update price) and so on. Now some object we have a specially log table, e.g.…
zhuguowei
  • 8,401
  • 16
  • 70
  • 106
1
vote
2 answers

Is there any way to track every user action in Odoo v8

I installed auditlog, and smile_audit both looks similar but they just track the logs based on one module. But I'm looking for all the modules in Odoo. Basically by a user. I tried defining rules by Object: 'ir.model' but that does'nt track…
Knight
  • 363
  • 2
  • 7
  • 24
1
vote
1 answer

How do I build the grails audit-logging-plugin? I get ModelBuildingException

I have downloaded the grails audit-logging-plugin and expanded the zip. Then I installed Gradle. When I try to run any command I get the following error H:\git\grails-audit-logging-plugin> c:\gradle-2.6\bin\gradle test FAILURE: Build failed with…
Shawn H
  • 13
  • 4