Logging Glossary

Browse 34 logging terms defined in plain English, from the cultural dictionary of computing.

34 Logging Terms

Access Log
A log recording attempts to access a system, service, application, or resource, typically including metadata such as user, time, source, and result. Access...
AI Logging
The recording of AI-related events such as prompts, responses, model versions, latency, token use, tool calls, and safety decisions for debugging or...
Audit Log
An append-only, tamper-evident record of security-relevant events — such as logins, permission changes, and data access — that provides an immutable trail for...
Audit Trail
Audit Trail is a chronological record of administrative and system actions that supports accountability, investigation, and compliance review. Security teams...
Cloud Logging
The collection, storage, querying, and routing of logs through cloud-native logging services and pipelines. Cloud logging often combines infrastructure,...
Console Log
Output written directly to a terminal, browser console, or stdout/stderr stream for debugging or visibility. Console logs are useful during development, but in...
Container Log
The log output emitted by a running container, typically collected from stdout, stderr, or log files and aggregated by the platform. Container logs are central...
Custom Logger
A logging implementation or wrapper tailored to a team's formatting, routing, metadata, or transport requirements. Custom loggers often add context such as...
Debugging by Printf
A simple debugging style where a developer adds print statements or logs to inspect program state as it runs. It is basic but often effective when heavier...
Elastic Stack
The ecosystem around Elasticsearch, Logstash, Kibana, and related tools for search, log analysis, and observability.
Emoji Debugging
A playful style of tracing program flow by sprinkling logs with distinct emojis so events are easier to spot visually in noisy output. It is informal but...
Fluentd
An open-source data collector for unifying logs and routing them to storage, search, or analytics backends.
Log Aggregation
The practice of collecting, centralizing, and indexing log output from many distributed services and hosts into a single searchable system. Tools like the ELK...
Log Collector
A service or agent that gathers logs from endpoints, applications, network devices, or cloud platforms and forwards them to centralized storage or analysis...
Log Correlation
Log Correlation is the linking of related events across multiple log sources to reveal attacks or operational context. Security teams use it to enforce trust,...
Log Everything
A blunt operational instinct to emit as much diagnostic information as possible so incidents become easier to reconstruct. It reflects a real need for...
Log Format
The structure and syntax used to record log entries, including field order, timestamp style, identifiers, and message content. Consistent log formats are...
Logger
An object or module responsible for recording application events to an output destination — console, file, or remote service — with metadata such as timestamp,...
Logging Framework
A library that provides a complete logging infrastructure — including logger creation, severity levels, output formatting (text, JSON), handler/appender...
Log Level
A severity classification assigned to each log message — typically DEBUG, INFO, WARN, ERROR, and FATAL (in ascending severity) — allowing operators to filter...
Log Management
Log Management is the collection, retention, parsing, storage, and analysis of logs for operations and security use. Security teams use it to enforce trust,...
Log Monitoring
The continuous review of logs, either manually or through automated tooling, to detect suspicious activity, failures, or policy violations. Log monitoring is...
Log Parser
A tool or library that extracts structured data from raw log lines — parsing timestamps, severity levels, request IDs, and other fields from unstructured text...
Log Pipeline
The end-to-end path through which logs are generated, collected, transformed, filtered, enriched, stored, and searched. Security teams care about the log...
Log Rotation
The process of periodically closing the current log file, renaming or compressing it, and starting a new one — preventing any single log file from growing...
Log Source
A system, service, device, or application that produces logs consumed by security and operations teams. Knowing each log source and its coverage is essential...
Security Information and Event Management
A platform that collects, normalizes, correlates, and searches security logs for detection and investigation. It shows up in application security, identity,...
Seq
A centralized structured logging server that ingests, indexes, and lets you query application logs with a rich filter syntax, popular in the .NET ecosystem.
SIEM
Security Information and Event Management — a system that aggregates log data from across an organization's infrastructure, correlates events, and alerts...
Stderr
Standard error (file descriptor 2) — the output stream reserved for error messages and diagnostic information. It is unbuffered by default and remains...
Structured Logging
Logging in a machine-parseable format (JSON, logfmt) with consistent key-value fields instead of free-text strings. Enables filtering, aggregation, and...
Syslog
A standard message format and transport convention for system and network device logging. It shows up in application security, identity, infrastructure, or...
Verbose
Providing a lot of detail, often more than the normal mode. In engineering it can describe logs, command output, APIs, interfaces, or writing that favors...
Zap
A high-performance, structured logging library for Go developed by Uber, designed to minimize memory allocations and CPU overhead by using a strongly-typed,...

Related Topics