Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/agentsight/.anolisa/component.macos.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[component]
name = "agentsight"
version = "0.10.1"
version = "0.10.2"
layer = "runtime"
domain = "observability"
display_name = "AgentSight"
Expand Down
2 changes: 1 addition & 1 deletion src/agentsight/.anolisa/component.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[component]
name = "agentsight"
version = "0.10.1"
version = "0.10.2"
layer = "runtime"
domain = "observability"
display_name = "AgentSight"
Expand Down
12 changes: 12 additions & 0 deletions src/agentsight/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.10.2

### Features
- Enforce size limits on sqlite stores. (#2644)
- Make dashboard UI bilingual (en/zh). (#2612)
- Add raw packaging for immutable release artifacts. (#2550)
- Add LLM latency metrics API. (#2578)

### Fixes
- Match latency agents case-insensitively. (#2590)
- Address latency metrics CI follow-ups. (#2583)

## 0.10.1

### Features
Expand Down
28 changes: 27 additions & 1 deletion src/agentsight/CHANGELOG_zh.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# 更新日志

## 0.10.2

### 新功能
- 对 sqlite 存储实施大小上限。(#2644)
- Dashboard UI 支持中英双语。(#2612)
- 新增 raw 打包,用于不可变发布产物。(#2550)
- 新增 LLM latency 指标 API。(#2578)

### 修复
- latency agent 匹配不区分大小写。(#2590)
- 处理 latency 指标 CI 后续问题。(#2583)

## 0.10.1

### 新功能
- 初始化 dashboard i18n,按浏览器首选语言匹配。
- 在 agent 发现规则中新增 agentscope 框架。
- 精简组件接入文档并澄清服务启动方式。

### 修复
- 将 pause_turn 视为正常 SSE 结束。(#2320)
Comment thread
Daydreamer-Li marked this conversation as resolved.
- 在 SSE continuation delta 之间保持 tool_call 名称。
- 在 observer namespace 中报告 pid。(#2360)
- 校验 enforcer RPM payload、保留 RPM staging 目标,并抑制重复的 enforcer 错误。
- 将 extractor 错误包装为 JSON envelope,并按变体分类 store 错误。(#2417, #2418)
- 去重 unavailable 状态并优化 dashboard metadata 同步。

## 0.10.0

### 新功能
Expand All @@ -11,7 +38,6 @@

### 修复
- tool-call stop 时保持 turn 打开,并将 user_message_count 加入 turn.id bucket key。
- 将 pause_turn 视为正常 SSE 结束。(#2320)
- 流式解码分片 zstd SSE 响应。
- 提升 QwenCode trace 数据准确性,并在 agentsight config 中新增 QwenCode allow rules。
- cosh 重启后保持 session。
Expand Down
2 changes: 1 addition & 1 deletion src/agentsight/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/agentsight/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ uuid = { version = "1", features = ["v4", "serde"] }

[package]
name = "agentsight"
version = "0.10.1"
version = "0.10.2"
Comment thread
Daydreamer-Li marked this conversation as resolved.
edition = "2024"

[features]
Expand Down
2 changes: 1 addition & 1 deletion src/agentsight/component.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ anolisa_min_version = "0.1.0"

[component]
name = "agentsight"
version = "0.10.1"
version = "0.10.2"
layer = "runtime"
domain = "observability"
description = "eBPF-based AI agent observability tool"
Expand Down
Loading