fixed broken links
parent
e3638fe1aa
commit
c8d2cd7572
|
|
@ -64,7 +64,7 @@ InfluxDB uses the current system time (UTC) of its host machine.
|
|||
|
||||
The default precision for timestamps is in nanoseconds.
|
||||
If the precision of the timestamps is anything other than nanoseconds (`ns`),
|
||||
you must specify the precision in your [write request](#ways-to-write-data-into-influxdb).
|
||||
you must **specify the precision in your write request**.
|
||||
InfluxDB accepts the following precisions:
|
||||
|
||||
- `ns` - Nanoseconds
|
||||
|
|
@ -170,7 +170,7 @@ that scrapes data from the `/metrics` endpoint.
|
|||
There are multiple options for writing data into InfluxDB, including both no-code and developer solutions.
|
||||
|
||||
- [No-code solutions](/v2.0/write-data/no-code)
|
||||
- [Development tools](/v2.0/write-data/development-tools)
|
||||
- [Developer tools](/v2.0/write-data/developer-tools)
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -56,15 +56,24 @@ To configure Apache JMeter, complete the following steps in InfluxDB and JMeter.
|
|||
|
||||
##### In JMeter
|
||||
|
||||
1. Create a [Backend Listener](https://jmeter.apache.org/usermanual/component_reference.html#Backend_Listener) using the _InfluxDBBackendListenerClient_ implementation.
|
||||
2. In the **Backend Listener implementation** field, enter _org.apache.jmeter.visualizers.backend.influxdb.influxdbBackendListenerClient_
|
||||
1. Create a [Backend Listener](https://jmeter.apache.org/usermanual/component_reference.html#Backend_Listener) using the _**InfluxDBBackendListenerClient**_ implementation.
|
||||
2. In the **Backend Listener implementation** field, enter:
|
||||
```
|
||||
org.apache.jmeter.visualizers.backend.influxdb.influxdbBackendListenerClient
|
||||
```
|
||||
3. Under **Parameters**, specify the following:
|
||||
- **influxdbMetricsSender**: _org.apache.jmeter.visualizers.backend.influxdb.HttpMetricsSender_
|
||||
- **influxdbUrl**: _http://localhost:9999/api/v2/write?org=my-org&bucket=jmeter_ (include the bucket and org you created in InfluxDB)
|
||||
- **application**: _InfluxDB2_
|
||||
- **influxdbToken**: _my-token_ (include the token you created in InfluxDB)
|
||||
- **influxdbMetricsSender**:
|
||||
```
|
||||
org.apache.jmeter.visualizers.backend.influxdb.HttpMetricsSender
|
||||
```
|
||||
- **influxdbUrl**: _(include the bucket and org you created in InfluxDB)_
|
||||
```
|
||||
http://localhost:9999/api/v2/write?org=my-org&bucket=jmeter
|
||||
```
|
||||
- **application**: `InfluxDB2`
|
||||
- **influxdbToken**: _your InfluxDB authentication token_
|
||||
- Include additional parameters as needed.
|
||||
4. Click **Add** to add the _InfluxDBBackendListenerClient_ implementation.
|
||||
4. Click **Add** to add the _**InfluxDBBackendListenerClient**_ implementation.
|
||||
|
||||
#### Configure FluentD
|
||||
|
||||
|
|
|
|||
|
|
@ -19,11 +19,11 @@ start Telegraf using the generated configuration file.
|
|||
|
||||
{{% note %}}
|
||||
Only a subset of plugins are configurable using the InfluxDB UI.
|
||||
To use plugins other than those listed, you must [manually configure Telegraf](/v2.0/write-data/use-telegraf/manual-config).
|
||||
To use plugins other than those listed, you must [manually configure Telegraf](/v2.0/write-data/no-code/use-telegraf/manual-config).
|
||||
{{% /note %}}
|
||||
|
||||
{{% note %}}
|
||||
_View the [requirements](/v2.0/write-data/use-telegraf#requirements)
|
||||
_View the [requirements](/v2.0/write-data/no-code/use-telegraf#requirements)
|
||||
for using Telegraf with InfluxDB v2.0._
|
||||
{{% /note %}}
|
||||
|
||||
|
|
@ -43,7 +43,7 @@ for using Telegraf with InfluxDB v2.0._
|
|||
To configure a plugin or access plugin documentation, click the plugin name.
|
||||
|
||||
{{% note %}}
|
||||
Not all available plugins are listed on this screen. For more information on manually configuring additional plugins, see [Manually add Telegraf plugins](/v2.0/write-data/use-telegraf/manual-config/).
|
||||
Not all available plugins are listed on this screen. For more information on manually configuring additional plugins, see [Manually add Telegraf plugins](/v2.0/write-data/no-code/use-telegraf/manual-config/).
|
||||
{{% /note %}}
|
||||
|
||||
8. Provide a **Telegraf Configuration Name** and an optional **Telegraf Configuration Description**.
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ description: >
|
|||
Start Telegraf using the custom configuration.
|
||||
aliases:
|
||||
- /v2.0/collect-data/use-telegraf/manual-config
|
||||
- /v2.0/write-data/use-telegraf/manual-config
|
||||
menu:
|
||||
v2_0:
|
||||
parent: Telegraf (agent)
|
||||
|
|
@ -21,7 +22,7 @@ then start Telegraf using the custom configuration file.
|
|||
{{< youtube qFS2zANwIrc >}}
|
||||
|
||||
{{% note %}}
|
||||
_View the [requirements](/v2.0/write-data/use-telegraf#requirements)
|
||||
_View the [requirements](/v2.0/write-data/no-code/use-telegraf#requirements)
|
||||
for using Telegraf with InfluxDB v2.0._
|
||||
{{% /note %}}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue