From 003ceedcc6826f19186dac98b8a0f5625e06dbf6 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Mon, 30 Sep 2019 10:43:15 -0600 Subject: [PATCH] added more links to client libraries, resolves #485 --- content/v2.0/reference/api.md | 9 +++++---- .../v2.0/write-data/best-practices/optimize-writes.md | 9 +++++++-- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/content/v2.0/reference/api.md b/content/v2.0/reference/api.md index 364924053..7e8e90ef1 100644 --- a/content/v2.0/reference/api.md +++ b/content/v2.0/reference/api.md @@ -37,14 +37,15 @@ curl --request POST \ {{% /code-tab-content %}} {{< /code-tabs-wrapper >}} -## View Influx v2 API Documentation -View the +## View InfluxDB v2 API Documentation InfluxDB v2.0 API documentation ### View InfluxDB API documentation locally InfluxDB API documentation is built into the `influxd` service and represents the API specific to the current version of InfluxDB. To view the API documentation locally, [start InfluxDB](/v2.0/get-started/#start-influxdb) -and visit the `/docs` endpoint in a browser. +and visit the `/docs` endpoint in a browser ([localhost:9999/docs](http://localhost:9999/docs)). -localhost:9999/docs +## InfluxDB client libraries +InfluxDB client libraries are language-specific packages that integrate with the InfluxDB v2 API. +For information about supported client libraries, see [InfluxDB client libraries](/v2.0/reference/client-libraries/). diff --git a/content/v2.0/write-data/best-practices/optimize-writes.md b/content/v2.0/write-data/best-practices/optimize-writes.md index 25fe0004b..75c04becc 100644 --- a/content/v2.0/write-data/best-practices/optimize-writes.md +++ b/content/v2.0/write-data/best-practices/optimize-writes.md @@ -11,8 +11,13 @@ v2.0/tags: [best practices, write] Use these tips to optimize performance and system overhead when writing data to InfluxDB. -_[Telegraf](/v2.0/write-data/use-telegraf/), [InfluxDB scrapers](/v2.0/write-data/scrape-data/), -and many [InfluxDB client libraries](/v2.0/reference/client-libraries/) employ these optimizations by default._ +{{% note %}} +The following tools write to InfluxDB and employ write optimizations by default: + +- [Telegraf](/v2.0/write-data/use-telegraf/) +- [InfluxDB scrapers](/v2.0/write-data/scrape-data/) +- [InfluxDB client libraries](/v2.0/reference/client-libraries/) +{{% /note %}} ---