Menu
Datadog Blog·September 16, 2026

Observability Pipelines for Security Log Transformation and Routing to SIEMs

This article explores how Observability Pipelines, specifically Datadog's Observability Pipelines Packs, facilitate the transformation and routing of security logs to Security Information and Event Management (SIEM) systems like Microsoft Sentinel. It highlights the architectural benefits of using an intermediary pipeline for data governance, schema mapping, and volume control, which are critical for cost-effective and compliant security monitoring in large-scale distributed systems.

Read original on Datadog Blog

In modern distributed systems, managing security logs effectively is paramount for detection, investigation, and compliance. The article introduces the concept of Observability Pipelines as a strategic architectural layer to handle the ingestion, transformation, and routing of security data before it reaches a Security Information and Event Management (SIEM) system. This approach addresses common challenges such as disparate log formats, excessive data volume, and the need for normalized schemas, which are critical considerations for system architects designing secure and scalable infrastructures.

Architectural Role of Observability Pipelines

An observability pipeline acts as a middleware layer between data sources (e.g., cloud services, applications, infrastructure) and data sinks (e.g., SIEMs, data lakes). Its primary functions include:

  • Data Ingestion and Aggregation: Collecting logs from various sources.
  • Transformation and Normalization: Mapping raw log data to a standardized schema (like Microsoft Sentinel's Azure Monitor Logs schema), enriching data, and filtering out irrelevant information.
  • Routing and Load Balancing: Directing processed logs to the appropriate SIEM instances or other destinations.
  • Volume Control: Implementing sampling or filtering rules to reduce the amount of data ingested by downstream systems, thereby managing costs and improving SIEM performance.
  • Resilience: Buffering and retry mechanisms to ensure data delivery even during intermittent network issues or SIEM outages.

Schema Mapping and Data Governance

A key system design challenge in security logging is reconciling diverse log formats from various sources (e.g., AWS CloudTrail, Azure Activity Logs, Kubernetes audit logs) into a unified view required by SIEMs. Observability pipelines solve this by offering schema mapping capabilities. This involves defining rules to extract relevant fields from raw logs and transform them into the target SIEM's schema (e.g., Common Security Log, ASIM in Microsoft Sentinel). This normalization simplifies analysis for security operations teams and ensures data consistency across the entire security posture.

💡

Trade-offs in Log Processing

When designing log processing pipelines, consider the trade-offs between real-time processing latency, data completeness, and infrastructure costs. Aggressive sampling might save costs but could lead to missed security events. Conversely, ingesting all data can be prohibitively expensive. An observability pipeline allows for granular control over these trade-offs, enabling architects to define policies based on the criticality of the logs and the business's risk tolerance.

By centralizing log transformation and routing, organizations gain better data governance and control over their security data. This architectural pattern promotes adherence to compliance standards, reduces the operational overhead of managing multiple data ingestions directly to the SIEM, and ultimately enhances the overall security posture by ensuring high-quality, normalized data is available for threat detection and incident response.

observabilityloggingSIEMsecurity architecturedata pipelinesdata transformationlog managementmicrosoft sentinel

Comments

Loading comments...