@daocloud-proto/insight 0.41.0 → 0.41.1-rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,6 +23,8 @@ export enum GetResourcesCountRequestResourcesFilter {
23
23
  JOB_TOTAL = "JOB_TOTAL",
24
24
  POD_NORMAL_TOTAL = "POD_NORMAL_TOTAL",
25
25
  POD_TOTAL = "POD_TOTAL",
26
+ GPU_COUNT = "GPU_COUNT",
27
+ GPU_ALLOCATED_COUNT = "GPU_ALLOCATED_COUNT",
26
28
  LOG_TOTAL = "LOG_TOTAL",
27
29
  TRACE_TOTAL = "TRACE_TOTAL",
28
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/insight",
3
- "version":"0.41.0",
3
+ "version":"0.41.1-rc1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -124,6 +124,7 @@ export type ClusterDetail = {
124
124
  statefulsetNumSummary?: InsightIoApiResourceV1alpha1Type.ResourceNumSummary
125
125
  daemonsetNumSummary?: InsightIoApiResourceV1alpha1Type.ResourceNumSummary
126
126
  podNumSummary?: InsightIoApiResourceV1alpha1Type.ResourceNumSummary
127
+ gpuNumSummary?: InsightIoApiResourceV1alpha1Type.ResourceNumSummary
127
128
  insightAgentStatus?: insightAgentState
128
129
  }
129
130