fix(influxdb3): Apply corrections from code review
parent
874d09ca4a
commit
49acdbabd7
|
@ -154,7 +154,7 @@ tags:
|
|||
description: Query data using SQL or InfluxQL
|
||||
- name: Quick start
|
||||
description: |
|
||||
1. [Create an admin token](#section/Authentication) for the InfluxDB 3 Enterprise API.
|
||||
1. [Create an admin token](#section/Authentication) for the InfluxDB 3 Core API.
|
||||
|
||||
```bash
|
||||
curl -X POST "http://localhost:8181/api/v3/configure/token/admin"
|
||||
|
@ -166,7 +166,7 @@ tags:
|
|||
--header "Authorization: Bearer ADMIN_TOKEN"
|
||||
```
|
||||
|
||||
3. [Write data](#section/Compatibility-endpoints/Write-data) to InfluxDB.
|
||||
3. [Write data](#operation/PostWriteLP) to InfluxDB.
|
||||
|
||||
```bash
|
||||
curl "http://localhost:8181/api/v3/write_lp?db=sensors&precision=auto"
|
||||
|
@ -177,7 +177,7 @@ tags:
|
|||
|
||||
If all data is written, the response is `204 No Content`.
|
||||
|
||||
4. [Query data](#section/Compatibility-endpoints/Query-data) from InfluxDB.
|
||||
4. [Query data](#operation/GetExecuteQuerySQL) from InfluxDB.
|
||||
|
||||
```bash
|
||||
curl -G "http://localhost:8181/api/v3/query_sql" \
|
||||
|
@ -1351,7 +1351,7 @@ paths:
|
|||
tags:
|
||||
- Authentication
|
||||
- Token
|
||||
/api/v3/configure/enterprise/token/admin/regenerate:
|
||||
/api/v3/configure/token/admin/regenerate:
|
||||
post:
|
||||
operationId: PostRegenerateAdminToken
|
||||
summary: Regenerate admin token
|
||||
|
@ -1575,7 +1575,7 @@ components:
|
|||
#### Related
|
||||
|
||||
- [Use the HTTP API and client libraries to write data](/influxdb3/core/write-data/api-client-libraries/)
|
||||
- [Data durability](/influxdb3/enterprise/reference/internals/durability/)
|
||||
- [Data durability](/influxdb3/core/reference/internals/durability/)
|
||||
PrecisionWriteCompatibility:
|
||||
enum:
|
||||
- ms
|
||||
|
|
|
@ -166,7 +166,7 @@ tags:
|
|||
--header "Authorization: Bearer ADMIN_TOKEN"
|
||||
```
|
||||
|
||||
3. [Write data](#section/Compatibility-endpoints/Write-data) to InfluxDB.
|
||||
3. [Write data](#operation/PostWriteLP) to InfluxDB.
|
||||
|
||||
```bash
|
||||
curl "http://localhost:8181/api/v3/write_lp?db=sensors&precision=auto"
|
||||
|
@ -177,7 +177,7 @@ tags:
|
|||
|
||||
If all data is written, the response is `204 No Content`.
|
||||
|
||||
4. [Query data](#section/Compatibility-endpoints/Query-data) from InfluxDB.
|
||||
4. [Query data](#operation/GetExecuteQuerySQL) from InfluxDB.
|
||||
|
||||
```bash
|
||||
curl -G "http://localhost:8181/api/v3/query_sql" \
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
<!-->
|
||||
|
||||
{{< children hlevel="h2" readmore=true hr=true >}}
|
Loading…
Reference in New Issue