Skip to content

Commit

Permalink
Merge pull request #19950 from brnhensley/patch-1
Browse files Browse the repository at this point in the history
fix: SQL -> sql, language identifiers are case sensitive
  • Loading branch information
WriteMayur authored Feb 12, 2025
2 parents 78e29c0 + 0008df3 commit 290de3e
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ This tutorial shows you different ways to add data to dashboards. You will:

<SideBySide>
<Side>
```SQL
SELECT count(*), average(threadCount), average(cpuPercent), average(cpuSystemPercent) FROM ProcessSample FACET commandName SINCE 1 hour ago
```sql
SELECT count(*), average(threadCount), average(cpuPercent), average(cpuSystemPercent)
FROM ProcessSample FACET commandName SINCE 1 hour ago
```
</Side>

Expand All @@ -86,8 +87,9 @@ This tutorial shows you different ways to add data to dashboards. You will:

<SideBySide>
<Side>
```SQL
SELECT average(transmitBytesPerSecond) from NetworkSample FACET hostname LIMIT 5 timeseries
```sql
SELECT average(transmitBytesPerSecond)
FROM NetworkSample FACET hostname LIMIT 5 TIMESERIES
```
</Side>

Expand Down

0 comments on commit 290de3e

Please sign in to comment.