OpenTelemetry の receiver とは何か
receiver は collector pipeline のエントリーポイントで、特定のプロトコルを通じてソースからテレメトリを受け入れます。アプリケーションが push するデータを待ち受けたり、ターゲットを能動的にスクレイプしたりし、その signal を後続の processor へ渡します。collector は多数の receiver を動かして、多様なソースからのデータを同時に取り込めます。
なぜ重要か
ソースは異なるフォーマットやトランスポートでテレメトリを発します。receiver はその取り込みを正規化し、pipeline の残りの部分がすべての着信データを一様に扱えるようにします。
関連ガイド
What Is an OpenTelemetry Processor?A processor is a pipeline stage that transforms telemetry inside a collector, doing work like batching, filte…
What Is an OpenTelemetry Exporter?An exporter is the pipeline stage that sends processed telemetry out of a collector to a destination backend,…
What Is a Collector Pipeline?A collector pipeline is the chain of receivers, processors, and exporters that telemetry flows through inside…