Skip to content

Commit

Permalink
feat: add group by and quick filters
Browse files Browse the repository at this point in the history
  • Loading branch information
amlannandy committed Dec 22, 2024
1 parent 04a2a31 commit 21a78f1
Show file tree
Hide file tree
Showing 5 changed files with 401 additions and 236 deletions.
13 changes: 4 additions & 9 deletions frontend/src/api/infraMonitoring/getK8sClustersList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,14 @@ export interface K8sClustersListPayload {
}

export interface K8sClustersData {
clusterName: string;
clusterUID: string;
cpuUsage: number;
cpuAllocatable: number;
memoryUsage: number;
desiredPods: number;
availablePods: number;
cpuRequest: number;
memoryRequest: number;
cpuLimit: number;
memoryLimit: number;
restarts: number;
memoryAllocatable: number;
meta: {
k8s_cluster_name: string;
k8s_namespace_name: string;
k8s_cluster_uid: string;
};
}

Expand Down
Loading

0 comments on commit 21a78f1

Please sign in to comment.