You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/cci/financial-intelligence/nrql-for-cci.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -222,13 +222,13 @@ Let us consider the following NRQL query to understand how to query your data fo
222
222
FROM KubernetesCost SELECT* SINCE 1 week ago
223
223
```
224
224
225
-
To calculate accurate Kubernetes costs, include the `cpu_weightage + memory_weightage` parameters in your cost queries. The following example shows the correct query format:
225
+
To calculate accurate Kubernetes costs, multiply the `cpu_weightage + memory_weightage` parameters in your cost queries. The following example shows the correct query format:
226
226
227
227
```sql
228
228
SELECTSUM(net_unblended_cost * (cpu_weightage + memory_weightage)) FROM KubernetesCost SINCE '2025-09-01' UNTIL '2025-09-10'
229
229
```
230
230
231
-
This query multiplies the `net_unblended_cost` by the sum of CPU and memory weightage to provide accurate cost calculations based on resource usage.
231
+
This query multiplies the `net_unblended_cost` by the sum of CPU and memory weightage to provide accurate cost allocations based on resource usage.
0 commit comments