小红花·文摘
  • 首页
  • AI Tokens🪙
  • 排行榜🏆
  • 直播
  • FAQ

本文介绍kube-apiserver排障方法,提出五轴坐标系:Storage/etcd、Watch/cache、Admission、Auth、APF。通过症状映射表快速定位问题轴,如401/403查Auth,503查Admission,504查APF,410查Watch。强调先定轴再下钻,避免误操作,并列出关键metrics和命令,区分apiserver与etcd问题,指导高效排障。

【kube-apiserver】排障五轴:Storage、Watch、Admission、Auth、APF

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-08-28T00:00:00Z

Kubernetes v1.37将metrics.k8s.io API升级为稳定版(v1),提供节点和Pod的CPU及内存使用数据,支持kubectl top和自动扩缩容。v1与v1beta1字段相同,仅版本升级,无需功能开关。实现需同时支持v1和v1beta1以兼容旧客户端,HPA暂仅支持v1beta1,未来将自动选择版本。

Kubernetes v1.37:Metrics API 升级为稳定版

Kubernetes Blog Kubernetes Blog · 2026-08-27T18:30:00Z

Envoy Gateway v1.9.0的可观测性需注意:access log仅证明单跳请求,metrics中的xds_nack_total仅表示Envoy拒绝更新,tracing默认客户端采样率改为0%,需显式设置clientSamplingFraction。控制面与数据面指标分离,不可混用。各信号对应不同排障维度,避免误判。

【Envoy Gateway】可观测:access log / metrics / tracing 能证明什么,默认 client sampling 0%

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-08-19T00:00:00Z

Tetragon v1.7.0升级后,merge指标合并为带status标签的单一计数器,gRPC默认地址改为Unix socket。运维需更新告警表达式和客户端连接,注意JSON文件导出与gRPC流所见集合不同,SIEM仅能获取文件sink内容。排查事件缺失时,应区分merge配对、ringbuf丢失和导出计数三层问题。

【Tetragon / eBPF】运维与导出工程:metrics 更名、JSON 轮转与 SIEM 接线边界

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-08-18T00:00:00Z

本文介绍Cilium v1.20.0可观测性排障方法,强调先选观测层(status、Hubble、metrics、bpftool),再读字段语义。区分控制面健康与数据面丢包,指出status全绿不等于策略放行,Hubble环满非丢包。建议用cilium-dbg解读BPF map,避免bpftool误读,并给出业务症状到观测层的映射及常见误判。

【Cilium / eBPF】可观测与运维口径:cilium status、metrics 语义与 bpftool 边界

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-08-16T00:00:00Z

Part 6 of the “Gamification Series.” Design for players, not metrics Through decades of watching games evolve from 8-bit sprites to photorealistic 3D, from arcade cabinets to cloud gaming, from...

Gamification 2.0. Beyond Points and Badges: Designing for Players, Not Metrics. Conclusion

UX Magazine UX Magazine · 2026-06-16T05:02:36Z

Part 5 of the “Gamification Series.” A framework for developers: from theory to practice Everything I’ve outlined so far is meaningless if you can’t apply it. So let me give you a practical...

Gamification 2.0. Beyond Points and Badges: Designing for Players, Not Metrics. Chapter 5: Implementation

UX Magazine UX Magazine · 2026-06-09T03:26:13Z

Part 4 of the “Gamification Series.” The education problem: why kids see through bad gamification Let me tell you about a conversation I had with my nephew. He’s twelve. He plays Minecraft for...

Gamification 2.0. Beyond Points and Badges: Designing for Players, Not Metrics. Chapter 4: Special Considerations

UX Magazine UX Magazine · 2026-06-02T04:15:42Z

Part 3 of the “Gamification Series.” Genre matters: the missing framework Here’s the most important thing most gamification designers miss: there is no single “game psychology.” When a product...

Gamification 2.0. Beyond Points and Badges: Designing for Players, Not Metrics. Chapter 3: The Framework

UX Magazine UX Magazine · 2026-05-26T05:03:03Z

Part 2 of the “Gamification Series.” Gamification 2.0: Learning from actual game design Let me tell you what actually hooks players, drawn from four decades of watching millions of people play...

Gamification 2.0. Beyond Points and Badges: Designing for Players, Not Metrics. Chapter 2: The Solution

UX Magazine UX Magazine · 2026-05-19T02:18:01Z

Part 1 of the “Gamification Series.” The gamification cargo cult Let me tell you about a phenomenon I see everywhere: apps with “gamification” that no actual gamer would tolerate for five minutes....

Gamification 2.0. Beyond Points and Badges: Designing for Players, Not Metrics. Chapter 1: The Problem

UX Magazine UX Magazine · 2026-05-12T03:41:36Z

In modern application development, observability is no longer optional. It is a core requirement for stable operations, faster troubleshooting, and better understanding of system behavior....

