Tag

tracing

0 views collected around this technical thread.

Qunar Tech Salon
Qunar Tech Salon
Jun 5, 2025 · Artificial Intelligence

Unlocking OpenAI Agents SDK: Core Features, Code Samples, and Framework Comparisons

This article introduces the OpenAI Agents SDK, explains its key capabilities such as Agent Loop, Handoffs, Guardrails, and Tracing, provides practical Python code examples, compares it with other multi‑agent frameworks, and discusses best practices for building reliable AI applications.

AI agentsAgents SDKGuardrails
0 likes · 17 min read
Unlocking OpenAI Agents SDK: Core Features, Code Samples, and Framework Comparisons
Java Architecture Diary
Java Architecture Diary
May 26, 2025 · Artificial Intelligence

How to Build Enterprise‑Ready AI Monitoring with Spring AI and Micrometer

This article explains why observability is essential for Spring AI applications, outlines common cost‑control and performance challenges, and provides a step‑by‑step guide—including Maven setup, client configuration, service implementation, metric exposure, Zipkin tracing, and architecture insights—to create a fully observable, enterprise‑grade AI translation service.

JavaMicrometerObservability
0 likes · 12 min read
How to Build Enterprise‑Ready AI Monitoring with Spring AI and Micrometer
Efficient Ops
Efficient Ops
May 7, 2025 · Operations

Why Choose SigNoz for Open‑Source Observability? A Deep Dive

This article introduces SigNoz, a self‑hosted open‑source observability platform that unifies metrics, logs, and traces, outlines its core capabilities, shows how to install it with Docker, and compares its resource efficiency to commercial solutions like DataDog and Elastic.

LogsMetricsObservability
0 likes · 4 min read
Why Choose SigNoz for Open‑Source Observability? A Deep Dive
Raymond Ops
Raymond Ops
Apr 22, 2025 · Operations

What Is OpenTelemetry? A Complete Guide to Modern Observability

OpenTelemetry unifies tracing and metrics by merging OpenTracing and OpenCensus, offering vendor‑neutral APIs, SDKs, and a collector that standardize telemetry data collection, context propagation, and export to various back‑ends, with detailed components such as Tracer, Meter, and shared Context layers.

MetricsObservabilitycloud native
0 likes · 12 min read
What Is OpenTelemetry? A Complete Guide to Modern Observability
Cognitive Technology Team
Cognitive Technology Team
Apr 16, 2025 · Backend Development

Automatic Trace-Wrapped ThreadPool Instances in Spring Cloud

This article explains how Spring Cloud automatically wraps managed thread pool beans with trace-enabled proxies to preserve distributed tracing information, details the ExecutorBeanPostProcessor implementation, shows the relevant configuration and instrumentation code, and notes that manually created executors must be wrapped manually.

InstrumentationJavaSpring Cloud
0 likes · 7 min read
Automatic Trace-Wrapped ThreadPool Instances in Spring Cloud
Deepin Linux
Deepin Linux
Mar 31, 2025 · Fundamentals

Understanding and Using Ftrace for Linux Kernel Tracing

This article provides a comprehensive guide to Linux's ftrace tool, explaining its purpose, various tracers, how to set up and use it via debugfs, detailed command examples, implementation details, practical use cases for performance tuning and debugging, and a comparison with other tracing utilities.

Linux KernelPerformance analysisSystem Tracing
0 likes · 40 min read
Understanding and Using Ftrace for Linux Kernel Tracing
FunTester
FunTester
Feb 14, 2025 · Operations

Debugging, Tracing, and Stack Management Operations in the Rule Engine

This article explains the built‑in debugging and tracing methods of the rule engine, including the debug API, trace operations, stack‑management functions such as caller checks, stack formatting, and thread‑stack tracing, along with usage examples and special cases for controlling output.

Javadebuggingoperations
0 likes · 9 min read
Debugging, Tracing, and Stack Management Operations in the Rule Engine
Architect's Guide
Architect's Guide
Dec 22, 2024 · Backend Development

Cool Request Plugin for IDEA: Tracing, MyBatis Function Tracking, and Custom Timing Features

The article introduces the Cool Request IDEA plugin, explains its tracing capabilities for arbitrary packages, automatic MyBatis function monitoring, customizable timing colors, script-based environment manipulation, and provides a Java code example for handling responses, highlighting its usefulness for backend developers.

IDEAJavaMyBatis
0 likes · 4 min read
Cool Request Plugin for IDEA: Tracing, MyBatis Function Tracking, and Custom Timing Features
Sohu Tech Products
Sohu Tech Products
Sep 25, 2024 · Cloud Native

Observability Concepts and OpenTelemetry Architecture Overview

Observability turns a black‑box application into a system by gathering logs, metrics, and traces, using alerts to spot anomalies, then linking trace IDs to logs; OpenTelemetry standardizes this with instrumented client agents, a Collector (receivers, processors, exporters), and backend storage, while Java agents, span propagation, exemplars, eBPF, and bundles like SigNoz or OpenObserve let teams choose between a custom OTel stack or a solution.

MetricsObservabilityOpenTelemetry
0 likes · 11 min read
Observability Concepts and OpenTelemetry Architecture Overview
Java Tech Enthusiast
Java Tech Enthusiast
Jul 21, 2024 · Backend Development

Interface Performance Optimization Techniques for Backend Development

