Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
chore: capitalize NRQL clauses
  • Loading branch information
brnhensley authored Dec 3, 2025
commit 2a61b6f83e0e3278b4766dac65e76df538f4dab7
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Perfect for showing trends over time and comparing multiple metrics.

**Example query**:
```sql
SELECT average(duration) as 'Response Time'
SELECT average(duration) AS 'Response Time'
FROM Transaction
WHERE appName = 'MyApp'
TIMESERIES 5 minutes
Expand Down Expand Up @@ -57,7 +57,7 @@ Compare values across different categories or dimensions.

**Example query**:
```sql
SELECT count(*) as 'Request Count'
SELECT count(*) AS 'Request Count'
FROM Transaction
WHERE appName = 'MyApp'
FACET name
Expand Down Expand Up @@ -104,7 +104,7 @@ Highlight single important metrics prominently.

**Example query**:
```sql
SELECT average(duration) as 'Avg Response Time (ms)'
SELECT average(duration) AS 'Avg Response Time (ms)'
FROM Transaction
WHERE appName = 'MyApp'
SINCE 1 hour ago
Expand Down Expand Up @@ -161,8 +161,8 @@ Format your data for clarity:
Always add descriptive titles and labels:

```sql
SELECT average(duration) as 'Average Response Time (ms)',
percentile(duration, 95) as '95th Percentile (ms)'
SELECT average(duration) AS 'Average Response Time (ms)',
percentile(duration, 95) AS '95th Percentile (ms)'
FROM Transaction
WHERE appName = 'E-commerce API'
SINCE 24 hours ago
Expand Down Expand Up @@ -221,8 +221,8 @@ Create reusable visualizations with variables:
```

```sql
SELECT count(*) as 'Requests',
average(duration) as 'Avg Duration'
SELECT count(*) AS 'Requests',
average(duration) AS 'Avg Duration'
FROM Transaction
WHERE appName = '{{appName}}'
TIMESERIES 5 minutes
Expand All @@ -234,7 +234,7 @@ SINCE {{timeRange}}
Show before and after or period comparisons:

```sql
SELECT average(duration) as 'Response Time'
SELECT average(duration) AS 'Response Time'
FROM Transaction
WHERE appName = 'MyApp'
TIMESERIES 1 hour
Expand Down Expand Up @@ -283,4 +283,4 @@ SINCE 2 hours ago

* Learn about [sharing notebooks](/docs/query-your-data/explore-query-data/notebooks/share-notebooks) with your team
* Explore [notebook examples](/docs/query-your-data/explore-query-data/notebooks/notebooks-examples) for visualization inspiration
* Check out the [chart types guide](/docs/query-your-data/explore-query-data/use-charts/chart-types) for detailed information about all available visualizations
* Check out the [chart types guide](/docs/query-your-data/explore-query-data/use-charts/chart-types) for detailed information about all available visualizations
Loading