add resource compare graph, add cursor sync, handle jobIds fitler

This commit is contained in:
Christoph Kluge
2025-05-06 17:54:13 +02:00
parent d3d752f90c
commit aed2bd48fc
7 changed files with 324 additions and 101 deletions

View File

@@ -97,10 +97,13 @@ type JobResultList struct {
}
type JobStats struct {
JobID int `json:"jobId"`
StartTime int `json:"startTime"`
Duration int `json:"duration"`
Stats []*NamedStats `json:"stats"`
JobID int `json:"jobId"`
StartTime int `json:"startTime"`
Duration int `json:"duration"`
NumNodes int `json:"numNodes"`
NumHWThreads *int `json:"numHWThreads,omitempty"`
NumAccelerators *int `json:"numAccelerators,omitempty"`
Stats []*NamedStats `json:"stats"`
}
type JobsStatistics struct {