惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
J
Java Code Geeks
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
博客园 - 【当耐特】
雷峰网
雷峰网
D
DataBreaches.Net
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
Apple Machine Learning Research
Apple Machine Learning Research
N
Netflix TechBlog - Medium
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Implementing Cellular Observability: AWS CloudWatch Cross...
Cláudio Fili · 2026-05-08 · via DEV Community

Introduction

Distributed cellular architectures often suffer from observability fragmentation, where critical telemetry is trapped within isolated cloud silos. When an incident occurs in a cross-cloud cell, engineers frequently lose precious time toggling between disparate consoles, manually correlating timestamps, and attempting to reconstruct a unified trace of a failing transaction. This lack of a single pane of glass agitates the troubleshooting process, leading to increased Mean Time to Repair (MTTR) and hidden systemic failures that go undetected across cloud boundaries. The definitive architectural solution involves centralizing telemetry using AWS CloudWatch Cross-Account Observability and Azure Monitor with cross-resource queries. This strategy allows you to aggregate logs, metrics, and traces from multiple cells into a central monitoring account or workspace, providing a holistic view of the system's health while maintaining the strict operational isolation of the underlying compute cells.

Prerequisites

  • Terraform v1.6.0+ with configurations for AWS and Azure monitoring providers.
  • AWS CLI and Azure CLI for verifying monitoring link status and workspace permissions.
  • Python 3.11+ using boto3 and azure-mgmt-monitor for automated alert threshold validation.
  • Advanced understanding of the OTLP (OpenTelemetry Protocol) and distributed tracing standards.
  • Familiarity with KQL (Kusto Query Language) for complex telemetry analysis in Azure.

Step-by-Step

Establishing Telemetry Sinks and Cross-Account Links

The first requirement for cellular observability is the creation of a centralized telemetry sink that can receive data from isolated source accounts or subscriptions. In AWS, you configure a Monitoring Account to act as a sink for CloudWatch metrics and logs from multiple source accounts. In Azure, you leverage Log Analytics Workspaces as the central repository for logs and metrics across different resource groups or subscriptions. This centralized sink must be strictly decoupled from the cellular compute environments to ensure that a failure in a specific cell does not compromise the observability data required to diagnose that failure.

# AWS CloudWatch Monitoring Sink in the Central Account
resource "aws_oam_sink" "central_observability_sink" {
  name = "CentralCellularSink"
  policy = jsonencode({
    Version = "2012-10-17"
    Statement = [{
      Action   = "oam:CreateLink"
      Effect   = "Allow"
      Resource = "*"
      Principal = "*"
      Condition = {
        "ForAnyValue:StringEquals" = {
          "oam:ResourceTypes" = ["AWS::CloudWatch::Metric", "AWS::Logs::LogGroup"]
        }
      }
    }]
  })
}

# Azure Log Analytics Workspace for Centralized Monitoring
resource "azurerm_log_analytics_workspace" "central_monitor" {
  name                = "central-cellular-monitor"
  location            = azurerm_resource_group.monitor_rg.location
  resource_group_name = azurerm_resource_group.monitor_rg.name
  sku                 = "PerGB2018"
  retention_in_days   = 30
}

Enter fullscreen mode Exit fullscreen mode

Once the sinks are established, how do you securely link the source cells to the central monitoring account without granting broad, over-privileged access to the underlying data?

Configuring Source Links and Resource Propagation

With the central sink ready, you must configure each application cell to stream its telemetry data to the monitoring account. In AWS, this is achieved via a CloudWatch Observability Access Manager (OAM) Link, which defines exactly which resource types are shared. In Azure, you use Diagnostic Settings to point resource telemetry toward the central Log Analytics Workspace. This selective propagation ensures that the central monitoring team has visibility into the health of the cell (the "what") without necessarily having access to the raw data stored within the cell (the "how"), preserving data sovereignty and security boundaries.

# AWS CloudWatch Link in a Source Cell Account
resource "aws_oam_link" "cell_alpha_to_central" {
  label_template  = "$AccountName"
  resource_types  = ["AWS::CloudWatch::Metric", "AWS::Logs::LogGroup"]
  sink_identifier = aws_oam_sink.central_observability_sink.arn
}

