Table of Contents

About

A log is a text file with:

  • a timed list of message (activities)
  • that an application has performed

Example

Usage

Structure

The basic structure of a log entry is:

  • a timestamp
  • a text message
  • optional extra attributes

Server Application

Because:

  • they are point in time event registration, they fall in the category of time serie
  • they stores text message, the log platorms are specialized search engine.

Management

Creator

The creation of log is done via a library.

Example of Java Logger Library

Format

See What are the known formats for Log files?

Processing

When the log file are becoming too big, you need to:

(Standard|Specification)

Severity / Level

Generally, a level value is present in a log line that specifies the order of severity. See Logging - Level

Documentation / Reference