We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02f970c commit 8682d11Copy full SHA for 8682d11
frontend/src/pages/MCADashboard/Metrics/api/metricsData.ts
@@ -10,7 +10,6 @@ export const getMetricData = async (query: string) => {
10
try {
11
const body = { query: query };
12
const res: { data: { value: [string, number] }[] } = await axios.post('/api/metrics-data', body);
13
- console.log("res.data", res.data)
14
if (query === utilizedGPUQuery) { // since vector(0) in query, even if no gpu in cluster returns 0
15
const gpubody = { query: utilizedGPUMemoryQuery }; // use the utilizedGPUMemoryQuery to verify gpu is present in the cluster
16
const gpures: { data: { value: [string, number] }[] } = await axios.post('/api/metrics-data', gpubody);
0 commit comments