A New Era of MySQL Monitoring: OpenTelemetry Metrics with Prometheus

Planet MySQL Planet MySQL · 2026-05-07T01:58:47Z

iOS performance engineering often defaults to a mental model where performance is a property of a component. Performance is instead an emergent behavior of the interaction between application...

Article: Beyond the Benchmark: A Metrics-Driven Approach to Sustained iOS Performance on Real Devices

InfoQ InfoQ · 2026-05-06T09:00:00Z

AWS has introduced the public preview of OpenTelemetry metrics support in Amazon CloudWatch. This update allows developers to send metrics directly to CloudWatch using the OpenTelemetry protocol...

Amazon CloudWatch Introduces OpenTelemetry Metrics Support in Preview

InfoQ InfoQ · 2026-04-29T06:53:00Z

可观测性是现代系统管理的重要概念,包含指标、日志、追踪、性能剖析和事件五大支柱。这些支柱帮助工程师理解系统状态和故障原因,强调系统设计的属性。通过有效的数据采集与分析,团队能够快速定位问题,优化系统性能,提升用户体验。

【可观测性工程】可观测性全景:Metrics、Logs、Traces、Profiles、Events 五大支柱

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-04-22T00:00:00Z

本文介绍了五种主要的度量指标存储方案:Prometheus、Thanos、Mimir、VictoriaMetrics和M3DB。重点分析了Prometheus的架构、数据模型及扩展方案,讨论了各方案的优缺点及适用场景,尤其是在高并发和多租户环境下的表现,并提供了一些工程实践中的常见问题及解决方案,以帮助用户选择合适的监控工具。

【可观测性工程】Metrics:Prometheus、VictoriaMetrics、Thanos、Mimir、M3

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-04-22T00:00:00Z

Airbnb's observability engineering team has published details of a large-scale migration away from StatsD and a proprietary Veneur-based aggregation pipeline toward a modern, open-source metrics...

Airbnb Migrates High-Volume Metrics Pipeline to OpenTelemetry

InfoQ InfoQ · 2026-04-14T08:00:00Z
Operating and Governing AI-Native Infrastructure: Metrics, Budget, Isolation, Sharing, SLO to Cost

AI 原生基础设施需应对不确定性,治理的关键在于制度化管理成本与风险。系统运行不再确定,需将不确定性视为默认输入,以确保在最坏情况下仍具经济可行性与可控性。治理机制包括入口控制、意图转译、计量与预算管理,以实现系统的稳定运行。

Operating and Governing AI-Native Infrastructure: Metrics, Budget, Isolation, Sharing, SLO to Cost

云原生 云原生 · 2026-01-18T04:17:45Z
掌控你的可观察性:Supabase Metrics API

Supabase发布了增强的Metrics API文档,允许用户将数据库监控数据流入任何兼容Prometheus的观察工具。该API提供约200个Postgres性能和健康指标,支持Grafana、Datadog等平台,帮助用户监控关键指标如连接饱和、CPU和内存压力、磁盘I/O。用户可以设置警报,自动检测问题,确保数据库性能和稳定性。

掌控你的可观察性:Supabase Metrics API

Blog - Supabase Blog - Supabase · 2025-12-16T07:00:00Z

By Dao Mi, Pablo Delgado, Ryan Berti, Amanuel Kahsay, Obi-Ike Nwoke, Christopher Thrailkill, and Patricio GarzaAt Netflix, data engineering has always been a critical function to enable the...

From Facts & Metrics to Media Machine Learning: Evolving the Data Engineering Function at Netflix

Netflix TechBlog Netflix TechBlog · 2025-08-21T17:39:40Z
  • <<
  • <
  • 1 (current)
  • 2
  • 3
  • >
  • >>
👤 个人中心
在公众号发送验证码完成验证
登录验证
在本设备完成一次验证即可继续使用

完成下面两步后,将自动完成登录并继续当前操作。

1 关注公众号
小红花技术领袖公众号二维码
小红花技术领袖
如果当前 App 无法识别二维码,请在微信搜索并关注该公众号
2 发送验证码
在公众号对话中发送下面 4 位验证码
友情链接: MOGE.AI 九胧科技 1tok 菜鸟教程 Remio.AI DeekSeek连连 53AI 神龙海外代理IP IPIPGO全球代理IP 东波哥的博客 匡优考试在线考试系统 开源服务指南 蓝莺IM Solo 独立开发者社区 AI酷站导航 极客Fun 我爱水煮鱼 周报生成器 He3.app 简单简历 白鲸出海 T沙龙 职友集 TechParty 蟒周刊 Best AI Music Generator 模力方舟 Gitee AI

小红花技术领袖俱乐部
小红花·文摘:汇聚分发优质内容
小红花技术领袖俱乐部
Copyright © 2021-
粤ICP备2022094092号-1
公众号 小红花技术领袖俱乐部公众号二维码
视频号 小红花技术领袖俱乐部视频号二维码