Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions src/content/docs/cci/financial-intelligence/nrql-for-cci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ Integrate support for querying events through the NRQL interface, enhancing your
<th>Description</th>
</tr>
<tr>
<td>CloudCost</td>
<td>`CloudCost`</td>
<td>CCI Summary Event</td>
</tr>
<tr>
<td>KubernetesCost</td>
<td>`KubernetesCost`</td>
<td>K8s Event</td>
</tr>
<tr>
<td>CloudCostEstimate</td>
<td>`CloudCostEstimate`</td>
<td>Real-Time Event</td>
</tr>
</table>
Expand All @@ -46,7 +46,7 @@ Let us consider the following NRQL query to understand how to query your data fo
In New Relic, click **Integrations & Agents** on the left panel, locate and select **Cloud Cost Intelligence > Budgets**. Open the bottom Query Console drawer and enter the following NRQL query:

```sql
FROM CloudCost select * since 24 hours ago
FROM CloudCost SELECT * SINCE 24 hours ago
```

<table>
Expand Down Expand Up @@ -219,7 +219,7 @@ Let us consider the following NRQL query to understand how to query your data fo
In New Relic, click **Integrations & Agents** on the left panel, locate and select **Cloud Cost Intelligence > Budgets**. Open the bottom Query Console drawer and enter the following NRQL query:

```sql
FROM KubernetesCost SELECT * since 1 week ago
FROM KubernetesCost SELECT * SINCE 1 week ago
```
<table>
<tr>
Expand Down Expand Up @@ -719,7 +719,7 @@ Let us consider the following NRQL query to understand how to query your data fo
>

```sql
FROM CloudCostEstimate SELECT * since 24 hours ago
FROM CloudCostEstimate SELECT * SINCE 24 hours ago
```
<table>
<tr>
Expand Down Expand Up @@ -910,7 +910,7 @@ Let us consider the following NRQL query to understand how to query your data fo
- [`AND`](/docs/nrql/nrql-syntax-clauses-functions/#sel-where)
- [`OR`](/docs/nrql/nrql-syntax-clauses-functions/#sel-where)
- [`NOT IN`](/docs/nrql/nrql-syntax-clauses-functions/#sel-where)
- [`<, <=, >, >=, !=`](/docs/nrql/nrql-syntax-clauses-functions/#sel-where)
- [`<`, `<=`, `>`, `>=`, `!=`](/docs/nrql/nrql-syntax-clauses-functions/#sel-where)
- [`DATEOF()`](/docs/nrql/nrql-syntax-clauses-functions/#sel-timezone)
- [`HOUROF()`](https://docs.newrelic.com/docs/nrql/nrql-syntax-clauses-functions/#func-minOf)
- [`UNIQUES()`](/docs/nrql/nrql-syntax-clauses-functions/#func-uniques)
Expand All @@ -919,8 +919,8 @@ Let us consider the following NRQL query to understand how to query your data fo
- [`UNTIL`](/docs/nrql/nrql-syntax-clauses-functions/#sel-until)
- [`TIMESERIES`](/docs/nrql/nrql-syntax-clauses-functions/#sel-timeseries)
- [`COMPARE WITH`](/docs/nrql/nrql-syntax-clauses-functions/#sel-compare)
- [`TIMESERIES… FACET…`](/docs/nrql/nrql-syntax-clauses-functions/#func-dimensions)
- [`TIMESERIES…` `FACET…`](/docs/nrql/nrql-syntax-clauses-functions/#func-dimensions)
- [`TIMESERIES…COMPARE WITH…`](/docs/nrql/nrql-syntax-clauses-functions/#sel-compare)
- [`COMPARE WITH…FACET..`](/docs/nrql/nrql-syntax-clauses-functions/#sel-compare)
- [`COMPARE WITH…FACET`](/docs/nrql/nrql-syntax-clauses-functions/#sel-compare)
</Collapser>
</CollapserGroup>
</CollapserGroup>
Loading