Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference in Auditing and Logging?

I have been coming across these two words more often but i didn't see much difference in these? I mean want to know are they used interchangeably or there are some differences in those two? Thanks.

like image 664
GuruKulki Avatar asked Mar 22 '10 13:03

GuruKulki


People also ask

What is the difference between audit trail and log?

An audit log, also called an audit trail, is essentially a record of events and changes. IT devices across your network create logs based on events. Audit logs are records of these event logs, typically regarding a sequence of activities or a specific activity. Audit logs don't always operate in the same way.

Why is auditing and logging important?

Having detailed audit logs helps companies monitor data and keep track of potential security breaches or internal misuses of information. They help to ensure users follow all documented protocols and also assist in preventing and tracking down fraud.

What are the 3 types of audits?

There are three main types of audits: external audits, internal audits, and Internal Revenue Service (IRS) audits. External audits are commonly performed by Certified Public Accounting (CPA) firms and result in an auditor's opinion which is included in the audit report.

What is the purpose of audit trail and logging?

Individual Accountability Audit trails are a technical mechanism that help managers maintain individual accountability. By advising users that they are personally accountable for their actions, which are tracked by an audit trail that logs user activities, managers can help promote proper user behavior.


1 Answers

Logging typically means the recording of implementation level events that happen as the program is running (methods get called, objects are created, etc.). As such it focuses on things that interest programmers

Auditing is about recording domain-level events: a transaction is created, a user is performing an action, etc. In certain types of application (Banking) there is a legal obligation to record such events.

like image 75
Itay Maman Avatar answered Sep 21 '22 11:09

Itay Maman