Skip to content

Commit 3fdd414

Browse files
Apply suggestions from code review
Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
1 parent 081be27 commit 3fdd414

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

content/influxdb3/core/query-data/execute-queries/influxdb-v3-api.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Use the InfluxDB v3 HTTP query API to query data
2+
title: Use the InfluxDB v3 HTTP query API
33
seotitle: Use SQL or InfluxQL and InfluxDB v3 HTTP query API
44
list_title: Use the v3 query API
55
description: >
@@ -13,8 +13,6 @@ influxdb3/core/tags: [query, influxql, sql, python]
1313
metadata: [InfluxQL, SQL]
1414
related:
1515
- /influxdb3/core/api-compatibility/v1/
16-
aliases:
17-
- /influxdb3/core/query-data/influxql/execute-queries/influxdb-v1-api/
1816
list_code_example: |
1917
```sh
2018
curl --get http://{{< influxdb/host >}}/api/v3/query_sql \

content/influxdb3/enterprise/query-data/execute-queries/influxdb-v3-api.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Use the InfluxDB v3 HTTP query API to query data
2+
title: Use the InfluxDB v3 HTTP query API
33
seotitle: Use SQL or InfluxQL and InfluxDB v3 HTTP query API
44
list_title: Use the v3 query API
55
description: >
@@ -13,8 +13,6 @@ influxdb3/enterprise/tags: [query, influxql, sql, python]
1313
metadata: [InfluxQL, SQL]
1414
related:
1515
- /influxdb3/enterprise/api-compatibility/v1/
16-
aliases:
17-
- /influxdb3/enterprise/query-data/influxql/execute-queries/influxdb-v1-api/
1816
list_code_example: |
1917
```sh
2018
curl --get http://{{< influxdb/host >}}/api/v3/query_sql \

content/shared/influxdb3-admin/query-system-data/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--Shortcode-->
2-
{{% product-name %}} stores data related to the database server, queries, and tables in _system tables_ within your cluster.
2+
{{% product-name %}} stores data related to the database server, queries, and tables in _system tables_.
33
You can query the system tables for information about your running server, databases, and and table schemas.
44

55
## Query system tables
@@ -36,12 +36,12 @@ Include the following parameters:
3636
#### Examples
3737

3838
> [!Note]
39-
> #### system_ sample data
39+
> #### system\_ sample data
4040
>
4141
> In examples, tables with `"table_name":"system_` are user-created tables for CPU, memory, disk,
4242
> network, and other resource statistics collected and written
4343
> by the user--for example, using the `psutil` Python library or
44-
> [Telegraf](https://docs.influxdata.com/telegraf/v1/get-started/) to collect
44+
> [Telegraf](/telegraf/v1/get-started/) to collect
4545
> and write system metrics to an InfluxDB 3 database.
4646
4747
##### Show tables
@@ -133,7 +133,7 @@ curl "http://localhost:8181/api/v3/query_sql" \
133133
}'
134134
```
135135

136-
The output is the following:
136+
The output is similar to the following:
137137

138138
```jsonl
139139
{"id":"cdd63409-1822-4e65-8e3a-d274d553dbb3","phase":"success","issue_time":"2025-01-20T17:01:40.690067","query_type":"sql","query_text":"show tables","partitions":0,"parquet_files":0,"plan_duration":"PT0.032689S","permit_duration":"PT0.000202S","execute_duration":"PT0.000223S","end2end_duration":"PT0.033115S","compute_duration":"P0D","max_memory":0,"success":true,"running":false,"cancelled":false}

content/shared/influxdb3-query-guides/execute-queries/influxdb3-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Use the HTTP API `/api/v3/query_sql` endpoint to retrieve system information abo
6060
#### Examples
6161

6262
> [!Note]
63-
> #### system_ sample data
63+
> #### system\_ sample data
6464
>
6565
> In examples, tables with `"table_name":"system_` are user-created tables for CPU, memory, disk,
6666
> network, and other resource statistics collected and written
@@ -130,7 +130,7 @@ curl "http://localhost:8181/api/v3/query_sql" \
130130
}'
131131
```
132132

133-
The output is the following:
133+
The output is similar to the following:
134134

135135
```jsonl
136136
{"table_catalog":"public","table_schema":"iox","table_name":"system_swap","column_name":"free","ordinal_position":0,"is_nullable":"YES","data_type":"UInt64"}
@@ -157,7 +157,7 @@ curl "http://localhost:8181/api/v3/query_sql" \
157157
}'
158158
```
159159

160-
The output is the following:
160+
The output is similar to the following:
161161

162162
```jsonl
163163
{"id":"cdd63409-1822-4e65-8e3a-d274d553dbb3","phase":"success","issue_time":"2025-01-20T17:01:40.690067","query_type":"sql","query_text":"show tables","partitions":0,"parquet_files":0,"plan_duration":"PT0.032689S","permit_duration":"PT0.000202S","execute_duration":"PT0.000223S","end2end_duration":"PT0.033115S","compute_duration":"P0D","max_memory":0,"success":true,"running":false,"cancelled":false}

0 commit comments

Comments
 (0)