added chronograf guide to v2
parent
6181460b2f
commit
f6141b3357
|
@ -12,17 +12,43 @@ related:
|
|||
---
|
||||
|
||||
Use [Chronograf](/{{< latest "chronograf" >}}/) to visualize data from **InfluxDB Cloud** and **InfluxDB OSS 2.0**.
|
||||
Chronogaf uses the [InfluxDB 1.x compatibility API](/influxdb/v2.0/reference/api/influxdb-1x/)
|
||||
so you can continue to use InfluxQL in your dashboards and when exploring data.
|
||||
|
||||
- Chronogaf will use the v1 compatibility APIs
|
||||
- Limited write functionality
|
||||
- Continue to use InfluxQL
|
||||
- If using an admin user for visualization or Chronograf's administrative functions, create a new read-only user before upgrading.
|
||||
Admin rights are granted to the primary user created in the InfluxDB 2.0 setup process which runs at the end of the upgrade process.
|
||||
This provides you with the opportunity to re-assess who should be granted admin-level access in your InfluxDB 2.0 setup.
|
||||
{{% note %}}
|
||||
#### Limited InfluxQL support
|
||||
InfluxDB Cloud and InfluxDB OSS 2.0 support InfluxQL **read-only** queries.
|
||||
For more information, see [InfluxQL support](/influxdb/v2.0/query-data/influxql/#influxql-support),
|
||||
{{% /note %}}
|
||||
|
||||
1. Create a new connection
|
||||
2. Enter your InfluxDB URL:
|
||||
```
|
||||
http://localhost:8086
|
||||
```
|
||||
3. Test the connection
|
||||
## Create an InfluxDB connection
|
||||
1. Click **Configuration** in the left navigation bar, and then click **{{< icon "plus" >}} Add Connection**.
|
||||
2. Enter your InfluxDB connection credentials:
|
||||
- **Connection URL:** InfluxDB URL _(see [InfluxDB Cloud regions](/influxdb/cloud/reference/regions/)
|
||||
or [InfluxDB OSS URLs](/influxdb/v2.0/reference/urls/))_
|
||||
|
||||
```
|
||||
http://localhost:8086
|
||||
```
|
||||
|
||||
- **Connection Name:** Name to uniquely identify this connection configuration.
|
||||
- **Username:** InfluxDB username
|
||||
- **Password:** InfluxDB [authentication token](/influxdb/v2.0/security/tokens/)
|
||||
- **Telegraf Database Name:** Default database name
|
||||
- **Default Retention Policy:** Default retention policy
|
||||
|
||||
{{% note %}}
|
||||
#### DBRPs map to InfluxDB buckets
|
||||
In InfluxDB Cloud and InfluxDB OSS 2.0, database/retention-policy (DBRP) combinations
|
||||
are mapped to buckets using the `database-name/retention-policy` naming convention.
|
||||
For more information, see [DBRP mapping](/influxdb/v2.0/reference/api/influxdb-1x/dbrp/)
|
||||
and [Map unmapped buckets](/influxdb/v2.0/query-data/influxql/#map-unmapped-buckets).
|
||||
{{% /note %}}
|
||||
|
||||
3. Click **Add Connection**
|
||||
4. Select any dashboards you would like to create and then click **Next**.
|
||||
5. Configure a Kapacitor connection and then click **Continue**.
|
||||
If you do not wish to create a Kapacitor connection, click **Skip**.
|
||||
_For more information about using Kapacitor with InfluxDB Cloud or InfluxDB OSS 2.0,
|
||||
see [Use Kapacitor with InfluxDB](/influxdb/v2.0/tools/kapacitor/)._
|
||||
6. Click **Finish**.
|
||||
|
|
|
@ -15,13 +15,10 @@ related:
|
|||
|
||||
[Kapacitor](/{{< latest "kapacitor" >}}/) is a data processing framework that makes
|
||||
it easy to create alerts, run ETL jobs and detect anomalies.
|
||||
Use Kapacitor with **InfluxDB Cloud** and **InfluxDB OSS 2.0** to offload much of
|
||||
data processing burden to Kapacitor.
|
||||
|
||||
Because Kapacitor interacts with InfluxDB Cloud and InfluxDB OSS 2.0 using the
|
||||
[InfluxDB 1.x compatibility API](/influxdb/v2.0/reference/api/influxdb-1x/),
|
||||
you can continue using Kapacitor without having to migrate libraries of
|
||||
TICKscripts to InfluxDB tasks.
|
||||
Kapacitor interacts with **InfluxDB Cloud** and **InfluxDB OSS 2.0** using the
|
||||
[InfluxDB 1.x compatibility API](/influxdb/v2.0/reference/api/influxdb-1x/), so
|
||||
you can continue using Kapacitor without having to migrate libraries of TICKscripts
|
||||
to InfluxDB tasks.
|
||||
|
||||
{{% note %}}
|
||||
#### Support for stream tasks
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
{{ else if eq $icon "play" }}
|
||||
<span class="inline icon-play middle small"></span>
|
||||
{{ else if eq $icon "plus" }}
|
||||
<span class="inline icon-plus middle xsmall"></span>
|
||||
<span class="inline icon-ui-plus middle xsmall"></span>
|
||||
{{ else if or (eq $icon "refresh") (eq $icon "replay") }}
|
||||
<span class="inline icon-refresh middle small"></span>
|
||||
{{ else if or (eq $icon "remove") (eq $icon "x") }}
|
||||
|
|
Loading…
Reference in New Issue