第35章 AWS XRay コンポーネント
Camel 2.21 で利用可能
camel-aws-xray コンポーネントは、AWS XRay を使用した Camel メッセージのトレースとタイミングに使用されます。
イベント(サブセグメント)は、Camel に送信される受信および送信メッセージに対してキャプチャーされます。
35.1. 依存関係
AWS XRay サポートを Camel に含めるには、Camel 関連の AWS XRay 関連のクラスが含まれるアーカイブをプロジェクトに追加する必要があります。さらに、AWS XRay ライブラリーも利用できるようにする必要があります。
AWS XRay と Camel の両方を含めるには、依存関係に以下の Maven インポートを使用します。
<dependencyManagement> <dependencies> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-xray-recorder-sdk-bom</artifactId> <version>1.3.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-xray</artifactId> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-xray-recorder-sdk-core</artifactId> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId> </dependency> <dependencies>