FIX: QVAC Updates
CI / test (push) Successful in 2m45s
Release rolling / release (push) Successful in 11m36s

This commit is contained in:
Raven Scott
2026-07-30 15:23:43 -04:00
parent 79250e1a55
commit 4b5b78892f
25 changed files with 2886 additions and 345 deletions
+20
View File
@@ -48,6 +48,11 @@ import {
getHostSnapshot,
searchCharts,
summarizeChart,
investigateHost,
hotMetrics,
relatedCharts,
compareChartWindows,
summarizeCharts,
} from '../services/ai-tools.js'
import {
getRetentionConfig,
@@ -169,6 +174,21 @@ export function registerMonitorHandlers(session) {
session.respond('summarizeChart', async (args) => summarizeChart(args || {}), {
hot: true,
})
session.respond('investigateHost', async (args) => investigateHost(args || {}), {
hot: true,
})
session.respond('hotMetrics', async (args) => hotMetrics(args || {}), { hot: true })
session.respond('relatedCharts', async (args) => relatedCharts(args || {}), {
hot: true,
})
session.respond(
'compareChartWindows',
async (args) => compareChartWindows(args || {}),
{ hot: true }
)
session.respond('summarizeCharts', async (args) => summarizeCharts(args || {}), {
hot: true,
})
session.respond('queryLogs', async (args) =>
queryLogs({ ...(args || {}), role: session.role })