feat(frontend) : add DatabaseInfo type and service

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-04-08 16:05:26 +02:00
parent df755d521c
commit 1cb2ff2130
3 changed files with 19 additions and 1 deletions

View File

@@ -22,6 +22,16 @@ type PortMapping = {
protocol: string
}
type DatabaseInfo = {
connected: boolean
name: string
size: string
tableCount: number
activeConnections: number
cacheHitRatio: number
largestTable: string
}
type EnvironmentHealth = {
status: string
version: string