Questions tagged [auditing]

330 questions
0
votes
1 answer

Database operations tracking Application. Need to audit the changes made in the db

I have to create an application in .Net which will track the data changes in all the tables present in the DB without using Triggers. I have some ideas which can be implemented to achieve the same.Need some suggestions from you guys. As all the…
0
votes
1 answer

K8S auditing Webhook backend - how to handle authentication?

i created ubuntu machine that will receive the audit log from my cluster. i created config file in order to configure the webhook backend for k8s auditing. apiVersion: v1 kind: Config clusters: - cluster: server: http://34.68.115.34 name:…
inza
  • 97
  • 2
  • 10
0
votes
1 answer

K8S Auditing - how to get all the policy options?

I would like to define policy for audit log that will include information only regarding pod creation. I would like to make sure that all the audit logs wont appear. how can i find all the options that the policy can have? I would like to have only…
inza
  • 97
  • 2
  • 10
0
votes
1 answer

.NET convert type to subtype

We are using NHibernate on our project and we are hooking into the pre update/insert/delete events to do some auditing. We want to audit each entity to its own audit table that has the same schema as the source table (maybe with an audit operation…
Daniel Powell
  • 8,143
  • 11
  • 61
  • 108
0
votes
1 answer

User type and user Id is NULL in Laravel Auditing table

I use Laravel auditing for tracking model changes in my system. I see the admin type track user type and Id but for staff users, user_type and user_id is NULL and here is my code: config/audit.php
Khalil DaNish
  • 547
  • 5
  • 18
0
votes
1 answer

Annotation based Auditing for spring-data-elasticsearch?

I am trying to use the annotation based approach to audit my elasticsearch document using spring-data-elasticsearch. I followed the JPA guide while implementing my classes/setup. My code looks like this: @Configuration @EnableJpaAuditing public…
0
votes
1 answer

sys.aud$ got dropped how to rebuild it

I had enabled auditing with oracle 12.2C and mistakenly dropped the table sys.aud$ is there anyway to recreate the same with the same columns I tried to create it again but it is not the same as the previous so unable to write the audit logs into…
Developer
  • 29
  • 11
0
votes
2 answers

require code for audit trails using vba code

I have a sheet named mapping and it contains 3 columns namely Fundcode(b3),subsription rate(c3) and redemption rate(d3) so values are entered from row 4 for these headers..i wanted audit trails for values entered in these cells with the user name…
Neelavathy
  • 14
  • 1
  • 8
0
votes
0 answers

Laravel query updates multiple rows unexpectedly

In my web app I am trying to update one of many notes that are on one work order. If I write query like this (Case 1): // NOTE UPDATE WORKING FINE Model::where('RN_key', $RN_key)->where('anNo', $anNo)->update(['acNote' => $request['note']]); I get…
Dome
  • 11
  • 4
0
votes
1 answer

Call to undefined method stdClass::getModified()

Laravel v5.7.24 Laravel Auditing v8.0.4 PHP version 7.3.1 I've a specific problem related to package Laravel Auditing. Although I set the Model and everything like in documentation, the blade template is showing me an error Call to undefined method…
Jakub Adamec
  • 953
  • 16
  • 22
0
votes
1 answer

How to fill audit fields that are in Audit extendable entity mapped super class?

I'm using hibernate envers to audit my entities. I have OfficeEntity like this: @Entity @Audited @EntityListeners({AuditingEntityListener.class}) @Table(name = "office") @AuditTable("office_aud") public class OfficeEntity extends Auditable{ …
0
votes
0 answers

SQL Server Trace Files Filling Up Agent Drive

Background: SQL Compliance Manager is collecting files on an Agent Server to audit and once the trace files collect on the Agent the Compliance Manager agent service account moves these files to the Collection Server folder, processes them and…
AK37
  • 33
  • 6
0
votes
1 answer

'Statement' Attribute in SQl Server Auditing Log File

Can anyone plz tell me how can i read the value of parameteres in the sql server audit log file's statement attribute. for example : i fired a query select name from some_table where id='someID' In log file i get the entry in the statement…
Ankur
  • 1
  • 1
0
votes
1 answer

How to find newly added/modified nodes/relationship between two date-time

How does on find newly added nodes in Neo4j database between to two timestamps (date + time)? E.g., I need to find out newly created nodes/relationships between yesterday and today. I also need basically the same for modified nodes/relationship…
Yogi
  • 1,805
  • 13
  • 24
0
votes
1 answer

How to migrate Hibernate @Audited informarion from table field?

I need to change my database structure that way: move one field from @Audited entity to another @Audited entity with no loss of audit information. How can I migrate it? By liquibase migration I create new field in table T1 and T1_aud Update T1…
Daria Bulanova
  • 547
  • 1
  • 5
  • 16