mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-29 13:09:26 +02:00
Add comprehensive benchmarking capability to measure server performance: Backend: - BenchmarkService with CPU, memory, disk, and AI benchmarks using sysbench - Database migrations for benchmark_results and benchmark_settings tables - REST API endpoints for running benchmarks and retrieving results - CLI commands: benchmark:run, benchmark:results, benchmark:submit - BullMQ job for async benchmark execution with SSE progress updates - Synchronous mode option (?sync=true) for simpler local dev setup Frontend: - Benchmark settings page with circular gauges for scores - NOMAD Score display with weighted composite calculation - System Performance section (CPU, Memory, Disk Read/Write) - AI Performance section (tokens/sec, time to first token) - Hardware Information display - Expandable Benchmark Details section - Progress simulation during sync benchmark execution Easy Setup Integration: - Added System Benchmark to Additional Tools section - Built-in capability pattern for non-Docker features - Click-to-navigate behavior for built-in tools Fixes: - Docker log multiplexing issue (Tty: true) for proper output parsing - Consolidated disk benchmarks into single container execution Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
83 lines
1.7 KiB
TypeScript
83 lines
1.7 KiB
TypeScript
import { DateTime } from 'luxon'
|
|
import { BaseModel, column, SnakeCaseNamingStrategy } from '@adonisjs/lucid/orm'
|
|
import type { BenchmarkType, DiskType } from '../../types/benchmark.js'
|
|
|
|
export default class BenchmarkResult extends BaseModel {
|
|
static namingStrategy = new SnakeCaseNamingStrategy()
|
|
|
|
@column({ isPrimary: true })
|
|
declare id: number
|
|
|
|
@column()
|
|
declare benchmark_id: string
|
|
|
|
@column()
|
|
declare benchmark_type: BenchmarkType
|
|
|
|
// Hardware information
|
|
@column()
|
|
declare cpu_model: string
|
|
|
|
@column()
|
|
declare cpu_cores: number
|
|
|
|
@column()
|
|
declare cpu_threads: number
|
|
|
|
@column()
|
|
declare ram_bytes: number
|
|
|
|
@column()
|
|
declare disk_type: DiskType
|
|
|
|
@column()
|
|
declare gpu_model: string | null
|
|
|
|
// System benchmark scores
|
|
@column()
|
|
declare cpu_score: number
|
|
|
|
@column()
|
|
declare memory_score: number
|
|
|
|
@column()
|
|
declare disk_read_score: number
|
|
|
|
@column()
|
|
declare disk_write_score: number
|
|
|
|
// AI benchmark scores (nullable for system-only benchmarks)
|
|
@column()
|
|
declare ai_tokens_per_second: number | null
|
|
|
|
@column()
|
|
declare ai_model_used: string | null
|
|
|
|
@column()
|
|
declare ai_time_to_first_token: number | null
|
|
|
|
// Composite NOMAD score (0-100)
|
|
@column()
|
|
declare nomad_score: number
|
|
|
|
// Repository submission tracking
|
|
@column({
|
|
serialize(value) {
|
|
return Boolean(value)
|
|
},
|
|
})
|
|
declare submitted_to_repository: boolean
|
|
|
|
@column.dateTime()
|
|
declare submitted_at: DateTime | null
|
|
|
|
@column()
|
|
declare repository_id: string | null
|
|
|
|
@column.dateTime({ autoCreate: true })
|
|
declare created_at: DateTime
|
|
|
|
@column.dateTime({ autoCreate: true, autoUpdate: true })
|
|
declare updated_at: DateTime
|
|
}
|