We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2fdf04 commit afbdd36Copy full SHA for afbdd36
server/src/billing/billing.service.ts
@@ -228,12 +228,12 @@ export class BillingService {
228
})
229
230
const cpuTask = prom
231
- .instantQuery(`laf:billing:cpu{appid=${app.appid}}`, time)
+ .instantQuery(`laf:billing:cpu{appid="${app.appid}"}`, time)
232
.then((res) => res.result[0])
233
.then((res) => Number(res.value.value))
234
235
const memoryTask = prom
236
- .instantQuery(`laf:billing:memory{appid=${app.appid}`, time)
+ .instantQuery(`laf:billing:memory{appid="${app.appid}"}`, time)
237
238
239
0 commit comments