You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2024/02/21 09:21:56 UTC

(camel) 01/10: CAMEL-20410: documentation fixes for camel-influxdb

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 4f9e36e3d88df01caf1d21bef2d9dfdbef3caf3f
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Wed Feb 21 08:55:40 2024 +0100

    CAMEL-20410: documentation fixes for camel-influxdb
    
    - Fixed samples
    - Fixed grammar and typos
    - Fixed punctuation
    - Added and/or fixed links
    - Converted to use tabs
---
 .../src/main/docs/influxdb-component.adoc              | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/components/camel-influxdb/src/main/docs/influxdb-component.adoc b/components/camel-influxdb/src/main/docs/influxdb-component.adoc
index 9116adc1745..6e79868a32a 100644
--- a/components/camel-influxdb/src/main/docs/influxdb-component.adoc
+++ b/components/camel-influxdb/src/main/docs/influxdb-component.adoc
@@ -14,15 +14,17 @@
 
 *{component-header}*
 
-This component allows you to interact with InfluxDB v1
-https://influxdata.com/time-series-platform/influxdb/ a time series database.
+This component allows you to interact with https://influxdata.com/time-series-platform/influxdb/[InfluxDB] v1,
+a time series database.
 
-The native body type for this component is
-Point (the native influxdb class), but it can also accept `Map<String, Object>` as message body, and it will get converted
-to `Point.class`, please note that the map must contain an element with `InfluxDbConstants.MEASUREMENT_NAME` as key.
+The native body type for this component is `Point` (the native influxdb class).
+However, it can also accept `Map<String, Object>` as message body, and it will get converted to `Point.class`, please note that the map must contain an element with `InfluxDbConstants.MEASUREMENT_NAME` as key.
 
-Additionally, of course you may register your own Converters to your data type to Point, or use the
-(un)marshalling tools provided by camel.
+Additionally, you may register your own Converters to your data type to `Point`, or use the
+(un)marshalling tools provided by Camel.
+
+[NOTE]
+For InfluxDB v2 check the xref:influxdb2-component.adoc[InfluxDB2 component].
 
 Maven users will need to add the following dependency to their `pom.xml`
 for this component:
@@ -43,7 +45,7 @@ for this component:
 influxdb://beanName?[options]
 -------------------------------
 
-The producer allows sending messages to a influxdb configured in the registry, using the native java driver.
+The producer allows sending messages to an InfluxDB configured in the registry, using the native java driver.
 
 // component-configure options: START