Questions tagged [auditing]
330 questions
1
vote
0 answers
Why are rows being written to DBA_AUDIT_TRAIL?
I'm running Oracle 18c, but using standard auditing (not Unified Auditing). The other day, I ran a bunch of statements (that I can't recall, of course) to enable all sorts of auditing. After viewing the contents of DBA_AUDIT_TRAIL, I realized we…

Tom
- 81
- 2
- 8
1
vote
2 answers
How to update Auto generated time stamp in Spring boot
I am making use of Auditing with Spring Data JPA to automatically update the created by time stamp. I have a requirement, where i have to migrate some data for which the created by date should be updated with the value am setting through the…

Sachin Bose
- 127
- 8
1
vote
0 answers
How to get list of mounted filesystems on NFS server
For auditing purposes I need to track all remotely mounted NFSv4 filesystems requests on an NFS server (CentOS7) to get both the identity of the mounting system AND the filesystem that they mounted. Using the 'netstat -an' command gets me the…

cstafford
- 11
- 1
1
vote
1 answer
Prevent Hibernate from issuing needless updates of entities that have dirty OneToMany Collection
We are using Hibernate 5.3.13 with Spring Data JPA 2.1.12 and when having an already persisted, managed minimal Entity like the following:
@Entity
@Table(name = "EventsHolder")
@Access(AccessType.FIELD)
class EventsHolder {
@LastModifiedDate
…

hotzen
- 2,800
- 1
- 28
- 42
1
vote
4 answers
LINQ auditing and current user with web application
Background:
I have a web application for which I need to do database auditing for insert/deletes/updates (and maybe reads). I use LINQ as my ORM. Using some ideas I found on the web I've come up with a way of using attributes to decorate my…

tvanfosson
- 524,688
- 99
- 697
- 795
1
vote
1 answer
Why use a pre-written audit package in Django
I am considering how to implement auditing my database with Django. There are lots of auditing packages and I am decided on using something that logs changes to models in the database, rather than externally, but can anybody give me reasons why I…

Davtho1983
- 3,827
- 8
- 54
- 105
1
vote
1 answer
Indexing In ElasticSearch For Auditing
There is a microservice-based architecture wherein each service has a different type of entity. For example:
Service-1:
{
"entity_type": "SKU",
"sku": "123",
"ext_sku": "201",
"store": "1",
"product": "abc",
"timestamp":…

User_Targaryen
- 4,125
- 4
- 30
- 51
1
vote
1 answer
Auditing with spring-data-jdbc?
I have seen the response in the previous question! , but it did not solve my problem.
I traced the code of spring-data-jdbc and found that as long as the BeforeSaveEvent event is customized and a custom ID is set in this event, after the custom…

Hyman Yang
- 33
- 6
1
vote
2 answers
SQL Server 2005: Audit random record deletion
This may seem like a dumb question, but I'm in a head-> wall situation right now.
I work on a massive ERP application in which the SQL Server 2005 database is updated by multiple disparate applications. I'm trying to figure out where the deletes in…

Cerebrus
- 25,615
- 8
- 56
- 70
1
vote
1 answer
TaskCanceledException on Start-ComplianceSearch
I'm at my wits end with this one. I'm trying to start a compliance search in the Microsoft Compliance Center and I'm running into this error.
Creating SearchA task was canceled.
+ CategoryInfo : WriteError: (:)…

Joey McAdams
- 11
- 2
1
vote
1 answer
In Spring how to audit endpoint communication?
My intent is to audit the data exchange through the endpoints of my application. I wanna retrieve the json exchanged throught the endpoints and store it in the database. For storing the json data I will use Javes (https://javers.org/) but I still…

Rodolfo
- 149
- 1
- 9
1
vote
1 answer
What should and shouldnt be audited in a Java EE Project
I am in a need for advice in the matters of auditing a project.
Currently the project I am developing has many actions a "user" can perform such as:
Changing his own password
Adding, removing permissions
Adding, removing roles
Upload files
Many…

camiloqp
- 1,140
- 5
- 18
- 34
1
vote
1 answer
Is it possible to add auditing of actions other than create, update and destroy with gem audited
I'm using the gem audited in my rails app, and I'm wondering if it's possible to add auditing of actions other than create, update and destroy..?
ALternatively, maybe someone can point me to another gem that supports this, since I need to track all…

henrik242
- 366
- 4
- 11
1
vote
0 answers
Enabling Mongo auditing in spring boot throws an error
I'm using Spring boot 2.0.3, when I try to enable Mongo auditing using annotation @EnableMongoAuditing on a configuration class it throws an error:
java.lang.IllegalArgumentException: Couldn't find PersistentEntity for type class XYZ!
at…

ronak_11
- 245
- 1
- 3
- 12
1
vote
5 answers
C# reflection and auditing types
I'm trying to figure out if it's possible via reflection (or otherwise) to "audit" some code to enforce validation requirements -- such as checking whether or not code creates any threads (System.Threading.Thread) or uses other BCLs. The assumption…

user644107
- 33
- 3