Skip to main content
cd ../lexicon
sys/docs/lexicon/siem.md
Lexicon
SIEM

SIEM

SIEM (Security Information and Event Management) aggregates, normalises and correlates log and event data across an estate to detect, investigate and support response to security incidents, with detection quality bounded by log coverage, correlation rule accuracy and retention policy.
Difficulty: Intermediate
6 min read
Updated 2026-09-05

In plain English

Plain definition

SIEM (Security Information and Event Management) aggregates, normalises and correlates log and event data across an estate to detect, investigate and support response to security incidents, with detection quality bounded by log coverage, correlation rule accuracy and retention policy.

Technical Definition

A SIEM platform performs four core functions: log and event collection (via agents, syslog, APIs or streaming pipelines), normalisation into a common schema, correlation of events across sources using rules, statistical baselines or analytics, and presentation through dashboards, alerts and search interfaces. Most SIEM implementations separate an ingestion and indexing layer from a detection and alerting layer, and retain raw and normalised event data for a defined period to support investigation and regulatory retention requirements. The effectiveness of any SIEM deployment is bounded by which log sources are actually onboarded, how accurately those sources are parsed, and how well correlation content matches the organisation’s real threat model.

Operational Relevance

SIEM is operationally relevant wherever a team must detect and investigate security events across multiple systems rather than relying on isolated per-system logging. Typical operational uses include centralising authentication logs, network flow data, endpoint telemetry and application logs; alerting on correlated patterns such as repeated failed logins followed by a successful one from an unusual location; and supporting incident response by giving analysts a single place to search historical event data. A SIEM deployment is only as useful as its onboarded data sources and tuned detection content; an under-populated or poorly tuned SIEM produces false confidence rather than security value.

Architecture Relationship

SIEM sits downstream of the systems that generate telemetry (identity providers, endpoints, network devices, cloud platforms, applications) and upstream of the people and processes that act on alerts (security operations analysts, incident response runbooks, ticketing systems). It commonly integrates with SOAR (Security Orchestration, Automation and Response) tooling for automated response actions, with identity platforms for enrichment context, and with vulnerability management systems to prioritise alerts by asset risk. Because SIEM depends on upstream log quality and downstream response capacity, it should be treated as one component of a detection-and-response architecture, not a standalone control.

Example

An operations team onboards authentication logs from an identity provider and endpoint process logs from workstations into a SIEM. A correlation rule flags any account with five or more failed logins within two minutes followed by a successful login from a different geographic region within the following hour. When the rule fires, the SIEM raises an alert with the associated raw events attached, allowing an analyst to review the timeline before deciding whether to escalate.

Common Misunderstanding

A frequent misunderstanding is that installing a SIEM platform is itself a security control. In practice, a SIEM is only as effective as the log sources feeding it, the accuracy of its parsing and normalisation, and the quality of its correlation content; an unmonitored or unmaintained SIEM instance provides log storage but not detection capability. Teams should verify data source coverage and alert tuning as an ongoing operational task, not a one-time setup step.

  • SOAR (Security Orchestration, Automation and Response)
  • Log aggregation
  • Correlation rule
  • Security operations centre (SOC)
  • Event normalisation

Further Reading

Review vendor-neutral SIEM architecture guidance and your platform’s specific data source onboarding documentation before scoping a deployment. Confirm current product version and licensing terms directly with the vendor, since SIEM feature sets and ingestion limits change between releases.

Validating SIEM Coverage in a Bounded Environment

Before relying on any SIEM deployment for detection, validate log source coverage and alert behaviour in an isolated or non-production environment. Confirm which sources are actually reporting, review a sample of parsed events against raw source logs to check normalisation accuracy, and trigger a known benign test event to confirm the expected alert fires and reaches the intended notification channel. Document the confirmed coverage boundary so operations staff know which systems are monitored and which are not, and revisit this validation whenever new log sources, correlation rules or retention settings change.