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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
GbyAI
GbyAI
M
MIT News - Artificial intelligence
美团技术团队
罗磊的独立博客
雷峰网
雷峰网
量子位
博客园 - 【当耐特】
Last Week in AI
Last Week in AI
D
Docker
小众软件
小众软件
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
WordPress大学
WordPress大学
V
V2EX
博客园_首页
腾讯CDC
The Cloudflare Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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
Accepted by Top Conferences! Multiple Alibaba Cloud Achie...
Observabilit · 2026-04-24 · via DEV Community

This article introduces three top-conference-accepted research achievements by Alibaba Cloud that solve core AIOps challenges in data augmentation, se...

As the core direction of enterprise digital transformation and artificial intelligence for IT operations (AIOps), operation intelligence is becoming a key enabler for improving business stability and reducing O&M costs in the AI-native era. Its technical development and engineering implementation always revolve around core aspects such as data processing, semantic understanding, and exception detection.

The Alibaba Cloud Observability team continues to work deeply in this field. Recently, a series of research achievements in the operation intelligence realm jointly published with universities such as Fudan University, Tsinghua University, and Tongji University have been consecutively accepted by top international academic conferences International Conference on Learning Representations (ICLR) 2026, Transactions on Software Engineering (TSE) 2026, and International Symposium on Software Testing and Analysis (ISSTA) 2025. These achievements systematically overcome core technical challenges in realms such as metric data augmentation, large-scale semantic parsing, and cross-system exception detection. They build a complete operation intelligence technical system from data infrastructure to semantic understanding, and then to industrial-level deployment. This further promotes the engineering implementation of large language model (LLM) in scenarios such as automatic inspection by AI agents, assisted root cause analysis, and automatic fault recovery. This lays a solid technical foundation for large-scale applications.

Three Major Challenges in the Engineering Implementation of AIOps
Challenge 1: Semantics Gap
Traditional tools process O&M data essentially by performing "format matching". Log resolvers categorize similar strings into one class. Timing analysis applies common methods in the image realm. Exception detection only looks at a single metric. These methods do not understand the essential difference between "timeout after 30s" and "timeout after 0.01s" in the O&M context. They do not understand the statistical semantics such as the trend, epoch, or stationarity of metrics. They also do not know the deep association among logs, metrics, or traces. The lack of semantics directly leads to persistently high missed detections and false positives.

Challenge 2: Generalization Bottleneck
Real O&M systems are never static. Microservices frequently release new versions, and log templates continuously evolve. After new operational systems are published, all history annotations become invalid. The data distribution drifts over time, and the model that was well-trained yesterday may fail today. More critically, the annotation cost of industry-level systems is extremely high. For each new system annotated, it often requires months of human effort. Existing methods perform excellently in a stable lab environment. However, they struggle to adapt to a dynamically evolving production environment.

Challenge 3: Industrial Availability
The academic community pursues accuracy. The industrial community requires both accuracy and efficiency. Log streaming of 100,000 logs per second, abnormal response requirements within 100 ms, and limited memory and computing power budgets are hard constraints. These hard constraints keep many "good methods in papers" confined to the lab. They cannot be truly implemented.

Systematic Breakthroughs of Alibaba Cloud Observability
① AutoDA-Timeseries: Break through the limitations of timing modeling, enabling AI to predict faults with less data
Without a good augmentation policy, the true potential of metrics cannot be tapped. For a long time, metric data augmentation has been limited by paradigm migration in the image domain. Timing features are ignored. Augmentation policies cannot be adaptive. Existing Automated Data Augmentation (AutoDA) frames blindly apply image transformations. This destroys autocorrelation and time dependencies. This critically restricts the performance of downstream tasks such as categorization, prediction, and exception detection.

The paper "AutoDA-Timeseries: Automated Data Augmentation for Time Series" (Tsinghua University & Alibaba Cloud) accepted by ICLR 2026 proposes the first general automated data augmentation frame for metrics. It fetches 24-dimensional timing statistical features and integrates them into a stacking augmentation layer. Through Gumbel-Softmax differentiable sampling, it adaptively optimizes the augmentation probability and intensity in a single-stage end-to-end manner. It covers five major jobs such as categorization, long- and short-term prediction, regression, and exception detection. The categorization accuracy reaches 0.730 (+6.7%) on Temporal Convolutional Network (TCN) and 0.721 (+5.2%) on ROCKET. It comprehensively surpasses 7 state-of-the-art (SOTA) baselines. This provides the first generalized and automated solutions for metric data augmentation.