# Azure Diagnostic Setting for Cell Beta Gateway
resource "azurerm_monitor_diagnostic_setting" "gateway_telemetry" {
  name                       = "propagate-to-central"
  target_resource_id         = azurerm_api_management.payment_cell_beta.id
  log_analytics_workspace_id = azurerm_log_analytics_workspace.central_monitor.id

  enabled_log {
    category = "GatewayLogs"
  }

  metric {
    category = "AllMetrics"
    enabled  = true
  }
}

Enter fullscreen mode Exit fullscreen mode

The telemetry data is now flowing into a centralized location. How do you construct a unified query that correlates an error log in an Azure cell with a latency spike in an AWS cell when they are triggered by the same global transaction ID?

Unified Cross-Cloud Querying and Correlation

Correlation across clouds relies on the standardized propagation of Trace Context (TraceID) and the ability to perform cross-resource queries. In Azure, you use KQL to query across multiple workspaces or subscriptions simultaneously. In AWS, the CloudWatch console automatically aggregates metrics and logs from all linked accounts. To achieve a truly unified view, you must implement a Python script that pulls metrics from both providers using their respective SDKs and normalizes them into a consistent format for analysis. This script acts as the integration layer, allowing you to see a complete timeline of an event as it traverses the cellular fabric.

import boto3
from azure.mgmt.monitor import MonitorManagementClient
from azure.identity import DefaultAzureCredential

def get_normalized_metrics(start_time, end_time, metric_name):
    """
    Fetches and normalizes metrics from both AWS and Azure for a unified view.
    """
    # Fetch AWS Metrics
    cw = boto3.client('cloudwatch', region_name='us-east-1')
    aws_metrics = cw.get_metric_statistics(
        Namespace='AWS/ApiGateway',
        MetricName=metric_name,
        StartTime=start_time,
        EndTime=end_time,
        Period=60,
        Statistics=['Average']
    )

    # Fetch Azure Metrics
    azure_creds = DefaultAzureCredential()
    monitor_client = MonitorManagementClient(azure_creds, "your-subscription-id")
    azure_metrics = monitor_client.metrics.list(
        "resource-id-for-apim",
        timespan=f"{start_time.isoformat()}/{end_time.isoformat()}",
        interval='PT1M',
        metricnames=metric_name,
        aggregation='Average'
    )

    return {
        "aws": aws_metrics['Datapoints'],
        "azure": azure_metrics.value[0].timeseries[0].data
    }

Enter fullscreen mode Exit fullscreen mode

Telemetry is now centralized and queryable. How do you ensure that an alert triggered in the central monitoring account is routed back to the specific team responsible for the failing cell without creating a "noisy neighbor" effect that alerts everyone for a localized issue?

Solution Diagram

Common Troubleshooting

  1. Metric Namespace Collisions: When aggregating metrics from multiple cells, identical namespace names (e.g., Production/Payments) make it impossible to distinguish the source.
    • Solution: Use the label_template in AWS OAM and custom dimensions in Azure Monitor to include the Account ID or Subscription ID in every metric name or dimension.
  2. Latency in Cross-Region Log Aggregation: Logs from a remote region may take several minutes to appear in a central sink, causing alerts to trigger later than expected.
    • Solution: Use "In-Region" alerts for critical health signals (e.g., HTTP 5xx errors) and use the "Centralized Sink" primarily for long-term analysis, reporting, and non-critical correlation.
  3. Missing Permissions for oam:CreateLink: The IAM role or user attempting to create the link in the source account lacks the necessary permissions to interact with the central sink.
    • Solution: Ensure the Sink Policy in the central account explicitly allows the Source Account ID to perform oam:CreateLink.

Conclusion

Cellular observability transforms isolated streams of data into a cohesive narrative of system behavior. By implementing AWS CloudWatch Cross-Account Observability and Azure Monitor centralized logging, you gain the visibility necessary to manage complex, multi-cloud architectures. This centralized approach preserves the autonomy of individual cells while providing the high-level oversight required for global incident response. As a next step, you should explore the implementation of Synthetic Canaries that run from multiple geographic locations, simulating user traffic to validate that both the application logic and the observability pipelines are functioning correctly across all cloud boundaries.

References

Amazon Web Services. (2023). CloudWatch cross-account observability. AWS User Guide. https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html

Microsoft. (2024). Standardize monitoring with Azure Monitor. Microsoft Learn. https://learn.microsoft.com/en-us/azure/azure-monitor/best-practices-analysis

OpenTelemetry Authors. (2023). OpenTelemetry Specification. https://opentelemetry.io/docs/specs/otel/