enable runtime compaction tracking and refresh compaction config docs

This commit is contained in:
DBT
2026-02-23 15:32:05 +00:00
parent bb3a710144
commit d181525b88
5 changed files with 30 additions and 13 deletions

View File

@@ -833,10 +833,11 @@ func alSessionListForTool(sm *session.SessionManager, limit int) []tools.Session
out := make([]tools.SessionInfo, 0, len(items))
for _, s := range items {
out = append(out, tools.SessionInfo{
Key: s.Key,
Kind: s.Kind,
Summary: s.Summary,
UpdatedAt: s.Updated,
Key: s.Key,
Kind: s.Kind,
Summary: s.Summary,
CompactionCount: s.CompactionCount,
UpdatedAt: s.Updated,
})
}
return out