Paper address: https://openreview.net/forum?id=vTLmHAkoIW

② A SemanticLog: Balancing high accuracy and high throughput, the peak throughput of semantic log parsing reaches 1.28 million logs per second
Without good semantic understanding, the true meaning behind log parameters cannot be read. Log parsing technology has remained at the syntax layer for a long time. That is, it uniformly replaces dynamic parameters with the wildcard character (*). This loses semantic information carried by parameters, such as object identifier (ID), status code, and UNIX timestamp. This critically restricts the accuracy of AIOps downstream tasks such as exception detection and root cause analysis. Existing LLM resolvers mostly depend on the online APIs of ChatGPT. They face three major challenges: privacy leakage, unstable latency, and uncontrollable versions. They are difficult to implement in a production environment.

The paper "SemanticLog: Towards Effective and Efficient Large-Scale Semantic Log Parsing" (Fudan University & Alibaba Cloud & Tongji University), accepted by TSE 2026, proposes the first semantic log resolver based on an open-source LLM. The semantic log resolver consists of three core modules that work together. LogLLM removes causal masks and reconstructs log parsing from text generation to a token categorization job to fully utilize bidirectional context. The SemPerception module uses multi-head cross-attention to aggregate subword features and achieves 16 classes of fine-granularity semantic categorization (which is extended by 60% compared to the VALB 10-class system, and 96% of parameters in enterprise logs can be accurately categorized). The EffiParsing prefix tree caches parsed templates to significantly reduce repetitive inference overhead.

A comprehensive evaluation based on LLaMA2-7B on the LogHub-2.0 benchmark shows that SemanticLog achieves the best results in five traditional and semantic parsing Metrics (GA 93.3%, PA 93.6%, FTA 84.4%, SPA 83.2%, SPA+ 55.9%). SemanticLog comprehensively surpasses 11 SOTA resolvers including the ChatGPT solution. The semantic parsing accuracy SPA is improved by 18.7% compared to the similar method VALB. The inference speed is better than all LLM resolvers. In the downstream exception detection experiment, fine-granularity semantic tagging increases the detection F1 score by up to 4%. This provides an efficient and reliable open-source solution for the engineering implementation of semantic log parsing in privacy-sensitive scenarios.

Paper address: https://ieeexplore.ieee.org/document/11216353/

③ LogBase: The first semantic log parsing benchmark, enabling AI to truly "understand" every log
Without a good ruler, you cannot measure true progress. The semantic log parsing realm has long faced systematic challenges such as scarce annotations, limited data size, and fragmented evaluation standards. The mainstream benchmark LogHub-2.0 only covers 14 systems and 3,488 templates, which critically restricts the accuracy of AIOps downstream tasks.

The paper "LogBase: A Large-Scale Benchmark for Semantic Log Parsing" (Fudan University & Alibaba Cloud & Tongji University), accepted by ISSTA 2025, builds the first large-scale semantic log parsing benchmark. The benchmark covers 130 open-source projects and provides 85,300 high-quality semantic tagging templates. Compared to LogHub-2.0, the data source size is increased by about 9 times, and the quantity of templates is expanded by 24.5 times. The benchmark is equipped with an 8+16 hierarchical semantic categorization system and an automated building frame GenLog. The benchmark achieves the evaluation paradigm upgrade from syntax parsing to semantic understanding for the first time. A comprehensive evaluation of 15 mainstream resolvers exposes the true shortcomings of existing methods in complex scenarios. This provides a unified standard and reliable foundation for the engineering implementation of semantic log parsing.


Paper address: https://dl.acm.org/doi/10.1145/3728969

Currently, the Alibaba Cloud observability team has integrated the aforementioned innovative technologies into product systems such as Cloud Monitor (CMS), Simple Log Service (SLS), and Application Real-Time Monitoring Service (ARMS). This achieves accurate intelligent alerting, in-depth log understanding, and low-threshold intelligent O&M. This helps enterprises break O&M efficiency bottlenecks, reduce costs, and improve business stability.

The iteration of LLM and AI agent technologies is accelerating. The value of observability data as a key link connecting AI and production systems continues to become prominent. The Alibaba Cloud Observability team will continue to drive technological breakthroughs through academic innovation. The team will improve the operation intelligence technology system, participate in the construction of industry standards, and promote the large-scale implementation of AIOps. This provides more solid artificial intelligence for IT operations support for the digital transformation of enterprises.