2021-03-31 07:23:48 +02:00
|
|
|
package model
|
|
|
|
|
2021-10-26 10:22:02 +02:00
|
|
|
// Go look at `gqlgen.yml` and the schema package for other non-generated models.
|
2021-04-14 18:53:18 +02:00
|
|
|
|
|
|
|
type JobTag struct {
|
2021-10-26 10:22:02 +02:00
|
|
|
ID string `json:"id" db:"id"`
|
|
|
|
TagType string `json:"tagType" db:"tag_type"`
|
|
|
|
TagName string `json:"tagName" db:"tag_name"`
|
2021-04-22 15:00:54 +02:00
|
|
|
}
|
2021-12-08 10:12:19 +01:00
|
|
|
|
|
|
|
type Cluster struct {
|
|
|
|
ClusterID string `json:"clusterID"`
|
|
|
|
ProcessorType string `json:"processorType"`
|
|
|
|
SocketsPerNode int `json:"socketsPerNode"`
|
|
|
|
CoresPerSocket int `json:"coresPerSocket"`
|
|
|
|
ThreadsPerCore int `json:"threadsPerCore"`
|
|
|
|
FlopRateScalar int `json:"flopRateScalar"`
|
|
|
|
FlopRateSimd int `json:"flopRateSimd"`
|
|
|
|
MemoryBandwidth int `json:"memoryBandwidth"`
|
|
|
|
MetricConfig []*MetricConfig `json:"metricConfig"`
|
|
|
|
FilterRanges *FilterRanges `json:"filterRanges"`
|
|
|
|
MetricDataRepository *struct {
|
|
|
|
Kind string `json:"kind"`
|
|
|
|
Url string `json:"url"`
|
|
|
|
} `json:"metricDataRepository"`
|
|
|
|
}
|