debug: add console logging to verify unified resources usage
Temporary logging to verify which code path is being used: - DockerRoute: logs docker-host and docker-container counts - HostsRoute: logs host count - DashboardView: logs VM count Check browser console to confirm unified resources are being received. These logs can be removed once migration is verified.
This commit is contained in:
parent
6cfcc47c71
commit
9a1458700a
1 changed files with 3 additions and 0 deletions
|
|
@ -107,6 +107,7 @@ function DockerRoute() {
|
|||
|
||||
// If we have unified resources, convert and reconstruct hierarchy
|
||||
if (dockerHostResources.length > 0) {
|
||||
console.log('[DockerRoute] Using unified resources:', dockerHostResources.length, 'hosts,', dockerContainerResources.length, 'containers');
|
||||
return dockerHostResources.map(h => {
|
||||
const platformData = h.platformData as Record<string, unknown> | undefined;
|
||||
|
||||
|
|
@ -206,6 +207,7 @@ function HostsRoute() {
|
|||
// If we have unified resources, convert them to legacy Host format
|
||||
// (This will be simplified once HostsOverview is migrated to use resources directly)
|
||||
if (unifiedHosts.length > 0) {
|
||||
console.log('[HostsRoute] Using unified resources:', unifiedHosts.length, 'hosts');
|
||||
return unifiedHosts.map(r => {
|
||||
const platformData = r.platformData as Record<string, unknown> | undefined;
|
||||
return {
|
||||
|
|
@ -876,6 +878,7 @@ function App() {
|
|||
const vms = createMemo(() => {
|
||||
const vmResources = state().resources?.filter(r => r.type === 'vm') ?? [];
|
||||
if (vmResources.length > 0) {
|
||||
console.log('[DashboardView] Using unified resources: VMs:', vmResources.length);
|
||||
return vmResources.map(r => {
|
||||
const platformData = r.platformData as Record<string, unknown> | undefined;
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in a new issue