instances: {store.instances?.length ?? "null"}
profiles: {store.profiles?.length ?? "null"}
agents: {store.agents?.length ?? "null"}
tabsChartData: {store.tabsChartData?.length ?? "null"}
serverChartData: {store.serverChartData?.length ?? "null"}
memoryChartData: {store.memoryChartData?.length ?? "null"}
selectedAgentId: {store.selectedAgentId ?? "null"}
profilesLoading: {String(store.profilesLoading)}
instancesLoading: {String(store.instancesLoading)}
Instances:
{store.instances?.map((i) => (
{i.id}: {i.status} ({i.profileName})
))}