Skip to content

Commit 9e8db72

Browse files
Update nrql-for-cci.mdx
1 parent 494ce41 commit 9e8db72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/docs/cci/financial-intelligence/nrql-for-cci.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,13 @@ Let us consider the following NRQL query to understand how to query your data fo
222222
FROM KubernetesCost SELECT * SINCE 1 week ago
223223
```
224224

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:
226226

227227
```sql
228228
SELECT SUM(net_unblended_cost * (cpu_weightage + memory_weightage)) FROM KubernetesCost SINCE '2025-09-01' UNTIL '2025-09-10'
229229
```
230230

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.
232232

233233
<table>
234234
<tr>

0 commit comments

Comments
 (0)