diff --git a/gdi/opentelemetry/components/oracledb-receiver.rst b/gdi/opentelemetry/components/oracledb-receiver.rst index 3bf7348c8..c38d51a7a 100644 --- a/gdi/opentelemetry/components/oracledb-receiver.rst +++ b/gdi/opentelemetry/components/oracledb-receiver.rst @@ -57,7 +57,7 @@ configuration file, as shown in the following example: receivers: oracledb: # Refer to Oracle Go Driver go_ora documentation for full connection string options - datasource: "oracle://:@:/" + datasource: "oracle://:@:/" To add more than one instance of Oracle Database, add as many entries of the ``oracledb`` receiver as needed. For example: @@ -67,11 +67,11 @@ the ``oracledb`` receiver as needed. For example: receivers: oracledb/aninstance: # Refer to Oracle Go Driver go_ora documentation for full connection string options - datasource: "oracle://:@:/" + datasource: "oracle://:@:/" oracledb/anotherinstance: # Refer to Oracle Go Driver go_ora documentation for full connection string options - datasource: "oracle://:@:/" + datasource: "oracle://:@:/" To complete the configuration, include the receiver in the ``metrics`` pipeline of the ``service`` section of your configuration file. For example: @@ -84,6 +84,15 @@ configuration file. For example: receivers: - oracledb +To configure the Oracle Database receiver for high availability use: + +.. code:: yaml + + receivers: + oracledb: + # Refer to Oracle Go Driver go_ora documentation for full connection string options + datasource: "oracle://:@:/?=:" + Settings ======================