33 lines
970 B
TypeScript
33 lines
970 B
TypeScript
export const overviewConfigs = [
|
|
{
|
|
key: 'workworker_count',
|
|
label: 'Workers',
|
|
// backgroundColor: 'linear-gradient(135deg, #ffffff, rgb(232 249 240 / 60%))'
|
|
backgroundColor: 'var(--color-white-1)'
|
|
},
|
|
{
|
|
key: 'gpu_count',
|
|
label: 'Total GPUs',
|
|
backgroundColor: 'var(--color-white-1)'
|
|
// backgroundColor: 'linear-gradient(135deg, #ffffff, rgb(232 249 240 / 60%))'
|
|
},
|
|
{
|
|
key: 'allocatedGpus',
|
|
label: 'Allocated GPUs',
|
|
backgroundColor: 'var(--color-white-1)'
|
|
// backgroundColor: 'linear-gradient(135deg, #ffffff, rgb(232 249 240 / 60%))'
|
|
},
|
|
{
|
|
key: 'model_count',
|
|
label: 'Models',
|
|
backgroundColor: 'var(--color-white-1)'
|
|
// backgroundColor: 'linear-gradient(135deg, #ffffff, rgb(232 249 240 / 60%))'
|
|
},
|
|
{
|
|
key: 'model_instance_count',
|
|
label: 'Instances',
|
|
backgroundColor: 'var(--color-white-1)'
|
|
// backgroundColor: 'linear-gradient(135deg, #ffffff, rgb(232 249 240 / 60%))'
|
|
}
|
|
];
|