The article outlines practical backend interface performance optimizations—including proper indexing, SQL tuning, parallel remote calls, batch queries, asynchronous processing, scoped transactions, fine-grained locking, pagination batching, multi-level caching, sharding, and monitoring tools—to dramatically reduce latency and improve throughput.

Distributed LockIndexingSQL Optimization
0 likes · 25 min read
Interface Performance Optimization Techniques for Backend Development
Efficient Ops
Efficient Ops
Jun 4, 2024 · Operations

How Huya Unified Its Monitoring Platform with OpenTelemetry for Zero‑Cost Integration

This article details Huya's transition from fragmented, non‑standard monitoring solutions to a unified OpenTelemetry‑based platform, covering project background, pain points, design decisions, SDK architecture, data pipeline, storage, alerting, root‑cause analysis, and future plans, highlighting the benefits of standardization and zero‑cost service integration.

HuyaMetricsObservability
0 likes · 13 min read
How Huya Unified Its Monitoring Platform with OpenTelemetry for Zero‑Cost Integration
Efficient Ops
Efficient Ops
Jun 2, 2024 · Operations

Why Observability Is the Key to Reliable Distributed Systems

Observability, defined as measuring system state through logs, metrics, and tracing, enhances stability of distributed architectures by enabling rapid fault detection, deeper insight, and proactive issue resolution, distinguishing it from traditional monitoring and supporting DevOps, SRE, and business objectives.

DevOpsMetricsObservability
0 likes · 17 min read
Why Observability Is the Key to Reliable Distributed Systems
Efficient Ops
Efficient Ops
May 19, 2024 · Operations

Why Observability Is the Key to Simplifying Modern Microservices

This article explains how containerization and Kubernetes gave rise to micro‑services, why observability (metrics, logging, tracing, profiling) became essential for managing their complexity, and how OpenTelemetry’s unified data model enables seamless integration of these signals across modern cloud‑native stacks.

MetricsMicroservicesObservability
0 likes · 9 min read
Why Observability Is the Key to Simplifying Modern Microservices
OPPO Kernel Craftsman
OPPO Kernel Craftsman
Feb 23, 2024 · Mobile Development

Understanding Perfetto Data Flow Architecture and Reducing Trace Data Loss

Perfetto’s tracing system links multiple producers to a single consumer via shared‑memory buffers, where careful sizing of pages, chunks, and central buffers, along with tuned protobuf encoding and scheduling priorities, mitigates CPU overhead and prevents data loss, enabling reliable observability on Android devices.

AndroidData FlowObservability
0 likes · 26 min read
Understanding Perfetto Data Flow Architecture and Reducing Trace Data Loss
Architect
Architect
Feb 1, 2024 · Backend Development

Design and Optimization of Trace2.0: A High‑Performance Backend Tracing System

Trace2.0 is an OpenTelemetry‑based application monitoring system that processes petabyte‑scale trace data using multi‑channel client protocols, gRPC, load‑balancing optimizations, ZSTD compression, Kafka pipelines, ClickHouse storage, and a JDK 21 upgrade with virtual threads, achieving significant performance and cost improvements.

ClickHouseJDK21Kafka
0 likes · 15 min read
Design and Optimization of Trace2.0: A High‑Performance Backend Tracing System
DaTaobao Tech
DaTaobao Tech
Jan 29, 2024 · Cloud Native

Observability: Logging, Metrics, and Tracing in Distributed Systems

Observability in distributed systems combines event logging, aggregated metrics, and request tracing—each offering distinct trade‑offs in detail, storage, and overhead—and while the ELK stack dominates log and metric handling, tracing solutions such as EagleEye and SkyWalking differ by protocol and language, prompting many teams to adopt unified, cloud‑native platforms like Alibaba Cloud’s Log Service for lower cost, real‑time analysis and simplified management.

ELKMetricsObservability
0 likes · 32 min read
Observability: Logging, Metrics, and Tracing in Distributed Systems
Architect
Architect
Jan 6, 2024 · Backend Development

Root Cause Analysis and Resolution of Service Availability Fluctuations in a High‑QPS Go Backend

This article details the systematic investigation of intermittent availability drops in a high‑throughput Go service, covering hypothesis formulation, extensive profiling with pprof, gctrace, strace, fgprof, go trace, heap analysis, the discovery of a gcache LFU bug, and the final remediation steps.

GCPerformance Debuggingbackend
0 likes · 10 min read
Root Cause Analysis and Resolution of Service Availability Fluctuations in a High‑QPS Go Backend
Architect
Architect
Oct 25, 2023 · Operations

The Importance of Logging and Distributed Log Operations in Modern Architecture

This article explores why logs are essential in software development, outlines when to record them, discusses the value of logging in large-scale distributed systems, and examines the capabilities required of log‑operation tools such as APM, metrics, tracing, ELK, Prometheus, and custom batch querying solutions.

APMELKMetrics
0 likes · 21 min read
The Importance of Logging and Distributed Log Operations in Modern Architecture
37 Interactive Technology Team
37 Interactive Technology Team
Oct 23, 2023 · Backend Development

Investigation of Go HTTP Client Connection Pool Not Reusing Connections

The investigation revealed that the Go http.Client was not reusing connections because response bodies were closed before being fully read, causing the underlying connections to be marked dead; fully reading the bodies restored pooling, eliminated DNS‑resolution timeouts and dramatically lowered query‑per‑second spikes.

Connection PoolDNSGo
0 likes · 9 min read
Investigation of Go HTTP Client Connection Pool Not Reusing Connections