Subscribe to the Non-Human & AI Identity Journal

How should security teams separate observability and security telemetry in practice?

Use different policy objectives for each stream. Observability data can be sampled, compressed, and retained for shorter periods because it exists to explain service health. Security telemetry should preserve the metadata needed for later correlation, forensic reconstruction, and identity investigation. If one pipeline serves both purposes, route by evidence value first and cost second, not the other way around.

Why This Matters for Security Teams

Observability and security telemetry often arrive from the same systems, but they answer different questions. Observability is meant to explain service health, performance, and user experience. Security telemetry is meant to preserve evidence, support detection, and enable investigation. Conflating them creates a false economy: teams save storage in the short term and lose reconstructability when incidents need identity, host, and network correlation. NIST SP 800-53 Rev. 5 treats audit and logging as control outcomes, not generic data exhaust, which is the right starting point for this decision. NIST SP 800-53 Rev 5 Security and Privacy Controls

The practical risk is not just missing one alert. It is losing the sequence of actions that shows who accessed what, from where, and with which credential or token. That becomes especially important when identity is distributed across humans, service accounts, API keys, and AI agents with execution authority. If those trails are sampled away or overwritten too quickly, later analysis becomes guesswork. In practice, many security teams encounter the real cost of merged pipelines only after an incident has already destroyed the evidence they needed for reconstruction, rather than through intentional design.

How It Works in Practice

A workable split starts with policy, not tooling. Teams should define observability as operational data for engineering and SRE workflows, then define security telemetry as evidence that must support detection engineering, incident response, and forensic retention. The same source can feed both streams, but the downstream handling should differ. For example, traces, metrics, and application logs can be shaped for observability, while security telemetry keeps higher-fidelity metadata such as authentication context, source IP, session identifiers, token issuance events, and privilege changes.

Security teams should decide early which events are evidence-rich and which are expendable. A login failure, token exchange, permission grant, or agent action often matters more than a routine service latency sample. That distinction should drive routing, retention, and normalization. CISA guidance on logging and detection emphasizes collecting the data needed to support analysis and response, not merely what is cheapest to store. CISA incident response guidance is useful here because it forces teams to think about how logs will be consumed during an incident, not only how they are generated.

  • Keep observability pipelines optimized for performance, sampling, and engineering troubleshooting.
  • Keep security telemetry pipelines optimized for integrity, retention, and correlation across identities and assets.
  • Normalize timestamps, identity fields, and asset identifiers so SIEM and detection rules can join records reliably.
  • Apply access controls and tamper resistance to security telemetry before it reaches long-term storage.
  • Document which fields are required for forensics, and treat them as non-negotiable evidence fields.

In environments with cloud-native workloads, container churn, and short-lived credentials, this separation becomes even more important because context disappears quickly. Best practice is to preserve identity and session metadata upstream, then let observability platforms handle the high-volume, low-retention data. Where agentic AI is in use, teams should also preserve tool-use, delegation, and approval records because those often become the decisive evidence in later investigations. These controls tend to break down when pipelines are unified in serverless or ephemeral container environments because the identity context expires before logs are correlated.

Common Variations and Edge Cases

Tighter evidence retention often increases storage, parsing, and governance overhead, requiring organisations to balance investigative value against operational cost. That tradeoff is real, especially where compliance, privacy, and engineering teams all expect different retention periods. There is no universal standard for this yet, so current guidance suggests building tiered retention rather than forcing one policy across all data types.

Some environments legitimately blur the line. A high-signal application log may serve both debugging and security monitoring, and a single event stream may need to feed SIEM, SOAR, and observability tooling. In those cases, route by evidence value first, then derive operational views from the security-grade source of truth. MITRE ATT&CK remains useful for deciding which events matter most for detection and response, especially when mapping authentication abuse, privilege escalation, or lateral movement patterns. MITRE ATT&CK

Teams should be careful with privacy-sensitive telemetry as well. If observability data contains personal data, screenshots, content payloads, or session replay, retention and access controls need explicit governance. The same is true for AI systems that may emit prompts, retrieved content, or model outputs containing sensitive context. In those cases, separation is not just about cost and detection quality. It is also about limiting exposure while preserving the minimum evidence needed for accountability. For organisations formalising telemetry controls, the OWASP logging guidance is a useful implementation reference. OWASP Top 10

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Agentic AI Top 10 and MITRE ATLAS address the attack and risk surface, while NIST CSF 2.0 and NIST AI RMF set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
NIST CSF 2.0 DE.CM-1 Continuous monitoring requires distinct evidence streams for operations and security.
NIST AI RMF GOVERN AI-enabled telemetry handling needs clear accountability and policy decisions.
OWASP Agentic AI Top 10 Agent actions and tool use should be logged as evidence for investigation.
MITRE ATLAS Adversarial manipulation of AI outputs and inputs affects what telemetry must retain.

Separate monitoring sources so security telemetry supports detection, correlation, and response.